diff --git a/StarRailUID/starrailuid_charinfo/to_data.py b/StarRailUID/starrailuid_charinfo/to_data.py index 238e0a3..aeabf11 100644 --- a/StarRailUID/starrailuid_charinfo/to_data.py +++ b/StarRailUID/starrailuid_charinfo/to_data.py @@ -6,12 +6,12 @@ from httpx import ReadTimeout from gsuid_core.utils.api.enka.models import EnkaData from ..utils.error_reply import UID_HINT -from ..utils.excel.read_excel import AvatarPromotion from ..utils.resource.RESOURCE_PATH import PLAYER_PATH from ..sruid_utils.api.lulu.requests import get_char_card_info # from gsuid_core.utils.api.minigg.request import get_weapon_info from .cal_value import cal_relic_sub_affix, cal_relic_main_affix +from ..utils.excel.read_excel import AvatarPromotion, EquipmentPromotion from ..utils.map.SR_MAP_PATH import ( SetId2Name, Property2Name, @@ -22,6 +22,7 @@ from ..utils.map.SR_MAP_PATH import ( skillId2Type, avatarId2Name, avatarId2EnName, + characterSkillTree, ) mp.dps = 14 @@ -114,14 +115,16 @@ async def get_data(char: dict, sr_data: dict, sr_uid: str): 'avatarPromotion': char['Promotion'], 'avatarLevel': char['Level'], 'avatarSkill': [], + 'avatarExtraAbility': [], + 'avatarAttributeBonus': [], 'RelicInfo': [], - 'avatarFightProp': {}, } avatarName = avatarId2Name[str(char['AvatarID'])] - + char_data['avatarEnName'] = avatarId2EnName[str(char['AvatarID'])] # 处理技能 for behavior in char['BehaviorList']: - if f'{char["AvatarID"]}0' in str(behavior['BehaviorID']): + # 处理技能 + if f'{char["AvatarID"]}0' == str(behavior['BehaviorID'])[0:5]: skill_temp = {} skill_temp['skillId'] = ( char['AvatarID'] * 100 + behavior['BehaviorID'] % 10 @@ -129,12 +132,47 @@ async def get_data(char: dict, sr_data: dict, sr_uid: str): skill_temp['skillName'] = skillId2Name[str(skill_temp['skillId'])] skill_temp['skillType'] = skillId2Type[str(skill_temp['skillId'])] skill_temp['skillLevel'] = behavior['Level'] - # behavior_temp['skillIcon'] = skillId2Name['Icon'][ - # behavior_temp['skillId'] - # ] char_data['avatarSkill'].append(skill_temp) - char_data['avatarEnName'] = avatarId2EnName[str(char['AvatarID'])] + # 处理技能树中的额外能力 + if f'{char["AvatarID"]}1' == str(behavior['BehaviorID'])[0:5]: + extra_ability_temp = {} + extra_ability_temp['extraAbilityId'] = behavior['BehaviorID'] + extra_ability_temp['extraAbilityLevel'] = behavior['Level'] + status_add = characterSkillTree[str(char['AvatarID'])][ + str(behavior['BehaviorID']) + ]['levels'][str(behavior['Level'])]['status_add'] + extra_ability_temp['statusAdd'] = {} + if status_add != {}: + extra_ability_temp['statusAdd']['property'] = status_add[ + 'property' + ] + extra_ability_temp['statusAdd']['name'] = Property2Name[ + status_add['property'] + ] + extra_ability_temp['statusAdd']['value'] = status_add['value'] + char_data['avatarExtraAbility'].append(extra_ability_temp) + + # 处理技能树中的属性加成 + if f'{char["AvatarID"]}2' == str(behavior['BehaviorID'])[0:5]: + attribute_bonus_temp = {} + attribute_bonus_temp['attributeBonusId'] = behavior['BehaviorID'] + attribute_bonus_temp['attributeBonusLevel'] = behavior['Level'] + status_add = characterSkillTree[str(char['AvatarID'])][ + str(behavior['BehaviorID']) + ]['levels'][str(behavior['Level'])]['status_add'] + attribute_bonus_temp['statusAdd'] = {} + if status_add != {}: + attribute_bonus_temp['statusAdd']['property'] = status_add[ + 'property' + ] + attribute_bonus_temp['statusAdd']['name'] = Property2Name[ + status_add['property'] + ] + attribute_bonus_temp['statusAdd']['value'] = status_add[ + 'value' + ] + char_data['avatarAttributeBonus'].append(attribute_bonus_temp) # 处理遗器 for relic in char['RelicList']: @@ -229,7 +267,7 @@ async def get_data(char: dict, sr_data: dict, sr_uid: str): mp.mpf(avatar_promotion_base["BaseAggro"]['Value']) ) - char_data['base_attributes'] = base_attributes + char_data['baseAttributes'] = base_attributes # 处理武器 @@ -239,11 +277,35 @@ async def get_data(char: dict, sr_data: dict, sr_uid: str): equipment_info['equipmentName'] = EquipmentID2Name[ str(equipment_info['equipmentID']) ] - # equipment_info['EquipmentStar'] = equipment_info['flat']['rankLevel'] equipment_info['equipmentLevel'] = char['EquipmentID']['Level'] equipment_info['equipmentPromotion'] = char['EquipmentID']['Promotion'] equipment_info['equipmentRank'] = char['EquipmentID']['Rank'] + equipment_base_attributes = {} + equipment_promotion_base = EquipmentPromotion[ + str(equipment_info['equipmentID']) + ][str(equipment_info['equipmentPromotion'])] + + # 生命值 + equipment_base_attributes['hp'] = str( + mp.mpf(equipment_promotion_base["BaseHP"]['Value']) + + mp.mpf(equipment_promotion_base["BaseHPAdd"]['Value']) + * (equipment_info['equipmentLevel'] - 1) + ) + # 攻击力 + equipment_base_attributes['attack'] = str( + mp.mpf(equipment_promotion_base["BaseAttack"]['Value']) + + mp.mpf(equipment_promotion_base["BaseAttackAdd"]['Value']) + * (equipment_info['equipmentLevel'] - 1) + ) + # 防御力 + equipment_base_attributes['defence'] = str( + mp.mpf(equipment_promotion_base["BaseDefence"]['Value']) + + mp.mpf(equipment_promotion_base["BaseDefenceAdd"]['Value']) + * (equipment_info['equipmentLevel'] - 1) + ) + equipment_info['baseAttributes'] = equipment_base_attributes + char_data['equipmentInfo'] = equipment_info with open( diff --git a/StarRailUID/utils/excel/EquipmentPromotionConfig.json b/StarRailUID/utils/excel/EquipmentPromotionConfig.json new file mode 100644 index 0000000..8025b5f --- /dev/null +++ b/StarRailUID/utils/excel/EquipmentPromotionConfig.json @@ -0,0 +1,17301 @@ +{ + "20000": { + "0": { + "EquipmentID": 20000, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20000, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110121, + "ItemNum": 2 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20000, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110122, + "ItemNum": 2 + }, + { + "ItemID": 111012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20000, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20000, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110123, + "ItemNum": 3 + }, + { + "ItemID": 111013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20000, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110123, + "ItemNum": 6 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20001": { + "0": { + "EquipmentID": 20001, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 11.999999811680993 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20001, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110171, + "ItemNum": 2 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20001, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110172, + "ItemNum": 2 + }, + { + "ItemID": 112002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 45.59999928494657 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20001, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110172, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 64.79999898382242 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20001, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110173, + "ItemNum": 3 + }, + { + "ItemID": 112003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 83.99999868176695 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20001, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110173, + "ItemNum": 6 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.19999838064281 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 122.39999807951865 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20002": { + "0": { + "EquipmentID": 20002, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 8.999999858760745 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "1": { + "EquipmentID": 20002, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110111, + "ItemNum": 2 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 19.799999690018698 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "2": { + "EquipmentID": 20002, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110112, + "ItemNum": 2 + }, + { + "ItemID": 111012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 34.19999946347709 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "3": { + "EquipmentID": 20002, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110112, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 48.59999923786682 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "4": { + "EquipmentID": 20002, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110113, + "ItemNum": 3 + }, + { + "ItemID": 111013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 62.999999011325215 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "5": { + "EquipmentID": 20002, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110113, + "ItemNum": 6 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 77.39999878571493 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "6": { + "EquipmentID": 20002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 91.79999856010465 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + } + }, + "20003": { + "0": { + "EquipmentID": 20003, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 11.999999811680993 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 20003, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110141, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 20003, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110142, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 45.59999928494657 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 20003, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110142, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 64.79999898382242 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 20003, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110143, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 83.99999868176695 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 20003, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110143, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 103.19999838064281 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 20003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 122.39999807951865 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "20004": { + "0": { + "EquipmentID": 20004, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20004, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110151, + "ItemNum": 2 + }, + { + "ItemID": 112011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20004, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110152, + "ItemNum": 2 + }, + { + "ItemID": 112012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20004, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110152, + "ItemNum": 4 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20004, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110153, + "ItemNum": 3 + }, + { + "ItemID": 112013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20004, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110153, + "ItemNum": 6 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20005": { + "0": { + "EquipmentID": 20005, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20005, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110161, + "ItemNum": 2 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20005, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110162, + "ItemNum": 2 + }, + { + "ItemID": 112002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20005, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110162, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20005, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110163, + "ItemNum": 3 + }, + { + "ItemID": 112003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20005, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110163, + "ItemNum": 6 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20006": { + "0": { + "EquipmentID": 20006, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20006, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110131, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20006, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110132, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20006, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110132, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20006, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110133, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20006, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110133, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20007": { + "0": { + "EquipmentID": 20007, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20007, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110121, + "ItemNum": 2 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20007, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110122, + "ItemNum": 2 + }, + { + "ItemID": 112002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20007, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20007, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110123, + "ItemNum": 3 + }, + { + "ItemID": 112003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20007, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110123, + "ItemNum": 6 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20008": { + "0": { + "EquipmentID": 20008, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 8.999999858760745 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "1": { + "EquipmentID": 20008, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110171, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 19.799999690018698 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "2": { + "EquipmentID": 20008, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110172, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 34.19999946347709 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "3": { + "EquipmentID": 20008, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110172, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 48.59999923786682 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "4": { + "EquipmentID": 20008, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110173, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 62.999999011325215 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "5": { + "EquipmentID": 20008, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110173, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 77.39999878571493 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "6": { + "EquipmentID": 20008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 91.79999856010465 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + } + }, + "20009": { + "0": { + "EquipmentID": 20009, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 8.999999858760745 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "1": { + "EquipmentID": 20009, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110111, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 19.799999690018698 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "2": { + "EquipmentID": 20009, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110112, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 34.19999946347709 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "3": { + "EquipmentID": 20009, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110112, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 48.59999923786682 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "4": { + "EquipmentID": 20009, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110113, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 62.999999011325215 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "5": { + "EquipmentID": 20009, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110113, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 77.39999878571493 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "6": { + "EquipmentID": 20009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 91.79999856010465 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + } + }, + "20010": { + "0": { + "EquipmentID": 20010, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 11.999999811680993 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20010, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110141, + "ItemNum": 2 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20010, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110142, + "ItemNum": 2 + }, + { + "ItemID": 111012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 45.59999928494657 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20010, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110142, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 64.79999898382242 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20010, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110143, + "ItemNum": 3 + }, + { + "ItemID": 111013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 83.99999868176695 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20010, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110143, + "ItemNum": 6 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.19999838064281 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 122.39999807951865 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20011": { + "0": { + "EquipmentID": 20011, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20011, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110151, + "ItemNum": 2 + }, + { + "ItemID": 112011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20011, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110152, + "ItemNum": 2 + }, + { + "ItemID": 112012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20011, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110152, + "ItemNum": 4 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20011, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110153, + "ItemNum": 3 + }, + { + "ItemID": 112013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20011, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110153, + "ItemNum": 6 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20012": { + "0": { + "EquipmentID": 20012, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20012, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110161, + "ItemNum": 2 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20012, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110162, + "ItemNum": 2 + }, + { + "ItemID": 112002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20012, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110162, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20012, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110163, + "ItemNum": 3 + }, + { + "ItemID": 112003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20012, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110163, + "ItemNum": 6 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20013": { + "0": { + "EquipmentID": 20013, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20013, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110131, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20013, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110132, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20013, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110132, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20013, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110133, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20013, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110133, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20014": { + "0": { + "EquipmentID": 20014, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20014, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110121, + "ItemNum": 2 + }, + { + "ItemID": 112011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20014, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110122, + "ItemNum": 2 + }, + { + "ItemID": 112012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20014, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20014, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110123, + "ItemNum": 3 + }, + { + "ItemID": 112013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20014, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110123, + "ItemNum": 6 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20015": { + "0": { + "EquipmentID": 20015, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 113001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 8.999999858760745 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "1": { + "EquipmentID": 20015, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110171, + "ItemNum": 2 + }, + { + "ItemID": 113001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 19.799999690018698 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "2": { + "EquipmentID": 20015, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110172, + "ItemNum": 2 + }, + { + "ItemID": 113002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 34.19999946347709 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "3": { + "EquipmentID": 20015, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110172, + "ItemNum": 4 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 48.59999923786682 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "4": { + "EquipmentID": 20015, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110173, + "ItemNum": 3 + }, + { + "ItemID": 113003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 62.999999011325215 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "5": { + "EquipmentID": 20015, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110173, + "ItemNum": 6 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 77.39999878571493 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "6": { + "EquipmentID": 20015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 91.79999856010465 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + } + }, + "20016": { + "0": { + "EquipmentID": 20016, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 112001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 8.999999858760745 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "1": { + "EquipmentID": 20016, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110111, + "ItemNum": 2 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 19.799999690018698 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "2": { + "EquipmentID": 20016, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110112, + "ItemNum": 2 + }, + { + "ItemID": 112002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 34.19999946347709 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "3": { + "EquipmentID": 20016, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110112, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 48.59999923786682 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "4": { + "EquipmentID": 20016, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110113, + "ItemNum": 3 + }, + { + "ItemID": 112003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 62.999999011325215 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "5": { + "EquipmentID": 20016, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110113, + "ItemNum": 6 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 77.39999878571493 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + }, + "6": { + "EquipmentID": 20016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 91.79999856010465 + }, + "BaseDefenceAdd": { + "Value": 1.3499999791400745 + } + } + }, + "20017": { + "0": { + "EquipmentID": 20017, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 11.999999811680993 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20017, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110141, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20017, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110142, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 45.59999928494657 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20017, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110142, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 64.79999898382242 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20017, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110143, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 83.99999868176695 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20017, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110143, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.19999838064281 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 122.39999807951865 + }, + "BaseAttackAdd": { + "Value": 1.799999972497207 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20018": { + "0": { + "EquipmentID": 20018, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 113011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20018, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110151, + "ItemNum": 2 + }, + { + "ItemID": 113011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20018, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110152, + "ItemNum": 2 + }, + { + "ItemID": 113012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20018, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110152, + "ItemNum": 4 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20018, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110153, + "ItemNum": 3 + }, + { + "ItemID": 113013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20018, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110153, + "ItemNum": 6 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20019": { + "0": { + "EquipmentID": 20019, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 14.39999977438972 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20019, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110161, + "ItemNum": 2 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 31.67999950347112 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20019, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110162, + "ItemNum": 2 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 54.71999914193588 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20019, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110162, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 77.75999878040064 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20019, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110163, + "ItemNum": 3 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 100.7999984188654 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20019, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110163, + "ItemNum": 6 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 123.83999805733016 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 146.8799976957949 + }, + "BaseAttackAdd": { + "Value": 2.1599999662515903 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "20020": { + "0": { + "EquipmentID": 20020, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111011, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 20020, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 110131, + "ItemNum": 2 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 20020, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 110132, + "ItemNum": 2 + }, + { + "ItemID": 111012, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 20020, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 110132, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 20020, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 110133, + "ItemNum": 3 + }, + { + "ItemID": 111013, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 20020, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 110133, + "ItemNum": 6 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 20020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "21000": { + "0": { + "EquipmentID": 21000, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21000, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110171, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21000, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110172, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21000, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110172, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21000, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110173, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21000, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110173, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21001": { + "0": { + "EquipmentID": 21001, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21001, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110151, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21001, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110152, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21001, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110152, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21001, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110153, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21001, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110153, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21002": { + "0": { + "EquipmentID": 21002, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 21002, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110141, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 21002, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110142, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 21002, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110142, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 21002, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110143, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 21002, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110143, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 21002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "21003": { + "0": { + "EquipmentID": 21003, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21003, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110121, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21003, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110122, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21003, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110122, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21003, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110123, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21003, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110123, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21004": { + "0": { + "EquipmentID": 21004, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21004, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110161, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21004, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110162, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21004, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110162, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21004, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110163, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21004, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110163, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21005": { + "0": { + "EquipmentID": 21005, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 21005, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110111, + "ItemNum": 3 + }, + { + "ItemID": 111011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 21005, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110112, + "ItemNum": 3 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 21005, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110112, + "ItemNum": 6 + }, + { + "ItemID": 111012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 21005, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110113, + "ItemNum": 4 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 21005, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110113, + "ItemNum": 8 + }, + { + "ItemID": 111013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 21005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "21006": { + "0": { + "EquipmentID": 21006, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21006, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110131, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21006, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110132, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21006, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110132, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21006, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110133, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21006, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110133, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21006, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21007": { + "0": { + "EquipmentID": 21007, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21007, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110171, + "ItemNum": 3 + }, + { + "ItemID": 113011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21007, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110172, + "ItemNum": 3 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21007, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110172, + "ItemNum": 6 + }, + { + "ItemID": 113012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21007, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110173, + "ItemNum": 4 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21007, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110173, + "ItemNum": 8 + }, + { + "ItemID": 113013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21007, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21008": { + "0": { + "EquipmentID": 21008, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21008, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110151, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21008, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110152, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21008, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110152, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21008, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110153, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21008, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110153, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21008, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21009": { + "0": { + "EquipmentID": 21009, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21009, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110141, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21009, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110142, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21009, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110142, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21009, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110143, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21009, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110143, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21009, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21010": { + "0": { + "EquipmentID": 21010, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21010, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110121, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21010, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110122, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21010, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110122, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21010, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110123, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21010, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110123, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21011": { + "0": { + "EquipmentID": 21011, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21011, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110161, + "ItemNum": 3 + }, + { + "ItemID": 111011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21011, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110162, + "ItemNum": 3 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21011, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110162, + "ItemNum": 6 + }, + { + "ItemID": 111012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21011, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110163, + "ItemNum": 4 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21011, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110163, + "ItemNum": 8 + }, + { + "ItemID": 111013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21011, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21012": { + "0": { + "EquipmentID": 21012, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 21012, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110111, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 21012, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110112, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 21012, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110112, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 21012, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110113, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 21012, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110113, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 21012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "21014": { + "0": { + "EquipmentID": 21014, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21014, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110171, + "ItemNum": 3 + }, + { + "ItemID": 113011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21014, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110172, + "ItemNum": 3 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21014, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110172, + "ItemNum": 6 + }, + { + "ItemID": 113012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21014, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110173, + "ItemNum": 4 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21014, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110173, + "ItemNum": 8 + }, + { + "ItemID": 113013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21014, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21015": { + "0": { + "EquipmentID": 21015, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21015, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110151, + "ItemNum": 3 + }, + { + "ItemID": 113011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21015, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110152, + "ItemNum": 3 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21015, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110152, + "ItemNum": 6 + }, + { + "ItemID": 113012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21015, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110153, + "ItemNum": 4 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21015, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110153, + "ItemNum": 8 + }, + { + "ItemID": 113013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21015, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21016": { + "0": { + "EquipmentID": 21016, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21016, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110141, + "ItemNum": 3 + }, + { + "ItemID": 113001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21016, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110142, + "ItemNum": 3 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21016, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110142, + "ItemNum": 6 + }, + { + "ItemID": 113002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21016, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110143, + "ItemNum": 4 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21016, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110143, + "ItemNum": 8 + }, + { + "ItemID": 113003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21016, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21017": { + "0": { + "EquipmentID": 21017, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21017, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110121, + "ItemNum": 3 + }, + { + "ItemID": 113011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21017, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110122, + "ItemNum": 3 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21017, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110122, + "ItemNum": 6 + }, + { + "ItemID": 113012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21017, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110123, + "ItemNum": 4 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21017, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110123, + "ItemNum": 8 + }, + { + "ItemID": 113013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21017, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21021": { + "0": { + "EquipmentID": 21021, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21021, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110171, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21021, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110172, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21021, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110172, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21021, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110173, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21021, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110173, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21021, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21028": { + "0": { + "EquipmentID": 21028, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21028, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110171, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21028, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110172, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21028, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110172, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21028, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110173, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21028, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110173, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21028, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "23001": { + "0": { + "EquipmentID": 23001, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23001, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110121, + "ItemNum": 4 + }, + { + "ItemID": 111011, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23001, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23001, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110122, + "ItemNum": 8 + }, + { + "ItemID": 111012, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23001, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110123, + "ItemNum": 5 + }, + { + "ItemID": 111013, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23001, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110123, + "ItemNum": 10 + }, + { + "ItemID": 111013, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "23003": { + "0": { + "EquipmentID": 23003, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 52.799999172141426 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23003, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110161, + "ItemNum": 4 + }, + { + "ItemID": 112001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 116.15999817722103 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23003, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110162, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 200.63999685190225 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23003, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110162, + "ItemNum": 8 + }, + { + "ItemID": 112002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 285.11999552565214 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23003, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110163, + "ItemNum": 5 + }, + { + "ItemID": 112003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 369.59999420033336 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23003, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110163, + "ItemNum": 10 + }, + { + "ItemID": 112003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 454.0799928740833 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23003, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 538.5599915487645 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "23004": { + "0": { + "EquipmentID": 23004, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23004, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110151, + "ItemNum": 4 + }, + { + "ItemID": 112001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23004, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110152, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23004, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110152, + "ItemNum": 8 + }, + { + "ItemID": 112002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23004, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110153, + "ItemNum": 5 + }, + { + "ItemID": 112003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23004, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110153, + "ItemNum": 10 + }, + { + "ItemID": 112003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23004, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "23005": { + "0": { + "EquipmentID": 23005, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 112001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 26.999999576282235 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "1": { + "EquipmentID": 23005, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110141, + "ItemNum": 4 + }, + { + "ItemID": 112001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 59.399999068193445 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "2": { + "EquipmentID": 23005, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110142, + "ItemNum": 4 + }, + { + "ItemID": 112002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 102.59999839043128 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "3": { + "EquipmentID": 23005, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110142, + "ItemNum": 8 + }, + { + "ItemID": 112002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 145.79999771266912 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "4": { + "EquipmentID": 23005, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110143, + "ItemNum": 5 + }, + { + "ItemID": 112003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 188.99999703397563 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "5": { + "EquipmentID": 23005, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110143, + "ItemNum": 10 + }, + { + "ItemID": 112003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 232.1999963562135 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + }, + "6": { + "EquipmentID": 23005, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 275.3999956784513 + }, + "BaseDefenceAdd": { + "Value": 4.049999936488901 + } + } + }, + "23012": { + "0": { + "EquipmentID": 23012, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111011, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23012, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110121, + "ItemNum": 4 + }, + { + "ItemID": 111011, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23012, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 111012, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23012, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110122, + "ItemNum": 8 + }, + { + "ItemID": 111012, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23012, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110123, + "ItemNum": 5 + }, + { + "ItemID": 111013, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23012, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110123, + "ItemNum": 10 + }, + { + "ItemID": 111013, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23012, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "23013": { + "0": { + "EquipmentID": 23013, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 57.599999096627556 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23013, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110171, + "ItemNum": 4 + }, + { + "ItemID": 111001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 126.71999801202183 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23013, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110172, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 218.87999656588087 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23013, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110172, + "ItemNum": 8 + }, + { + "ItemID": 111002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 311.0399951188086 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23013, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110173, + "ItemNum": 5 + }, + { + "ItemID": 111003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 403.19999367266763 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23013, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110173, + "ItemNum": 10 + }, + { + "ItemID": 111003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 495.3599922265267 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 587.5199907803857 + }, + "BaseHPAdd": { + "Value": 8.639999865006361 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "24000": { + "0": { + "EquipmentID": 24000, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 24000, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110111, + "ItemNum": 4 + }, + { + "ItemID": 111001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 24000, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110112, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 24000, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110112, + "ItemNum": 8 + }, + { + "ItemID": 111002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 24000, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110113, + "ItemNum": 5 + }, + { + "ItemID": 111003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 24000, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110113, + "ItemNum": 10 + }, + { + "ItemID": 111003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 24000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "24001": { + "0": { + "EquipmentID": 24001, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 24001, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110121, + "ItemNum": 4 + }, + { + "ItemID": 111001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 24001, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110122, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 24001, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110122, + "ItemNum": 8 + }, + { + "ItemID": 111002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 24001, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110123, + "ItemNum": 5 + }, + { + "ItemID": 111003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 24001, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110123, + "ItemNum": 10 + }, + { + "ItemID": 111003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 24001, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "24002": { + "0": { + "EquipmentID": 24002, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 23.999999623361987 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "1": { + "EquipmentID": 24002, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110141, + "ItemNum": 4 + }, + { + "ItemID": 111001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 52.799999172141426 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "2": { + "EquipmentID": 24002, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110142, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 91.19999856896182 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "3": { + "EquipmentID": 24002, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110142, + "ItemNum": 8 + }, + { + "ItemID": 111002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 129.59999796671352 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "4": { + "EquipmentID": 24002, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110143, + "ItemNum": 5 + }, + { + "ItemID": 111003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 167.9999973635339 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "5": { + "EquipmentID": 24002, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110143, + "ItemNum": 10 + }, + { + "ItemID": 111003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 206.39999676128562 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "6": { + "EquipmentID": 24002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 244.7999961590373 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + } + }, + "29000": { + "0": { + "EquipmentID": 29000, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 3000 + }, + { + "ItemID": 111001, + "ItemNum": 4 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 52.799999172141426 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 29000, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 6000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 116.15999817722103 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 29000, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 12000 + }, + { + "ItemID": 111002, + "ItemNum": 4 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 200.63999685190225 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 29000, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 30000 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 285.11999552565214 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 29000, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 60000 + }, + { + "ItemID": 111003, + "ItemNum": 3 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 369.59999420033336 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 29000, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 120000 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 454.0799928740833 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 29000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 538.5599915487645 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "21013": { + "0": { + "EquipmentID": 21013, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21013, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110131, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21013, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110132, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21013, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110132, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21013, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110133, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21013, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110133, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21013, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "23000": { + "0": { + "EquipmentID": 23000, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 111001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 52.799999172141426 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 23000, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110131, + "ItemNum": 4 + }, + { + "ItemID": 111001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 116.15999817722103 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 23000, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110132, + "ItemNum": 4 + }, + { + "ItemID": 111002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 200.63999685190225 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 23000, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110132, + "ItemNum": 8 + }, + { + "ItemID": 111002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 285.11999552565214 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 23000, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110133, + "ItemNum": 5 + }, + { + "ItemID": 111003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 369.59999420033336 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 23000, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110133, + "ItemNum": 10 + }, + { + "ItemID": 111003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 454.0799928740833 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 23000, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 538.5599915487645 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "23010": { + "0": { + "EquipmentID": 23010, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 113001, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 47.999999246723974 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 23010, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110131, + "ItemNum": 4 + }, + { + "ItemID": 113001, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 105.59999834335153 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 23010, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110132, + "ItemNum": 4 + }, + { + "ItemID": 113002, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 182.39999713792363 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 23010, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110132, + "ItemNum": 8 + }, + { + "ItemID": 113002, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 259.1999959324957 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 23010, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110133, + "ItemNum": 5 + }, + { + "ItemID": 113003, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 335.9999947270678 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 23010, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110133, + "ItemNum": 10 + }, + { + "ItemID": 113003, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 412.79999352257124 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 23010, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 489.5999923171433 + }, + "BaseHPAdd": { + "Value": 7.19999988719486 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "21019": { + "0": { + "EquipmentID": 21019, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21019, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110111, + "ItemNum": 3 + }, + { + "ItemID": 113001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21019, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110112, + "ItemNum": 3 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21019, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110112, + "ItemNum": 6 + }, + { + "ItemID": 113002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21019, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110113, + "ItemNum": 4 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21019, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110113, + "ItemNum": 8 + }, + { + "ItemID": 113003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21019, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21020": { + "0": { + "EquipmentID": 21020, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21020, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110131, + "ItemNum": 3 + }, + { + "ItemID": 113001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21020, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110132, + "ItemNum": 3 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21020, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110132, + "ItemNum": 6 + }, + { + "ItemID": 113002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21020, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110133, + "ItemNum": 4 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21020, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110133, + "ItemNum": 8 + }, + { + "ItemID": 113003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21020, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21023": { + "0": { + "EquipmentID": 21023, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 33.59999947326558 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 20.99999967044174 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "1": { + "EquipmentID": 21023, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110141, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 73.91999884081173 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 46.199999275158085 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "2": { + "EquipmentID": 21023, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110142, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 127.67999799691907 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 79.79999874842366 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "3": { + "EquipmentID": 21023, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110142, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 181.43999715302638 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 113.39999822075791 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "4": { + "EquipmentID": 21023, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110143, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 235.19999630913372 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 146.99999769309215 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "5": { + "EquipmentID": 21023, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110143, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 288.95999546617236 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 180.59999716635772 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + }, + "6": { + "EquipmentID": 21023, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 342.7199946222797 + }, + "BaseHPAdd": { + "Value": 5.03999992094327 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 214.199996638692 + }, + "BaseDefenceAdd": { + "Value": 3.149999950705959 + } + } + }, + "21024": { + "0": { + "EquipmentID": 21024, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21024, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110121, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21024, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110122, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21024, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110122, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21024, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110123, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21024, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110123, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21024, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21022": { + "0": { + "EquipmentID": 21022, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21022, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110151, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21022, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110152, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21022, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110152, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21022, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110153, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21022, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110153, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21022, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21026": { + "0": { + "EquipmentID": 21026, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21026, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110111, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21026, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110112, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21026, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110112, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21026, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110113, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21026, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110113, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21026, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21027": { + "0": { + "EquipmentID": 21027, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21027, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110131, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21027, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110132, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21027, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110132, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21027, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110133, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21027, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110133, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21027, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21029": { + "0": { + "EquipmentID": 21029, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21029, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110151, + "ItemNum": 3 + }, + { + "ItemID": 112011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21029, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110152, + "ItemNum": 3 + }, + { + "ItemID": 112012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21029, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110152, + "ItemNum": 6 + }, + { + "ItemID": 112012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21029, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110153, + "ItemNum": 4 + }, + { + "ItemID": 112013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21029, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110153, + "ItemNum": 8 + }, + { + "ItemID": 112013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21029, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21030": { + "0": { + "EquipmentID": 21030, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 16.79999973709845 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 23.999999623361987 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "1": { + "EquipmentID": 21030, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110141, + "ItemNum": 3 + }, + { + "ItemID": 111011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 36.959999420871526 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 52.799999172141426 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "2": { + "EquipmentID": 21030, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110142, + "ItemNum": 3 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 63.839998998925196 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 91.19999856896182 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "3": { + "EquipmentID": 21030, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110142, + "ItemNum": 6 + }, + { + "ItemID": 111012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 90.71999857697885 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 129.59999796671352 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "4": { + "EquipmentID": 21030, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110143, + "ItemNum": 4 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 117.59999815503252 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 167.9999973635339 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "5": { + "EquipmentID": 21030, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110143, + "ItemNum": 8 + }, + { + "ItemID": 111013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 144.47999773308618 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 206.39999676128562 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + }, + "6": { + "EquipmentID": 21030, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 171.35999731113986 + }, + "BaseAttackAdd": { + "Value": 2.5199999609372963 + }, + "BaseDefence": { + "Value": 244.7999961590373 + }, + "BaseDefenceAdd": { + "Value": 3.599999944063091 + } + } + }, + "21031": { + "0": { + "EquipmentID": 21031, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21031, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110121, + "ItemNum": 3 + }, + { + "ItemID": 113001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21031, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110122, + "ItemNum": 3 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21031, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110122, + "ItemNum": 6 + }, + { + "ItemID": 113002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21031, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110123, + "ItemNum": 4 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21031, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110123, + "ItemNum": 8 + }, + { + "ItemID": 113003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21031, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21032": { + "0": { + "EquipmentID": 21032, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 21.59999966158458 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21032, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110161, + "ItemNum": 3 + }, + { + "ItemID": 111011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 47.51999925474102 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21032, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110162, + "ItemNum": 3 + }, + { + "ItemID": 111012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 82.0799987119725 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21032, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110162, + "ItemNum": 6 + }, + { + "ItemID": 111012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 116.6399981701353 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21032, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110163, + "ItemNum": 4 + }, + { + "ItemID": 111013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 151.19999762736677 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21032, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110163, + "ItemNum": 8 + }, + { + "ItemID": 111013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 185.75999708552956 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21032, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 220.31999654276106 + }, + "BaseAttackAdd": { + "Value": 3.2399999493773857 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "21033": { + "0": { + "EquipmentID": 21033, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 112001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 11.999999811680993 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "1": { + "EquipmentID": 21033, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110111, + "ItemNum": 3 + }, + { + "ItemID": 112001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 26.399999586070713 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "2": { + "EquipmentID": 21033, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110112, + "ItemNum": 3 + }, + { + "ItemID": 112002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 45.59999928494657 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "3": { + "EquipmentID": 21033, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110112, + "ItemNum": 6 + }, + { + "ItemID": 112002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 64.79999898382242 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "4": { + "EquipmentID": 21033, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110113, + "ItemNum": 4 + }, + { + "ItemID": 112003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 83.99999868176695 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "5": { + "EquipmentID": 21033, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110113, + "ItemNum": 8 + }, + { + "ItemID": 112003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 103.19999838064281 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + }, + "6": { + "EquipmentID": 21033, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 122.39999807951865 + }, + "BaseDefenceAdd": { + "Value": 1.799999972497207 + } + } + }, + "21034": { + "0": { + "EquipmentID": 21034, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 38.39999939775171 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 23.999999623361987 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 14.999999764601242 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "1": { + "EquipmentID": 21034, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110131, + "ItemNum": 3 + }, + { + "ItemID": 113001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 84.47999867468123 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 52.799999172141426 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 32.99999948212273 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "2": { + "EquipmentID": 21034, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110132, + "ItemNum": 3 + }, + { + "ItemID": 113002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 145.9199977108977 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 91.19999856896182 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 56.99999910548472 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "3": { + "EquipmentID": 21034, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110132, + "ItemNum": 6 + }, + { + "ItemID": 113002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 207.35999674618284 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 129.59999796671352 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 80.9999987288467 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "4": { + "EquipmentID": 21034, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110133, + "ItemNum": 4 + }, + { + "ItemID": 113003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 268.7999957823993 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 167.9999973635339 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 104.99999835220869 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "5": { + "EquipmentID": 21034, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110133, + "ItemNum": 8 + }, + { + "ItemID": 113003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 330.2399948176844 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 206.39999676128562 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 128.99999797557066 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + }, + "6": { + "EquipmentID": 21034, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 391.6799938539009 + }, + "BaseHPAdd": { + "Value": 5.759999910314682 + }, + "BaseAttack": { + "Value": 244.7999961590373 + }, + "BaseAttackAdd": { + "Value": 3.599999944063091 + }, + "BaseDefence": { + "Value": 152.99999759893265 + }, + "BaseDefenceAdd": { + "Value": 2.249999964923017 + } + } + }, + "23002": { + "0": { + "EquipmentID": 23002, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 5000 + }, + { + "ItemID": 112011, + "ItemNum": 8 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 52.799999172141426 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 26.399999586070713 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 23002, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 10000 + }, + { + "ItemID": 110111, + "ItemNum": 4 + }, + { + "ItemID": 112011, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 116.15999817722103 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 58.07999908861051 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 23002, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 20000 + }, + { + "ItemID": 110112, + "ItemNum": 4 + }, + { + "ItemID": 112012, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 200.63999685190225 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 100.31999842595113 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 23002, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 50000 + }, + { + "ItemID": 110112, + "ItemNum": 8 + }, + { + "ItemID": 112012, + "ItemNum": 12 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 285.11999552565214 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 142.55999776329173 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 23002, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 100000 + }, + { + "ItemID": 110113, + "ItemNum": 5 + }, + { + "ItemID": 112013, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 369.59999420033336 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 184.79999710063234 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 23002, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 200000 + }, + { + "ItemID": 110113, + "ItemNum": 10 + }, + { + "ItemID": 112013, + "ItemNum": 8 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 454.0799928740833 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 227.03999643704165 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 23002, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 538.5599915487645 + }, + "BaseHPAdd": { + "Value": 7.919999876566272 + }, + "BaseAttack": { + "Value": 269.27999577438226 + }, + "BaseAttackAdd": { + "Value": 3.959999938748797 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21018": { + "0": { + "EquipmentID": 21018, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 113011, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21018, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110161, + "ItemNum": 3 + }, + { + "ItemID": 113011, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21018, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110162, + "ItemNum": 3 + }, + { + "ItemID": 113012, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21018, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110162, + "ItemNum": 6 + }, + { + "ItemID": 113012, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21018, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110163, + "ItemNum": 4 + }, + { + "ItemID": 113013, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21018, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110163, + "ItemNum": 8 + }, + { + "ItemID": 113013, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21018, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + }, + "21025": { + "0": { + "EquipmentID": 21025, + "Promotion": 0, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 4000 + }, + { + "ItemID": 111001, + "ItemNum": 5 + } + ], + "PlayerLevelRequire": 15, + "MaxLevel": 20, + "BaseHP": { + "Value": 43.19999932223784 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 19.199999698875853 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 17.99999971752149 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "1": { + "EquipmentID": 21025, + "Promotion": 1, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 8000 + }, + { + "ItemID": 110161, + "ItemNum": 3 + }, + { + "ItemID": 111001, + "ItemNum": 10 + } + ], + "WorldLevelRequire": 1, + "MaxLevel": 30, + "BaseHP": { + "Value": 95.03999850855072 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 42.23999933734061 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 39.59999937910607 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "2": { + "EquipmentID": 21025, + "Promotion": 2, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 16000 + }, + { + "ItemID": 110162, + "ItemNum": 3 + }, + { + "ItemID": 111002, + "ItemNum": 6 + } + ], + "WorldLevelRequire": 2, + "MaxLevel": 40, + "BaseHP": { + "Value": 164.159997423945 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 72.9599988559145 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 68.39999892695418 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "3": { + "EquipmentID": 21025, + "Promotion": 3, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 40000 + }, + { + "ItemID": 110162, + "ItemNum": 6 + }, + { + "ItemID": 111002, + "ItemNum": 9 + } + ], + "WorldLevelRequire": 3, + "MaxLevel": 50, + "BaseHP": { + "Value": 233.27999633933928 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 103.67999837355708 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 97.19999847480231 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "4": { + "EquipmentID": 21025, + "Promotion": 4, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 80000 + }, + { + "ItemID": 110163, + "ItemNum": 4 + }, + { + "ItemID": 111003, + "ItemNum": 5 + } + ], + "WorldLevelRequire": 4, + "MaxLevel": 60, + "BaseHP": { + "Value": 302.39999525473354 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 134.39999789119966 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 125.99999802265043 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "5": { + "EquipmentID": 21025, + "Promotion": 5, + "PromotionCostList": [ + { + "ItemID": 2, + "ItemNum": 160000 + }, + { + "ItemID": 110163, + "ItemNum": 8 + }, + { + "ItemID": 111003, + "ItemNum": 7 + } + ], + "WorldLevelRequire": 5, + "MaxLevel": 70, + "BaseHP": { + "Value": 371.5199941701278 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 165.1199974088422 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 154.79999757142986 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + }, + "6": { + "EquipmentID": 21025, + "Promotion": 6, + "PromotionCostList": [], + "WorldLevelRequire": 5, + "MaxLevel": 80, + "BaseHP": { + "Value": 440.6399930855221 + }, + "BaseHPAdd": { + "Value": 6.479999898754771 + }, + "BaseAttack": { + "Value": 195.8399969274161 + }, + "BaseAttackAdd": { + "Value": 2.8799999556230023 + }, + "BaseDefence": { + "Value": 183.599997119278 + }, + "BaseDefenceAdd": { + "Value": 2.699999958280149 + } + } + } +} diff --git a/StarRailUID/utils/excel/read_excel.py b/StarRailUID/utils/excel/read_excel.py index 1dd60d1..eda56b0 100644 --- a/StarRailUID/utils/excel/read_excel.py +++ b/StarRailUID/utils/excel/read_excel.py @@ -11,3 +11,6 @@ with open(EXCEL / 'RelicSubAffixConfig.json', 'r', encoding='utf8') as f: with open(EXCEL / 'AvatarPromotionConfig.json', 'r', encoding='utf8') as f: AvatarPromotion = json.load(f) + +with open(EXCEL / 'EquipmentPromotionConfig.json', 'r', encoding='utf8') as f: + EquipmentPromotion = json.load(f) diff --git a/StarRailUID/utils/map/SR_MAP_PATH.py b/StarRailUID/utils/map/SR_MAP_PATH.py index dadcc0c..8b102cd 100644 --- a/StarRailUID/utils/map/SR_MAP_PATH.py +++ b/StarRailUID/utils/map/SR_MAP_PATH.py @@ -19,6 +19,7 @@ Property2Name_fileName = 'Property2Name.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' class TS(TypedDict): @@ -55,3 +56,6 @@ with open(MAP / SetId2Name_fileName, 'r', encoding='UTF-8') as f: with open(MAP / rankId2Name_fileName, 'r', encoding='UTF-8') as f: rankId2Name = msgjson.decode(f.read(), type=Dict[str, str]) + +with open(MAP / characterSkillTree_fileName, 'r', encoding='UTF-8') as f: + characterSkillTree = msgjson.decode(f.read(), type=Dict[str, dict]) diff --git a/StarRailUID/utils/map/data/characterSkillTree_mapping_1.0.5.json b/StarRailUID/utils/map/data/characterSkillTree_mapping_1.0.5.json new file mode 100644 index 0000000..e37ea81 --- /dev/null +++ b/StarRailUID/utils/map/data/characterSkillTree_mapping_1.0.5.json @@ -0,0 +1 @@ +{"1001": {"1001001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100101", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 3}]}}}, "1001002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100102", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1001003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100103", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1001004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100104", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1001007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100107", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1001101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "1001201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "110501", "num": 1}]}}}, "1001102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "1001201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1001103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1001201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "1001202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1001101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}}}, "1001203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1001202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "1001204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "1001205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1001102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}}}, "1001206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1001205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "1001207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "1001208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1001103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "1001209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1001208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "1001210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1001208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}}, "1002": {"1002001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100201", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "111001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "111003", "num": 3}]}}}, "1002002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100202", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1002003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100203", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1002004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100204", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1002007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100207", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1002101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "110501", "num": 1}]}}}, "1002103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1002201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "WindAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}}}, "1002202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1002101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "111001", "num": 4}]}}}, "1002203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1002202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "WindAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}}}, "1002204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "111002", "num": 2}]}}}, "1002205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1002102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "WindAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "111002", "num": 3}]}}}, "1002206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1002205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}}}, "1002207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "WindAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "111003", "num": 2}]}}}, "1002208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1002103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "111003", "num": 6}]}}}, "1002209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1002208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "111003", "num": 6}]}}}, "1002210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1002208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "WindAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "111003", "num": 6}]}}}, "1002102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1003": {"1003001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100301", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "111001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "111002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "111003", "num": 4}]}}}, "1003002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100302", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1003003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100303", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1003004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100304", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1003007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100307", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1003102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1003103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1003201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "FireAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 2}]}}}, "1003202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1003101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "111001", "num": 6}]}}}, "1003203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1003202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "FireAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}}}, "1003204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1003202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "111002", "num": 3}]}}}, "1003205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1003102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "FireAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "111002", "num": 4}]}}}, "1003206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1003205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}}}, "1003207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1003205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "FireAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "111003", "num": 3}]}}}, "1003208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1003103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "111003", "num": 8}]}}}, "1003209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1003103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "111003", "num": 8}]}}}, "1003210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "FireAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "111003", "num": 8}]}}}, "1003101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "110501", "num": 1}]}}}}, "1004": {"1004001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100401", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112003", "num": 4}]}}}, "1004002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100402", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1004003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100403", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1004004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100404", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1004007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100407", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1004101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "110501", "num": 1}]}}}, "1004102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1004103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1004201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 2}]}}}, "1004202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1004101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "ImaginaryAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112001", "num": 6}]}}}, "1004203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1004202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}}}, "1004204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1004203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112002", "num": 3}]}}}, "1004205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1004102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112002", "num": 4}]}}}, "1004206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1004205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "ImaginaryAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}}}, "1004207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1004206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112003", "num": 3}]}}}, "1004208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1004103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112003", "num": 8}]}}}, "1004209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1004103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "ImaginaryAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112003", "num": 8}]}}}, "1004210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1004201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112003", "num": 8}]}}}}, "1005": {"1005001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100501", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "111011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "111012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "111013", "num": 4}]}}}, "1005002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100502", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1005003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100503", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1005004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100504", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1005007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100507", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1005101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "110501", "num": 1}]}}}, "1005102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1005103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1005201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 2}]}}}, "1005202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1005101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "BreakDamageAddedRatioBase", "value": 0.053}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "111011", "num": 6}]}}}, "1005203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1005202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}}}, "1005204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1005203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "111012", "num": 3}]}}}, "1005205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1005102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "111012", "num": 4}]}}}, "1005206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1005205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "BreakDamageAddedRatioBase", "value": 0.08}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}}}, "1005207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1005206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "111013", "num": 3}]}}}, "1005208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1005103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "111013", "num": 8}]}}}, "1005209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1005103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "BreakDamageAddedRatioBase", "value": 0.107}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "111013", "num": 8}]}}}, "1005210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1005201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "111013", "num": 8}]}}}}, "1006": {"1006001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100601", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112013", "num": 4}]}}}, "1006002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100602", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1006003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100603", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1006004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100604", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110152", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110153", "num": 5}, {"id": "110501", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110153", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1006007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100607", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1006201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 2}]}}}, "1006202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1006101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusProbabilityBase", "value": 0.04}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "112011", "num": 6}]}}}, "1006203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1006202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}}}, "1006204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1006203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "QuantumAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 10000}, {"id": "110152", "num": 3}, {"id": "112012", "num": 3}]}}}, "1006205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1006102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "112012", "num": 4}]}}}, "1006206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1006205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusProbabilityBase", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}}}, "1006207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1006206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110153", "num": 3}, {"id": "112013", "num": 3}]}}}, "1006208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1006103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "QuantumAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112013", "num": 8}]}}}, "1006209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1006103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusProbabilityBase", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112013", "num": 8}]}}}, "1006210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1006201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "112013", "num": 8}]}}}, "1006101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110151", "num": 3}, {"id": "110501", "num": 1}]}}}, "1006102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110152", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1006103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110153", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1008": {"1008001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100801", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111003", "num": 3}]}}}, "1008002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100802", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1008003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100803", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1008004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100804", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1008007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100807", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1008101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "110501", "num": 1}]}}}, "1008103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1008201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}}}, "1008202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1008101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111001", "num": 4}]}}}, "1008203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1008202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}}}, "1008204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1008203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111002", "num": 2}]}}}, "1008205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1008102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111002", "num": 3}]}}}, "1008206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1008205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}}}, "1008207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1008206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111003", "num": 2}]}}}, "1008208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1008103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111003", "num": 6}]}}}, "1008209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1008208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusResistanceBase", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111003", "num": 6}]}}}, "1008210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1008208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111003", "num": 6}]}}}, "1008102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1009": {"1009001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "100901", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "112001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "112003", "num": 3}]}}}, "1009002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "100902", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1009003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "100903", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1009004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "100904", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1009007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "100907", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1009101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "110501", "num": 1}]}}}, "1009102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1009103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1009201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "FireAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}}}, "1009202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1009101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "112001", "num": 4}]}}}, "1009203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1009202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "FireAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}}}, "1009204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1009201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "CriticalChanceBase", "value": 0.027}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "112002", "num": 2}]}}}, "1009205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1009102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "FireAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "112002", "num": 3}]}}}, "1009206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1009205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}}}, "1009207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1009201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "FireAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "112003", "num": 2}]}}}, "1009208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1009103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "CriticalChanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "112003", "num": 6}]}}}, "1009209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1009208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "112003", "num": 6}]}}}, "1009210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1009208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "FireAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "112003", "num": 6}]}}}}, "1013": {"1013001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "101301", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111003", "num": 3}]}}}, "1013002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "101302", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1013003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "101303", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1013004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "101304", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110501", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1013007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "101307", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1013101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "110501", "num": 1}]}}}, "1013103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1013201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}}}, "1013202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1013101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111001", "num": 4}]}}}, "1013203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1013202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}}}, "1013204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1013202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "CriticalChanceBase", "value": 0.027}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111002", "num": 2}]}}}, "1013205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1013102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111002", "num": 3}]}}}, "1013206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1013205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}}}, "1013207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1013205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111003", "num": 2}]}}}, "1013208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1013103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "CriticalChanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111003", "num": 6}]}}}, "1013209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1013103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111003", "num": 6}]}}}, "1013210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111003", "num": 6}]}}}, "1013102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1101": {"1101001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110101", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "112001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "112002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "112003", "num": 4}]}}}, "1101002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110102", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110162", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110163", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110163", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1101003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110103", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110162", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110163", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110163", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1101004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110104", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110162", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110163", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110163", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1101007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110107", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1101101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "110502", "num": 1}]}}}, "1101102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1101103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1101201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "WindAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 2}]}}}, "1101202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1101101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "CriticalDamageBase", "value": 0.053}, "material_list": [{"id": "2", "num": 5000}, {"id": "110161", "num": 3}, {"id": "112001", "num": 6}]}}}, "1101203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1101202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "WindAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}}}, "1101204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1101201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110162", "num": 3}, {"id": "112002", "num": 3}]}}}, "1101205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1101102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "WindAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 20000}, {"id": "110162", "num": 5}, {"id": "112002", "num": 4}]}}}, "1101206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1101205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "CriticalDamageBase", "value": 0.08}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}}}, "1101207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1101201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "WindAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110163", "num": 3}, {"id": "112003", "num": 3}]}}}, "1101208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1101103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "112003", "num": 8}]}}}, "1101209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1101208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "CriticalDamageBase", "value": 0.107}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "112003", "num": 8}]}}}, "1101210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1101208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "WindAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110163", "num": 8}, {"id": "112003", "num": 8}]}}}}, "1102": {"1102001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110201", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 4}]}}}, "1102002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110202", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1102003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110203", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1102004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110204", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1102007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110207", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1102101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "110502", "num": 1}]}}}, "1102201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 2}]}}}, "1102202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1102101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "CriticalDamageBase", "value": 0.053}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}}}, "1102203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1102202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}}}, "1102204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}}}, "1102205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1102102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}}}, "1102206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1102205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "CriticalDamageBase", "value": 0.08}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}}}, "1102207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}}}, "1102208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1102103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}, "1102209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1102208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "CriticalDamageBase", "value": 0.107}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}, "1102210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1102208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}, "1102102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1102103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}}, "1103": {"1103001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110301", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "112001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "112003", "num": 3}]}}}, "1103002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110302", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1103003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110303", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1103004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110304", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "112001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "112002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "112002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "112003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1103007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110307", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1103101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "110502", "num": 1}]}}}, "1103102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1103103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1103201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "CriticalChanceBase", "value": 0.027}, "material_list": [{"id": "2", "num": 2000}, {"id": "112001", "num": 2}]}}}, "1103202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1103101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusProbabilityBase", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "112001", "num": 4}]}}}, "1103203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1103202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "CriticalChanceBase", "value": 0.027}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}}}, "1103204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1103202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "112002", "num": 2}]}}}, "1103205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1103102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "CriticalChanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "112002", "num": 3}]}}}, "1103206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1103205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusProbabilityBase", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}}}, "1103207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1103205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "CriticalChanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "112003", "num": 2}]}}}, "1103208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1103103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "112003", "num": 6}]}}}, "1103209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1103103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusProbabilityBase", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "112003", "num": 6}]}}}, "1103210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "CriticalChanceBase", "value": 0.053}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "112003", "num": 6}]}}}}, "1104": {"1104001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110401", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "112001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "112002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "112003", "num": 4}]}}}, "1104002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110402", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110142", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110143", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110143", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1104003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110403", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110142", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110143", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110143", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1104004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110404", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "112001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "112002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110142", "num": 7}, {"id": "112002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110143", "num": 5}, {"id": "110502", "num": 1}, {"id": "112003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110143", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1104007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110407", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1104101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "1104201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "110502", "num": 1}]}}}, "1104102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "1104201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1104103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1104201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2500}, {"id": "112001", "num": 2}]}}}, "1104202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1104101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 5000}, {"id": "110141", "num": 3}, {"id": "112001", "num": 6}]}}}, "1104203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1104202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}}}, "1104204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 10000}, {"id": "110142", "num": 3}, {"id": "112002", "num": 3}]}}}, "1104205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1104102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 20000}, {"id": "110142", "num": 5}, {"id": "112002", "num": 4}]}}}, "1104206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1104205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}}}, "1104207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110143", "num": 3}, {"id": "112003", "num": 3}]}}}, "1104208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1104103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "112003", "num": 8}]}}}, "1104209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1104208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusResistanceBase", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "112003", "num": 8}]}}}, "1104210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1104208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110143", "num": 8}, {"id": "112003", "num": 8}]}}}}, "1105": {"1105001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110501", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "112011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "112013", "num": 3}]}}}, "1105002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110502", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110172", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110173", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110173", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1105003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110503", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110172", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110173", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110173", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1105004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110504", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110172", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110173", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110173", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1105007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110507", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1105101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "110502", "num": 1}]}}}, "1105102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1105103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1105201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}}}, "1105202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1105101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110171", "num": 2}, {"id": "112011", "num": 4}]}}}, "1105203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1105202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}}}, "1105204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1105203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110172", "num": 2}, {"id": "112012", "num": 2}]}}}, "1105205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1105102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110172", "num": 4}, {"id": "112012", "num": 3}]}}}, "1105206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1105205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}}}, "1105207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1105206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110173", "num": 2}, {"id": "112013", "num": 2}]}}}, "1105208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1105103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "112013", "num": 6}]}}}, "1105209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1105103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusResistanceBase", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "112013", "num": 6}]}}}, "1105210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110173", "num": 6}, {"id": "112013", "num": 6}]}}}}, "1106": {"1106001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110601", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "111001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "111003", "num": 3}]}}}, "1106002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110602", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1106003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110603", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1106004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110604", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "111001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "111002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "111002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "111003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1106007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110607", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1106101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "110502", "num": 1}]}}}, "1106102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1106103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1106201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 2000}, {"id": "111001", "num": 2}]}}}, "1106202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1106101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "111001", "num": 4}]}}}, "1106203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1106202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}}}, "1106204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1106203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusProbabilityBase", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "111002", "num": 2}]}}}, "1106205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1106102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "111002", "num": 3}]}}}, "1106206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1106205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}}}, "1106207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1106206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "111003", "num": 2}]}}}, "1106208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1106103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusProbabilityBase", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "111003", "num": 6}]}}}, "1106209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1106103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "111003", "num": 6}]}}}, "1106210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1106201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "111003", "num": 6}]}}}}, "1107": {"1107102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1107001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110701", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "112011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "112012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "112013", "num": 4}]}}}, "1107002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110702", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110112", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110113", "num": 5}, {"id": "110502", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110113", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1107003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110703", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110112", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110113", "num": 5}, {"id": "110502", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110113", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1107004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110704", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "112011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "112012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110112", "num": 7}, {"id": "112012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110113", "num": 5}, {"id": "110502", "num": 1}, {"id": "112013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110113", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1107007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110707", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1107101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "110502", "num": 1}]}}}, "1107103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1107201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "112011", "num": 2}]}}}, "1107202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1107101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "PhysicalAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 5000}, {"id": "110111", "num": 3}, {"id": "112011", "num": 6}]}}}, "1107203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1107202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}}}, "1107204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1107203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110112", "num": 3}, {"id": "112012", "num": 3}]}}}, "1107205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1107102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110112", "num": 5}, {"id": "112012", "num": 4}]}}}, "1107206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1107205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "PhysicalAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}}}, "1107207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1107206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110113", "num": 3}, {"id": "112013", "num": 3}]}}}, "1107208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1107103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "112013", "num": 8}]}}}, "1107209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1107208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "PhysicalAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "112013", "num": 8}]}}}, "1107210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1107208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110113", "num": 8}, {"id": "112013", "num": 8}]}}}}, "1108": {"1108001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110801", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "112011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "112013", "num": 3}]}}}, "1108002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110802", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1108003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110803", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1108004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110804", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110152", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110153", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110153", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1108007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110807", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1108102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1108103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1108201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}}}, "1108202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1108101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "StatusProbabilityBase", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "112011", "num": 4}]}}}, "1108203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1108202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}}}, "1108204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1108203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110152", "num": 2}, {"id": "112012", "num": 2}]}}}, "1108205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1108102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110152", "num": 4}, {"id": "112012", "num": 3}]}}}, "1108206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1108205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "StatusProbabilityBase", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}}}, "1108207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1108206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110153", "num": 2}, {"id": "112013", "num": 2}]}}}, "1108208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1108103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "112013", "num": 6}]}}}, "1108209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1108103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "StatusProbabilityBase", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "112013", "num": 6}]}}}, "1108210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1108201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110153", "num": 6}, {"id": "112013", "num": 6}]}}}, "1108101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110151", "num": 2}, {"id": "110502", "num": 1}]}}}}, "1109": {"1109001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "110901", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "112011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "112012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "112013", "num": 3}]}}}, "1109002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "110902", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1109003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "110903", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1109004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "110904", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "112011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "112012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "112012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110502", "num": 1}, {"id": "112013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1109007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "110907", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1109101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "110502", "num": 1}]}}}, "1109103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1109201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "112011", "num": 2}]}}}, "1109202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1109101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "112011", "num": 4}]}}}, "1109203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1109202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}}}, "1109204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1109203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "CriticalDamageBase", "value": 0.053}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "112012", "num": 2}]}}}, "1109205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1109102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "112012", "num": 3}]}}}, "1109206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1109205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}}}, "1109207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1109206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "112013", "num": 2}]}}}, "1109208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1109103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "CriticalDamageBase", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "112013", "num": 6}]}}}, "1109209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1109208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "112013", "num": 6}]}}}, "1109210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1109208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "112013", "num": 6}]}}}, "1109102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}}, "1201": {"1201001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120101", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111013", "num": 3}]}}}, "1201002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120102", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1201003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120103", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1201004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120104", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110132", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110133", "num": 4}, {"id": "110502", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110133", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1201007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120107", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1201101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "110502", "num": 1}]}}}, "1201102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1201103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1201201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "1201202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1201101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "QuantumAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 4000}, {"id": "110131", "num": 2}, {"id": "111011", "num": 4}]}}}, "1201203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1201202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}}}, "1201204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1201202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110132", "num": 2}, {"id": "111012", "num": 2}]}}}, "1201205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1201102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110132", "num": 4}, {"id": "111012", "num": 3}]}}}, "1201206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1201205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "QuantumAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}}}, "1201207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1201205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110133", "num": 2}, {"id": "111013", "num": 2}]}}}, "1201208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1201103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111013", "num": 6}]}}}, "1201209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1201103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "QuantumAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111013", "num": 6}]}}}, "1201210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110133", "num": 6}, {"id": "111013", "num": 6}]}}}}, "1202": {"1202001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120201", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "113001", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "113002", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "113003", "num": 3}]}}}, "1202002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120202", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "113001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "113002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "113002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "113003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1202003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120203", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "113001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "113002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "113002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "113003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1202004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120204", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113001", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "113001", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "113002", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110162", "num": 6}, {"id": "113002", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110163", "num": 4}, {"id": "110501", "num": 1}, {"id": "113003", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110163", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1202007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120207", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1202101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "110501", "num": 1}]}}}, "1202103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1202201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "113001", "num": 2}]}}}, "1202202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1202101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 4000}, {"id": "110161", "num": 2}, {"id": "113001", "num": 4}]}}}, "1202203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1202202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}}}, "1202204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1202201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "ThunderAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 8000}, {"id": "110162", "num": 2}, {"id": "113002", "num": 2}]}}}, "1202205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1202102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "113002", "num": 3}]}}}, "1202206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1202205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}}}, "1202207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1202201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110163", "num": 2}, {"id": "113003", "num": 2}]}}}, "1202208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1202103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "ThunderAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "113003", "num": 6}]}}}, "1202209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1202208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "113003", "num": 6}]}}}, "1202210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1202208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110163", "num": 6}, {"id": "113003", "num": 6}]}}}, "1202102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110162", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1203": {"1203001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120301", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "113011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "113012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "113013", "num": 4}]}}}, "1203002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120302", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "113011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "113012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "113012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110501", "num": 1}, {"id": "113013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1203003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120303", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "113011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "113012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "113012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110501", "num": 1}, {"id": "113013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1203004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120304", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "113011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "113012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "113012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110501", "num": 1}, {"id": "113013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1203007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120307", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1203101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "110501", "num": 1}]}}}, "1203103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1203201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "113011", "num": 2}]}}}, "1203202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1203101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "113011", "num": 6}]}}}, "1203203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1203202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}}}, "1203204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1203203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "113012", "num": 3}]}}}, "1203205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1203102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "113012", "num": 4}]}}}, "1203206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1203205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}}}, "1203207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1203206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "113013", "num": 3}]}}}, "1203208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1203103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "113013", "num": 8}]}}}, "1203209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1203103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "113013", "num": 8}]}}}, "1203210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "113013", "num": 8}]}}}, "1203102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}}, "1204": {"1204101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "110501", "num": 1}]}}}, "1204102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1204103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1204001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120401", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "113001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "113002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "113003", "num": 4}]}}}, "1204002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120402", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "113001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "113002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "113002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "113003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1204003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120403", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "113001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "113002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "113002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "113003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1204004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120404", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "113001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "113001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "113002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110132", "num": 7}, {"id": "113002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110133", "num": 5}, {"id": "110501", "num": 1}, {"id": "113003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110133", "num": 14}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "1204007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120407", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1204201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "113001", "num": 2}]}}}, "1204202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1204101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "CriticalChanceBase", "value": 0.027}, "material_list": [{"id": "2", "num": 5000}, {"id": "110131", "num": 3}, {"id": "113001", "num": 6}]}}}, "1204203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1204202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}}}, "1204204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1204202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 10000}, {"id": "110132", "num": 3}, {"id": "113002", "num": 3}]}}}, "1204205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1204102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110132", "num": 5}, {"id": "113002", "num": 4}]}}}, "1204206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1204205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "CriticalChanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}}}, "1204207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1204205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110133", "num": 3}, {"id": "113003", "num": 3}]}}}, "1204208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1204103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "113003", "num": 8}]}}}, "1204209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1204103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "CriticalChanceBase", "value": 0.053}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "113003", "num": 8}]}}}, "1204210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110133", "num": 8}, {"id": "113003", "num": 8}]}}}}, "1206": {"1206001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120601", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "113011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "113012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "113013", "num": 3}]}}}, "1206002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120602", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "113011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "113012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "113012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110502", "num": 1}, {"id": "113013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1206003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120603", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "113011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "113012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "113012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110502", "num": 1}, {"id": "113013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1206004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120604", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "113011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "113011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "113012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110122", "num": 6}, {"id": "113012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110123", "num": 4}, {"id": "110502", "num": 1}, {"id": "113013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110123", "num": 11}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1206007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120607", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1206101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "110502", "num": 1}]}}}, "1206102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1206103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1206201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "113011", "num": 2}]}}}, "1206202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1206101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110121", "num": 2}, {"id": "113011", "num": 4}]}}}, "1206203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1206202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}}}, "1206204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110122", "num": 2}, {"id": "113012", "num": 2}]}}}, "1206205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1206102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110122", "num": 4}, {"id": "113012", "num": 3}]}}}, "1206206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1206205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}}}, "1206207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110123", "num": 2}, {"id": "113013", "num": 2}]}}}, "1206208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1206103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "113013", "num": 6}]}}}, "1206209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1206208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "113013", "num": 6}]}}}, "1206210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1206208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110123", "num": 6}, {"id": "113013", "num": 6}]}}}}, "1209": {"1209001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "120901", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 4}]}}}, "1209002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "120902", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1209003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "120903", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1209004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "120904", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110122", "num": 7}, {"id": "111012", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110123", "num": 5}, {"id": "110502", "num": 1}, {"id": "111013", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110123", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1209007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "120907", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1209101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "110502", "num": 1}]}}}, "1209102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1209103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1209201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "111011", "num": 2}]}}}, "1209202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1209101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "IceAddedRatio", "value": 0.032}, "material_list": [{"id": "2", "num": 5000}, {"id": "110121", "num": 3}, {"id": "111011", "num": 6}]}}}, "1209203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1209202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}}}, "1209204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110122", "num": 3}, {"id": "111012", "num": 3}]}}}, "1209205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1209102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110122", "num": 5}, {"id": "111012", "num": 4}]}}}, "1209206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1209205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "IceAddedRatio", "value": 0.048}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}}}, "1209207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110123", "num": 3}, {"id": "111013", "num": 3}]}}}, "1209208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1209103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}, "1209209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1209208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "IceAddedRatio", "value": 0.064}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}, "1209210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "1209208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110123", "num": 8}, {"id": "111013", "num": 8}]}}}}, "1211": {"1211001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "121101", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "111001", "num": 6}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "111002", "num": 4}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "111003", "num": 4}]}}}, "1211002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "121102", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110502", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1211003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "121103", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110502", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1211004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "121104", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 3}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "111001", "num": 6}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "111002", "num": 4}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 30000}, {"id": "110172", "num": 7}, {"id": "111002", "num": 6}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 80000}, {"id": "110173", "num": 5}, {"id": "110502", "num": 1}, {"id": "111003", "num": 4}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 300000}, {"id": "110173", "num": 14}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1211007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "121107", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "1211101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "110502", "num": 1}]}}}, "1211103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}, "1211201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2500}, {"id": "111001", "num": 2}]}}}, "1211202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "1211101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 5000}, {"id": "110171", "num": 3}, {"id": "111001", "num": 6}]}}}, "1211203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "1211202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}}}, "1211204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "1211203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "StatusResistanceBase", "value": 0.04}, "material_list": [{"id": "2", "num": 10000}, {"id": "110172", "num": 3}, {"id": "111002", "num": 3}]}}}, "1211205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "1211102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "111002", "num": 4}]}}}, "1211206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "1211205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}}}, "1211207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "1211206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 45000}, {"id": "110173", "num": 3}, {"id": "111003", "num": 3}]}}}, "1211208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "1211103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "StatusResistanceBase", "value": 0.06}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "111003", "num": 8}]}}}, "1211209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "1211103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "111003", "num": 8}]}}}, "1211210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 160000}, {"id": "110173", "num": 8}, {"id": "111003", "num": 8}]}}}, "1211102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 20000}, {"id": "110172", "num": 5}, {"id": "241", "num": 1}, {"id": "110502", "num": 1}]}}}}, "8001": {"8001001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "800101", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 3}]}}}, "8001002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "800102", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8001003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "800103", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8001004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "800104", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8001007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "800107", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "8001101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "110501", "num": 1}]}}}, "8001102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8001103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8001201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "8001202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "8001101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}}}, "8001203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "8001202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}}}, "8001204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "8001203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}}}, "8001205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "8001102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}}}, "8001206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "8001205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}}}, "8001207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "8001206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}}}, "8001208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "8001103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}, "8001209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "8001208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}, "8001210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "8001208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}}, "8002": {"8002001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "800201", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 3}]}}}, "8002002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "800202", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8002003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "800203", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8002004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "800204", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110112", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110113", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110113", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8002007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "800207", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "8002101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "110501", "num": 1}]}}}, "8002102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8002103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8002201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "8002202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "8002101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110111", "num": 2}, {"id": "111011", "num": 4}]}}}, "8002203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "8002202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}}}, "8002204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "8002203", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110112", "num": 2}, {"id": "111012", "num": 2}]}}}, "8002205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "8002102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 16000}, {"id": "110112", "num": 4}, {"id": "111012", "num": 3}]}}}, "8002206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "8002205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}}}, "8002207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "8002206", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110113", "num": 2}, {"id": "111013", "num": 2}]}}}, "8002208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "8002103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}, "8002209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "8002208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "HPAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}, "8002210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "8002208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110113", "num": 6}, {"id": "111013", "num": 6}]}}}}, "8003": {"8003001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "800301", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 3}]}}}, "8003002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "800302", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8003003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "800303", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8003004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "800304", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8003007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "800307", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "8003101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "8003201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "110501", "num": 1}]}}}, "8003102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "8003201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8003103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8003201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "8003202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "8003101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}}}, "8003203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "8003202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "8003204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "8003205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "8003102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}}}, "8003206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "8003205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "8003207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "8003208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "8003103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "8003209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "8003208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "8003210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "8003208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}}, "8004": {"8004001": {"max_level": 6, "point_type": "2", "anchor": "Point01", "pre_point": "", "level_up_skill_id": "800401", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "3": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "4": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "5": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "6": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 3}]}}}, "8004002": {"max_level": 10, "point_type": "2", "anchor": "Point02", "pre_point": "", "level_up_skill_id": "800402", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8004003": {"max_level": 10, "point_type": "2", "anchor": "Point03", "pre_point": "", "level_up_skill_id": "800403", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8004004": {"max_level": 10, "point_type": "2", "anchor": "Point04", "pre_point": "", "level_up_skill_id": "800404", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}, "2": {"promotion_limit": 1, "status_add": {}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}, "3": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}, "4": {"promotion_limit": 3, "status_add": {}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}, "5": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}, "6": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 24000}, {"id": "110142", "num": 6}, {"id": "111012", "num": 5}]}, "7": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}, "8": {"promotion_limit": 5, "status_add": {}, "material_list": [{"id": "2", "num": 64000}, {"id": "110143", "num": 4}, {"id": "110501", "num": 1}, {"id": "111013", "num": 3}]}, "9": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "110501", "num": 1}]}, "10": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 240000}, {"id": "110143", "num": 11}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8004007": {"max_level": 1, "point_type": "2", "anchor": "Point05", "pre_point": "", "level_up_skill_id": "800407", "levels": {"1": {"promotion_limit": 0, "status_add": {}, "material_list": []}}}, "8004101": {"max_level": 1, "point_type": "3", "anchor": "Point06", "pre_point": "8004201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "110501", "num": 1}]}}}, "8004102": {"max_level": 1, "point_type": "3", "anchor": "Point07", "pre_point": "8004201", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8004103": {"max_level": 1, "point_type": "3", "anchor": "Point08", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "241", "num": 1}, {"id": "110501", "num": 1}]}}}, "8004201": {"max_level": 1, "point_type": "1", "anchor": "Point09", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 2000}, {"id": "111011", "num": 2}]}}}, "8004202": {"max_level": 1, "point_type": "1", "anchor": "Point10", "pre_point": "8004101", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 2, "status_add": {"property": "AttackAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 4000}, {"id": "110141", "num": 2}, {"id": "111011", "num": 4}]}}}, "8004203": {"max_level": 1, "point_type": "1", "anchor": "Point11", "pre_point": "8004202", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "DefenceAddedRatio", "value": 0.05}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "8004204": {"max_level": 1, "point_type": "1", "anchor": "Point12", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 3, "status_add": {"property": "HPAddedRatio", "value": 0.04}, "material_list": [{"id": "2", "num": 8000}, {"id": "110142", "num": 2}, {"id": "111012", "num": 2}]}}}, "8004205": {"max_level": 1, "point_type": "1", "anchor": "Point13", "pre_point": "8004102", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 4, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 16000}, {"id": "110142", "num": 4}, {"id": "111012", "num": 3}]}}}, "8004206": {"max_level": 1, "point_type": "1", "anchor": "Point14", "pre_point": "8004205", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "AttackAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "8004207": {"max_level": 1, "point_type": "1", "anchor": "Point15", "pre_point": "", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 5, "status_add": {"property": "DefenceAddedRatio", "value": 0.075}, "material_list": [{"id": "2", "num": 36000}, {"id": "110143", "num": 2}, {"id": "111013", "num": 2}]}}}, "8004208": {"max_level": 1, "point_type": "1", "anchor": "Point16", "pre_point": "8004103", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 6, "status_add": {"property": "HPAddedRatio", "value": 0.06}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "8004209": {"max_level": 1, "point_type": "1", "anchor": "Point17", "pre_point": "8004208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "AttackAddedRatio", "value": 0.08}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}, "8004210": {"max_level": 1, "point_type": "1", "anchor": "Point18", "pre_point": "8004208", "level_up_skill_id": "", "levels": {"1": {"promotion_limit": 0, "status_add": {"property": "DefenceAddedRatio", "value": 0.1}, "material_list": [{"id": "2", "num": 128000}, {"id": "110143", "num": 6}, {"id": "111013", "num": 6}]}}}}} diff --git a/poetry.lock b/poetry.lock index 1fbafd4..645629a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -596,18 +596,18 @@ files = [ [[package]] name = "platformdirs" -version = "3.5.0" +version = "3.5.1" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.5.0-py3-none-any.whl", hash = "sha256:47692bc24c1958e8b0f13dd727307cff1db103fca36399f457da8e05f222fdc4"}, - {file = "platformdirs-3.5.0.tar.gz", hash = "sha256:7954a68d0ba23558d753f73437c55f89027cf8f5108c19844d4b82e5af396335"}, + {file = "platformdirs-3.5.1-py3-none-any.whl", hash = "sha256:e2378146f1964972c03c085bb5662ae80b2b8c06226c54b2ff4aa9483e8a13a5"}, + {file = "platformdirs-3.5.1.tar.gz", hash = "sha256:412dae91f52a6f84830f39a8078cecd0e866cb72294a5c66808e74d5e88d251f"}, ] [package.extras] -docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +docs = ["furo (>=2023.3.27)", "proselint (>=0.13)", "sphinx (>=6.2.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] [[package]]