diff --git a/base/buff.py b/base/buff.py index a3b21d2c321495f12b1e3cefb002aecc84393e54..d43314b974961b8f4f18ef8052affdcd867a682d 100644 --- a/base/buff.py +++ b/base/buff.py @@ -17,7 +17,6 @@ class Buff: frame_shift: int = 0 activate: bool = True - stackable: bool = True max_stack: int = 1 gain_skills: Dict[int, ATTR_DICT] = None @@ -52,76 +51,84 @@ class Buff: def display_name(self): return f"{self.buff_name}#{self.buff_id}-{self.buff_level}-{self.buff_stack}" - def value(self, values): + def value(self, values, stackable): if isinstance(values, list): value = values[self.buff_level - 1] else: value = values - if self.stackable: + if stackable: value = value * self.buff_stack - if isinstance(value, float): - value = 1 + value - return value + def attribute_value(self, values): + return self.value(values, True) + + def skill_value(self, values): + return self.value(values, False) + def add_all(self, attribute: Attribute, skill: Skill): for attr, values in self.gain_attributes.items(): - setattr(attribute, attr, getattr(attribute, attr) + self.value(values)) + setattr(attribute, attr, getattr(attribute, attr) + self.attribute_value(values)) for attr, values in self.gain_skills.get(skill.skill_id, {}).items(): - value = self.value(values) + value = self.skill_value(values) if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) * self.value(values)) + setattr(skill, attr, getattr(skill, attr) * value) else: - setattr(skill, attr, getattr(skill, attr) + self.value(values)) + setattr(skill, attr, getattr(skill, attr) + value) def add_dot(self, attribute: Attribute, skill: Skill, snapshot: bool = True): + return_tag = False for attr, values in self.gain_attributes.items(): if snapshot and any(snapshot_attr in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - setattr(attribute, attr, getattr(attribute, attr) + self.value(values)) + return_tag = True + setattr(attribute, attr, getattr(attribute, attr) + self.attribute_value(values)) elif not snapshot and all(snapshot_attr not in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - setattr(attribute, attr, getattr(attribute, attr) + self.value(values)) + return_tag = True + setattr(attribute, attr, getattr(attribute, attr) + self.attribute_value(values)) for attr, values in self.gain_skills.get(skill.skill_id, {}).items(): + value = self.skill_value(values) if snapshot and any(snapshot_attr in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - value = self.value(values) + return_tag = True if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) * self.value(values)) + setattr(skill, attr, getattr(skill, attr) * value) else: - setattr(skill, attr, getattr(skill, attr) + self.value(values)) + setattr(skill, attr, getattr(skill, attr) + value) elif not snapshot and all(snapshot_attr not in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - value = self.value(values) + return_tag = True if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) * self.value(values)) + setattr(skill, attr, getattr(skill, attr) * value) else: - setattr(skill, attr, getattr(skill, attr) + self.value(values)) + setattr(skill, attr, getattr(skill, attr) + value) + + return return_tag def sub_all(self, attribute: Attribute, skill: Skill): for attr, values in self.gain_attributes.items(): - setattr(attribute, attr, getattr(attribute, attr) - self.value(values)) + setattr(attribute, attr, getattr(attribute, attr) - self.attribute_value(values)) for attr, values in self.gain_skills.get(skill.skill_id, {}).items(): - value = self.value(values) + value = self.skill_value(values) if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) / self.value(values)) + setattr(skill, attr, getattr(skill, attr) / value) else: - setattr(skill, attr, getattr(skill, attr) - self.value(values)) + setattr(skill, attr, getattr(skill, attr) - value) def sub_dot(self, attribute: Attribute, skill: Skill, snapshot: bool = True): for attr, values in self.gain_attributes.items(): if snapshot and any(snapshot_attr in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - setattr(attribute, attr, getattr(attribute, attr) - self.value(values)) + setattr(attribute, attr, getattr(attribute, attr) - self.attribute_value(values)) elif not snapshot and all(snapshot_attr not in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - setattr(attribute, attr, getattr(attribute, attr) - self.value(values)) + setattr(attribute, attr, getattr(attribute, attr) - self.attribute_value(values)) for attr, values in self.gain_skills.get(skill.skill_id, {}).items(): + value = self.skill_value(values) if snapshot and any(snapshot_attr in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - value = self.value(values) if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) / self.value(values)) + setattr(skill, attr, getattr(skill, attr) / value) else: - setattr(skill, attr, getattr(skill, attr) - self.value(values)) + setattr(skill, attr, getattr(skill, attr) - value) elif not snapshot and all(snapshot_attr not in attr for snapshot_attr in self.SNAPSHOT_ATTRS): - value = self.value(values) if isinstance(value, float): - setattr(skill, attr, getattr(skill, attr) / self.value(values)) + setattr(skill, attr, getattr(skill, attr) / value) else: - setattr(skill, attr, getattr(skill, attr) - self.value(values)) + setattr(skill, attr, getattr(skill, attr) - value) diff --git a/base/skill.py b/base/skill.py index 001517638effa7f9500ca6076ab87f3da406adf0..89fb19fb5545d54e3f9accec9d6341f4edcb8188 100644 --- a/base/skill.py +++ b/base/skill.py @@ -171,7 +171,7 @@ class Skill: else: self._skill_shield_gain = [skill_shield_gain] - def record(self, skill_level, critical, parser): + def record(self, critical, parser): pass def __call__(self, attribute: Attribute): @@ -179,27 +179,27 @@ class Skill: class BuffSkill(Skill): - def record(self, skill_level, critical, parser): - super().record(skill_level, critical, parser) + def record(self, critical, parser): + super().record(critical, parser) if self.bind_buff not in parser.current_school.buffs: return - buff = parser.current_school.buffs[self.bind_buff] - status_buffer = (self.bind_buff, 1) - parser.current_hidden_buffs.pop(status_buffer, None) - parser.current_status[status_buffer] = min(parser.current_status[status_buffer] + 1, buff.max_stack) + max_stack = parser.current_school.buffs[self.bind_buff].max_stack + buff = (self.bind_buff, 1) + parser.current_hidden_buffs.pop(buff, None) + parser.current_target_buffs[buff] = min(parser.current_target_buffs.get(buff, 0) + 1, max_stack) end_frame = parser.current_frame + self.duration - parser.current_hidden_buffs[status_buffer] = end_frame + parser.current_hidden_buffs[buff] = end_frame class DotSkill(Skill): - def record(self, skill_level, critical, parser): - super().record(skill_level, critical, parser) + def record(self, critical, parser): + super().record(critical, parser) bind_skill = self.bind_skill if not parser.current_ticks[bind_skill]: parser.current_stacks[bind_skill] = 0 parser.current_ticks[bind_skill] = self.tick parser.current_stacks[bind_skill] = min(parser.current_stacks[bind_skill] + 1, self.max_stack) - parser.current_snapshot[bind_skill] = parser.current_status.copy() + parser.current_dot_snapshot[bind_skill] = parser.current_player_buffs.copy() class DotConsumeSkill(Skill): @@ -219,8 +219,8 @@ class DotConsumeSkill(Skill): ) parser.current_ticks[skill_id] -= tick - def record(self, skill_level, critical, parser): - super().record(skill_level, critical, parser) + def record(self, critical, parser): + super().record(critical, parser) if self.last_dot: self.consume_last(parser) else: @@ -228,11 +228,11 @@ class DotConsumeSkill(Skill): class Damage(Skill): - def record(self, skill_level, critical, parser): - super().record(skill_level, critical, parser) + def record(self, critical, parser): + super().record(critical, parser) skill_stack = parser.current_stacks[self.skill_id] - skill_tuple = (self.skill_id, skill_level, skill_stack) - status_tuple = parser.available_status(self.skill_id) + skill_tuple = (self.skill_id, self.skill_level, skill_stack) + status_tuple = parser.status(self.skill_id) parser.current_records[skill_tuple][status_tuple].append( (parser.current_frame - parser.start_frame, critical) ) @@ -240,21 +240,16 @@ class Damage(Skill): class PetDamage(Damage): - def record(self, skill_level, critical, parser): - skill_tuple, status_tuple = super().record(skill_level, critical, parser) - pet_status_tuple = parser.available_status(self.skill_id, parser.current_caster) - parser.current_records[skill_tuple][pet_status_tuple].append( - parser.current_records[skill_tuple][status_tuple].pop() - ) + pass class DotDamage(Damage): - def record(self, skill_level, critical, parser): - skill_tuple, status_tuple = super().record(skill_level, critical, parser) + def record(self, critical, parser): + skill_tuple, status_tuple = super().record(critical, parser) if tick := parser.current_next_dot.pop(self.skill_id, None): _, _, skill_stack = skill_tuple - parser.current_records[(self.skill_id, skill_level, skill_stack * tick)][status_tuple].append( + parser.current_records[(self.skill_id, self.skill_level, skill_stack * tick)][status_tuple].append( parser.current_records[skill_tuple][status_tuple].pop() ) parser.current_ticks[self.skill_id] -= tick @@ -314,7 +309,7 @@ class MagicalSkill(Skill): self.attack_power_cof, attribute.magical_attack_power, self.weapon_damage_cof, attribute.weapon_damage, self.surplus_cof, attribute.surplus - ) * self.skill_stack * self.global_damage_factor * attribute.global_damage_factor * attribute.global_damage_factor + ) * self.skill_stack * self.global_damage_factor * attribute.global_damage_factor damage = damage_addition_result(damage, attribute.magical_damage_addition + self.skill_damage_addition) damage = overcome_result(damage, attribute.magical_overcome, diff --git a/general/buffs/__init__.py b/general/buffs/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..40847988cc03cab2f5fb666b425f3a23c2aff896 --- /dev/null +++ b/general/buffs/__init__.py @@ -0,0 +1,6 @@ +from general.buffs import equipment, team + +GENERAL_BUFFS = { + **equipment.GENERAL_BUFFS, + **team.GENERAL_BUFFS +} diff --git a/general/buffs.py b/general/buffs/equipment.py similarity index 100% rename from general/buffs.py rename to general/buffs/equipment.py diff --git a/general/buffs/team.py b/general/buffs/team.py new file mode 100644 index 0000000000000000000000000000000000000000..5b7def03f6c9c49715fb428ccf2373e165fd76ef --- /dev/null +++ b/general/buffs/team.py @@ -0,0 +1,105 @@ +from base.buff import Buff + +GENERAL_BUFFS = { + 20938: { + "buff_name": "左旋右转", + "gain_attributes": { + "surplus_base": 54, + } + }, + 23573: { + "buff_name": "泠风解怀", + "gain_attributes": { + "all_damage_addition": 154 + } + }, + 23107: { + "buff_name": "号令三军", + "gain_attributes": { + "strain_base": 500 + } + }, + 6363: { + "buff_name": "激雷", + "gain_attributes": { + "physical_attack_power_gain": 205, "physical_overcome_gain": 205 + } + }, + 10208: { + "buff_name": "弘法", + "gain_attributes": { + "strain_base": 500 + } + }, + 24350: { + "buff_name": "皎素", + "gain_attributes": { + "all_critical_power_gain": 51 + } + }, + 24742: { + "buff_name": "仙王蛊鼎", + "gain_attributes": { + "all_damage_addition": 123 + } + }, + 4246: { + "buff_name": "朝圣", + "gain_attributes": { + "strain_base": 500 + } + }, + 9744: { + "buff_name": "朝圣", + "gain_attributes": { + "strain_base": 875 + } + }, + 8504: { + "buff_name": "振奋", + "gain_attributes": { + "physical_overcome_base": 60, + "magical_overcome_base": 60 + } + }, + 10031: { + "buff_name": "寒啸千军", + "gain_attributes": { + "physical_overcome_gain": 204, + "magical_overcome_gain": 204 + } + }, + 23543: { + "buff_name": "庄周梦", + "gain_attributes": { + "strain_base": 50 + } + }, + 16911: { + "buff_name": "弄梅", + "gain_attributes": { + "physical_overcome_base": 700, + "magical_overcome_base": 700, + "all_shield_ignore": 205 + } + }, + 11456: { + "buff_name": "疏狂", + "gain_attributes": { + "physical_attack_power_gain": 307, + "magical_attack_power_gain": 307 + } + }, + 20877: { + "buff_name": "配伍", + "gain_attributes": { + "all_major_gain": 10 + } + } +} + +for buff_id, detail in GENERAL_BUFFS.items(): + GENERAL_BUFFS[buff_id] = Buff(buff_id) + GENERAL_BUFFS[buff_id].activate = False + for attr, value in detail.items(): + setattr(GENERAL_BUFFS[buff_id], attr, value) diff --git a/general/gains/team.py b/general/gains/team.py index 25588d93b204e73bd25df595c0f375c0338b9581..7b663268e03e9ad535de3317e64df5c7400544aa 100644 --- a/general/gains/team.py +++ b/general/gains/team.py @@ -1,5 +1,21 @@ +from typing import Dict + from base.attribute import Attribute +from base.buff import Buff from base.gain import Gain +from general.buffs.team import GENERAL_BUFFS + + +class RealTeamGain(Gain): + buff_ids = list(GENERAL_BUFFS) + + def add_buffs(self, buffs: Dict[int, Buff]): + for buff_id in self.buff_ids: + buffs[buff_id].activate = True + + def sub_buffs(self, buffs: Dict[int, Buff]): + for buff_id in self.buff_ids: + buffs[buff_id].activate = False class TeamGain(Gain): @@ -55,7 +71,7 @@ class 乘龙箭(TeamGain): class 号令三军(TeamGain): - gain_attributes = {"strain_base": (470 + 470 / 2) / 2} + gain_attributes = {"strain_base": (500 + 500 / 2) / 2} class 激雷(TeamGain): @@ -70,7 +86,7 @@ class 立地成佛(TeamGain): class 舍身弘法(TeamGain): - gain_attributes = {"strain_base": 470} + gain_attributes = {"strain_base": 500} """ 万花 """ @@ -117,8 +133,8 @@ class 戒火(TeamGain): class 朝圣言(TeamGain): - gain_attributes = {"strain_base": 470} - variety_values = {"圣浴明心": 820 - 470} + gain_attributes = {"strain_base": 500} + variety_values = {"圣浴明心": 875 - 500} """ 丐帮 """ @@ -186,10 +202,10 @@ TEAM_GAIN_LIMIT = { "stack": 24 }, "振奋": { - "stack": 100 + "stack": 125 }, "庄周梦": { - "stack": 150 + "stack": 200 } } TEAM_GAINS = { diff --git a/general/skills/__init__.py b/general/skills/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ff81b7698801f2fc8e63356329cbe168d608e2a5 --- /dev/null +++ b/general/skills/__init__.py @@ -0,0 +1,6 @@ +from general.skills import equipment, team + +GENERAL_SKILLS = { + **equipment.GENERAL_SKILLS, + **team.GENERAL_SKILLS +} diff --git a/general/skills/equipment.py b/general/skills/equipment.py new file mode 100644 index 0000000000000000000000000000000000000000..b04548dcf3087064bc6a44586fb6b7ccc4072597 --- /dev/null +++ b/general/skills/equipment.py @@ -0,0 +1,92 @@ +from typing import Dict + +from base.skill import PhysicalDamage, MagicalDamage, Skill, PureDamage + +GENERAL_SKILLS: Dict[int, Skill | dict] = { + 22160: { + "skill_class": PhysicalDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": 75 + }, + 22161: { + "skill_class": MagicalDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": 90 + }, + 22162: { + "skill_class": MagicalDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": 90 + }, + 22163: { + "skill_class": MagicalDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": 90 + }, + 22164: { + "skill_class": MagicalDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": 90 + }, + 33257: { + "skill_class": PhysicalDamage, + "skill_name": "刃凌", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [60, 100, 60, 100, 100] + }, + 33258: { + "skill_class": MagicalDamage, + "skill_name": "刃凌", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [50, 100] + }, + 33259: { + "skill_class": MagicalDamage, + "skill_name": "刃凌", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [50, 100] + }, + 33260: { + "skill_class": MagicalDamage, + "skill_name": "刃凌", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [50, 100] + }, + 33261: { + "skill_class": MagicalDamage, + "skill_name": "刃凌", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [50, 100] + }, + 37562: { + "skill_class": PureDamage, + "skill_name": "昆吾·弦刃", + "damage_base": 145300 + }, + 37561: { + "skill_class": PureDamage, + "skill_name": "刃凌", + "damage_base": 96900, + }, +} + +for skill_id, detail in GENERAL_SKILLS.items(): + GENERAL_SKILLS[skill_id] = detail.pop('skill_class')(skill_id) + GENERAL_SKILLS[skill_id].activate = False + for attr, value in detail.items(): + setattr(GENERAL_SKILLS[skill_id], attr, value) diff --git a/general/skills/team.py b/general/skills/team.py new file mode 100644 index 0000000000000000000000000000000000000000..97a020a5232eab0511d01bbc59c9bec1d52708f1 --- /dev/null +++ b/general/skills/team.py @@ -0,0 +1,28 @@ +from typing import Dict + +from base.skill import PhysicalDamage, MagicalDamage, Skill, PureDamage + +GENERAL_SKILLS: Dict[int, Skill | dict] = { + 29535: { + "skill_class": MagicalDamage, + "skill_name": "逐云寒蕊", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [90, 200 * 1.2], + "skill_shield_gain": -1024 + }, + 29536: { + "skill_class": PhysicalDamage, + "skill_name": "逐云寒蕊", + "damage_base": 40, + "damage_rand": 17, + "attack_power_cof": [90, 200 * 1.2], + "skill_shield_gain": -1024 + } +} + +for skill_id, detail in GENERAL_SKILLS.items(): + GENERAL_SKILLS[skill_id] = detail.pop('skill_class')(skill_id) + GENERAL_SKILLS[skill_id].activate = False + for attr, value in detail.items(): + setattr(GENERAL_SKILLS[skill_id], attr, value) diff --git a/get_assets.py b/get_assets.py index b028e28ae582e65dc64835acd15f8929948b837a..a229feba43407fa72716fa3911c71878c49e62fe 100644 --- a/get_assets.py +++ b/get_assets.py @@ -180,11 +180,9 @@ def get_secondary_weapons(): def get_equip_name(row): name = row['Name'] - if "无封" in name: - name = f"{row['MagicKind']}{name}" attrs = " ".join([EQUIP_ATTR_MAP[attr] for attr in EQUIP_ATTR_MAP if attr in row['_Attrs']]) level = row['Level'] - return f"{name} ({attrs}) {level}" + return f"{name}#{row['ID']}({attrs}) {level}" def get_equip_detail(row): diff --git a/parse_new_school.py b/parse_new_school.py index 262c85e54d27e9480ffe1a8179ca83a427600175..a81439391806b38af9df939726e8d4b5a561b0d1 100644 --- a/parse_new_school.py +++ b/parse_new_school.py @@ -59,4 +59,4 @@ class Parser: if __name__ == '__main__': parser = Parser() - parser(r"hua_jian.jcl") + parser(r"new.jcl") diff --git a/qt/assets/equipments/belt b/qt/assets/equipments/belt index 641d4f8258da0d35871c96a62e42ff8cf34ca17a..64c36bd7ed320b20a48730333438c4aa3716b3b4 100644 --- a/qt/assets/equipments/belt +++ b/qt/assets/equipments/belt @@ -1 +1 @@ -{"水泉腰带 (会心 破招) 15800": {"id": 98487, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽腰带 (会心 破招) 15800": {"id": 98486, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓腰带 (会心 破招) 15800": {"id": 98485, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "all_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川腰带 (会心 破招) 15800": {"id": 98484, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落腰带 (会心 破招) 15600": {"id": 98589, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠腰带 (会心 破招) 15600": {"id": 98588, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟腰带 (会心 破招) 15600": {"id": 98587, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤腰带 (会心 破招) 15600": {"id": 98586, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "看面束腰 (破招 无双) 15600": {"id": 98469, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2236, "surplus_base": 4782, "strain_base": 4782}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "苏汉束腰 (破防 无双) 15600": {"id": 98468, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "physical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "文成束腰 (破招 无双) 15600": {"id": 98467, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2683, "surplus_base": 4782, "strain_base": 4782}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "令上束腰 (破防 无双) 15600": {"id": 98466, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3197, "magical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岂邪腰带 (无双) 15600": {"id": 98449, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7546}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "因其腰带 (无双) 15600": {"id": 98448, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "strain_base": 7546}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "神际腰带 (会心 破招 无双) 15600": {"id": 98447, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus_base": 2338, "physical_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "无吼腰带 (破防 破招) 15600": {"id": 98446, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus_base": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "若环腰带 (会心) 15600": {"id": 98445, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "犹阁腰带 (会心 破招 无双) 15600": {"id": 98444, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "surplus_base": 2338, "all_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "伏林腰带 (破防 破招) 15600": {"id": 98443, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "surplus_base": 4251, "magical_overcome_base": 4464}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "流送腰带 (会心) 15600": {"id": 98442, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "all_critical_strike_base": 7546}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困带 (加速 破招) 15600": {"id": 98415, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落带 (加速 破招) 15600": {"id": 98414, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安带 (加速 破招) 15600": {"id": 98413, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义带 (加速 破招) 15600": {"id": 98412, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀腰带 (破防 无双) 15600": {"id": 98379, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪腰带 (破防 无双) 15600": {"id": 98378, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙腰带 (破防 无双) 15600": {"id": 98377, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城腰带 (破防 无双) 15600": {"id": 98376, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸腰带 (会心 无双) 15400": {"id": 98279, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜腰带 (会心 无双) 15400": {"id": 98278, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林腰带 (会心 无双) 15400": {"id": 98276, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼腰带 (会心 无双) 15400": {"id": 98273, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁腰带 (会心 无双) 15400": {"id": 98272, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲腰带 (破防 无双) 15400": {"id": 98270, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·雨痕腰带 (会心 无双) 15400": {"id": 98263, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江腰带 (会心 无双) 15400": {"id": 98262, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦腰带 (破防 无双) 15400": {"id": 98258, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛腰带 (会心 无双) 15400": {"id": 98257, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬腰带 (会心 无双) 15400": {"id": 98256, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧腰带 (会心 无双) 15400": {"id": 98252, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法腰带 (会心 无双) 15400": {"id": 98250, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "风停腰带 (会心 破招) 14150": {"id": 96373, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈腰带 (会心 破招) 14150": {"id": 96372, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫腰带 (会心 破招) 14150": {"id": 96371, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "all_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻腰带 (会心 破招) 14150": {"id": 96370, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇腰带 (破防 破招) 13950": {"id": 98685, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光腰带 (破防 破招) 13950": {"id": 98684, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼腰带 (破防 破招) 13950": {"id": 98683, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适腰带 (破防 破招) 13950": {"id": 98682, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危光带 (会心 无双) 13950": {"id": 98193, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨带 (会心 无双) 13950": {"id": 98192, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危影带 (会心 无双) 13950": {"id": 98191, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危音带 (会心 无双) 13950": {"id": 98190, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽腰带 (会心 破招) 13950": {"id": 96483, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺腰带 (会心 破招) 13950": {"id": 96482, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓腰带 (会心 破招) 13950": {"id": 96481, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合腰带 (会心 破招) 13950": {"id": 96480, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "余弦束腰 (破招 无双) 13950": {"id": 96355, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2000, "surplus_base": 4277, "strain_base": 4277}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮舞束腰 (破防 无双) 13950": {"id": 96354, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "physical_overcome_base": 3611, "strain_base": 3991}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "舒念束腰 (破招 无双) 13950": {"id": 96353, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2399, "surplus_base": 4277, "strain_base": 4277}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "楼满束腰 (破防 无双) 13950": {"id": 96352, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2859, "magical_overcome_base": 3611, "strain_base": 3991}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "叙尧腰带 (无双) 13950": {"id": 96335, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6748}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "书鸢腰带 (无双) 13950": {"id": 96334, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "strain_base": 6748}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "疏绫腰带 (会心 破招 无双) 13950": {"id": 96333, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus_base": 2091, "physical_critical_strike_base": 3611, "strain_base": 2091}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆檀腰带 (破防 破招) 13950": {"id": 96332, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus_base": 3801, "physical_overcome_base": 3991}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岳圭腰带 (会心) 13950": {"id": 96331, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东珞腰带 (会心 破招 无双) 13950": {"id": 96330, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "surplus_base": 2091, "all_critical_strike_base": 3611, "strain_base": 2091}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "芜云腰带 (破防 破招) 13950": {"id": 96329, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "surplus_base": 3801, "magical_overcome_base": 3991}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "挽星腰带 (会心) 13950": {"id": 96328, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "all_critical_strike_base": 6748}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁带 (加速 破招) 13950": {"id": 96301, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦带 (加速 破招) 13950": {"id": 96300, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云带 (加速 破招) 13950": {"id": 96299, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡带 (加速 破招) 13950": {"id": 96298, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣腰带 (破防 无双) 13950": {"id": 96265, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行腰带 (破防 无双) 13950": {"id": 96264, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐腰带 (破防 无双) 13950": {"id": 96263, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英腰带 (破防 无双) 13950": {"id": 96262, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋腰带 (加速 破招) 13750": {"id": 98169, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪腰带 (加速 破招) 13750": {"id": 98168, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉腰带 (加速 破招) 13750": {"id": 98167, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "haste_base": 3372, "surplus_base": 2998}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月腰带 (加速 破招) 13750": {"id": 98166, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "haste_base": 3372, "surplus_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林腰带 (会心 无双) 13750": {"id": 96165, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归腰带 (会心 无双) 13750": {"id": 96164, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳腰带 (会心 无双) 13750": {"id": 96162, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛腰带 (会心 无双) 13750": {"id": 96159, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜腰带 (会心 无双) 13750": {"id": 96158, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音腰带 (破防 无双) 13750": {"id": 96156, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·闻箫腰带 (会心 无双) 13750": {"id": 96149, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿腰带 (会心 无双) 13750": {"id": 96148, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪腰带 (破防 无双) 13750": {"id": 96144, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿腰带 (会心 无双) 13750": {"id": 96143, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐腰带 (会心 无双) 13750": {"id": 96142, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧腰带 (会心 无双) 13750": {"id": 96138, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行腰带 (会心 无双) 13750": {"id": 96136, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "翠林腰带 (破防 破招) 12600": {"id": 97773, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "静山腰带 (破防 破招) 12600": {"id": 97772, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "幽川腰带 (破防 破招) 12600": {"id": 97771, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月腰带 (破防 破招) 12600": {"id": 97770, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫腰带 (会心 破招) 12600": {"id": 94470, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞腰带 (会心 破招) 12600": {"id": 94469, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁腰带 (会心 破招) 12600": {"id": 94468, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "all_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满腰带 (会心 破招) 12600": {"id": 94467, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒腰带 (破防 破招) 12450": {"id": 96579, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠腰带 (破防 破招) 12450": {"id": 96578, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声腰带 (破防 破招) 12450": {"id": 96577, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书腰带 (破防 破招) 12450": {"id": 96576, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月腰带 (会心 破招) 12450": {"id": 94572, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静腰带 (会心 破招) 12450": {"id": 94571, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟腰带 (会心 破招) 12450": {"id": 94570, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂腰带 (会心 破招) 12450": {"id": 94569, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泽及腰带 (破防 无双) 12450": {"id": 94444, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寸碧腰带 (破防 无双) 12450": {"id": 94443, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "magical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "沧鳞腰带 (会心 无双) 12450": {"id": 94442, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "聚远腰带 (破防 破招) 12450": {"id": 94441, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus_base": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "束缊腰带 (无双) 12450": {"id": 94440, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "strain_base": 5683}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿北腰带 (会心 无双) 12450": {"id": 94439, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2187, "all_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "百汩腰带 (破防 破招) 12450": {"id": 94438, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "surplus_base": 3562, "magical_overcome_base": 3223}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "栗烈腰带 (无双) 12450": {"id": 94437, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3098, "strain_base": 5683}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞带 (加速 破招) 12450": {"id": 94410, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃带 (加速 破招) 12450": {"id": 94409, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡带 (加速 破招) 12450": {"id": 94408, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华带 (加速 破招) 12450": {"id": 94407, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野腰带 (破防 无双) 12450": {"id": 94374, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿腰带 (破防 无双) 12450": {"id": 94373, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微腰带 (破防 无双) 12450": {"id": 94372, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓腰带 (破防 无双) 12450": {"id": 94371, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临夜腰带 (破防 无双) 12400": {"id": 90516, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临岳腰带 (破防 无双) 12400": {"id": 90515, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临初腰带 (破防 无双) 12400": {"id": 90514, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "magical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临罡腰带 (破防 无双) 12400": {"id": 90513, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨腰带·刀功 (会心 破招) 12300": {"id": 98127, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨腰带·刀功 (会心 破招) 12300": {"id": 98126, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨腰带·火候 (会心 破招) 12300": {"id": 98124, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨腰带·刀功 (会心 破招) 12300": {"id": 98121, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨腰带·刀功 (会心 破招) 12300": {"id": 98120, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨腰带·火候 (会心 破招) 12300": {"id": 98118, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨腰带·刀功 (会心 破招) 12300": {"id": 98111, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨腰带·火候 (会心 破招) 12300": {"id": 98110, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨腰带·火候 (会心 破招) 12300": {"id": 98106, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨腰带·刀功 (会心 破招) 12300": {"id": 98105, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨腰带·火候 (会心 破招) 12300": {"id": 98104, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨腰带·火候 (会心 破招) 12300": {"id": 98100, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨腰带·火候 (会心 破招) 12300": {"id": 98098, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风腰带 (会心 无双) 12300": {"id": 97847, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云腰带 (加速 破招) 12300": {"id": 96085, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风腰带 (加速 破招) 12300": {"id": 96084, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨腰带 (加速 破招) 12300": {"id": 96083, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪腰带 (加速 破招) 12300": {"id": 96082, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹腰带 (会心 无双) 12300": {"id": 94277, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青腰带 (会心 无双) 12300": {"id": 94275, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀腰带 (会心 无双) 12300": {"id": 94272, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄腰带 (会心 无双) 12300": {"id": 94271, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒腰带 (破防 无双) 12300": {"id": 94269, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·霜故腰带 (会心 无双) 12300": {"id": 94262, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼腰带 (会心 无双) 12300": {"id": 94261, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆腰带 (破防 无双) 12300": {"id": 94257, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄腰带 (会心 无双) 12300": {"id": 94256, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心腰带 (会心 无双) 12300": {"id": 94255, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声腰带 (会心 无双) 12300": {"id": 94251, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台腰带 (会心 无双) 12300": {"id": 94249, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念腰带 (加速 破招) 12300": {"id": 90648, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江腰带 (加速 破招) 12300": {"id": 90647, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦腰带 (加速 破招) 12300": {"id": 90646, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰腰带 (加速 破招) 12300": {"id": 90645, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱腰带 (破防 无双) 12300": {"id": 90612, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌腰带 (破防 无双) 12300": {"id": 90611, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳腰带 (破防 无双) 12300": {"id": 90610, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐腰带 (破防 无双) 12300": {"id": 90609, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱腰带 (破防 破招) 12300": {"id": 90576, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦腰带 (破防 破招) 12300": {"id": 90575, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭腰带 (破防 破招) 12300": {"id": 90574, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南腰带 (破防 破招) 12300": {"id": 90573, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱腰带 (会心 无双) 12300": {"id": 90540, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双腰带 (会心 无双) 12300": {"id": 90539, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜腰带 (会心 无双) 12300": {"id": 90538, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云腰带 (会心 无双) 12300": {"id": 90537, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁带 (加速 无双) 12300": {"id": 90408, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬带 (加速 无双) 12300": {"id": 90407, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜带 (加速 无双) 12300": {"id": 90406, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安带 (加速 无双) 12300": {"id": 90405, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝带 (破防 无双) 12300": {"id": 90372, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰带 (破防 无双) 12300": {"id": 90371, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔带 (破防 无双) 12300": {"id": 90370, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨带 (破防 无双) 12300": {"id": 90369, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳带 (破招 无双) 12300": {"id": 90336, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关带 (破招 无双) 12300": {"id": 90335, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐带 (破招 无双) 12300": {"id": 90334, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄带 (破招 无双) 12300": {"id": 90333, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉腰带#98487(会心 破招) 15800": {"id": 98487, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽腰带#98486(会心 破招) 15800": {"id": 98486, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓腰带#98485(会心 破招) 15800": {"id": 98485, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "all_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川腰带#98484(会心 破招) 15800": {"id": 98484, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_critical_strike_base": 3875, "surplus_base": 3444}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落腰带#98589(会心 破招) 15600": {"id": 98589, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠腰带#98588(会心 破招) 15600": {"id": 98588, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟腰带#98587(会心 破招) 15600": {"id": 98587, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤腰带#98586(会心 破招) 15600": {"id": 98586, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "看面束腰#98469(破招 无双) 15600": {"id": 98469, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2236, "surplus_base": 4782, "strain_base": 4782}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "苏汉束腰#98468(破防 无双) 15600": {"id": 98468, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "physical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "文成束腰#98467(破招 无双) 15600": {"id": 98467, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2683, "surplus_base": 4782, "strain_base": 4782}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "令上束腰#98466(破防 无双) 15600": {"id": 98466, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3197, "magical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岂邪腰带#98449(无双) 15600": {"id": 98449, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7546}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "因其腰带#98448(无双) 15600": {"id": 98448, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "strain_base": 7546}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "神际腰带#98447(会心 破招 无双) 15600": {"id": 98447, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus_base": 2338, "physical_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "无吼腰带#98446(破防 破招) 15600": {"id": 98446, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus_base": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "若环腰带#98445(会心) 15600": {"id": 98445, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "犹阁腰带#98444(会心 破招 无双) 15600": {"id": 98444, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "surplus_base": 2338, "all_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "伏林腰带#98443(破防 破招) 15600": {"id": 98443, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "surplus_base": 4251, "magical_overcome_base": 4464}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "流送腰带#98442(会心) 15600": {"id": 98442, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "all_critical_strike_base": 7546}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困带#98415(加速 破招) 15600": {"id": 98415, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落带#98414(加速 破招) 15600": {"id": 98414, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安带#98413(加速 破招) 15600": {"id": 98413, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义带#98412(加速 破招) 15600": {"id": 98412, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀腰带#98379(破防 无双) 15600": {"id": 98379, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪腰带#98378(破防 无双) 15600": {"id": 98378, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙腰带#98377(破防 无双) 15600": {"id": 98377, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城腰带#98376(破防 无双) 15600": {"id": 98376, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸腰带#98279(会心 无双) 15400": {"id": 98279, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜腰带#98278(会心 无双) 15400": {"id": 98278, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林腰带#98276(会心 无双) 15400": {"id": 98276, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼腰带#98273(会心 无双) 15400": {"id": 98273, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁腰带#98272(会心 无双) 15400": {"id": 98272, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲腰带#98270(破防 无双) 15400": {"id": 98270, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·旌声腰带#98268(破防 破招) 15400": {"id": 98268, "school": "苍云", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "surplus_base": 3357}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": "192044", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "鸿辉·雨痕腰带#98263(会心 无双) 15400": {"id": 98263, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江腰带#98262(会心 无双) 15400": {"id": 98262, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦腰带#98258(破防 无双) 15400": {"id": 98258, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛腰带#98257(会心 无双) 15400": {"id": 98257, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬腰带#98256(会心 无双) 15400": {"id": 98256, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧腰带#98252(会心 无双) 15400": {"id": 98252, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法腰带#98250(会心 无双) 15400": {"id": 98250, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "风停腰带#96373(会心 破招) 14150": {"id": 96373, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈腰带#96372(会心 破招) 14150": {"id": 96372, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫腰带#96371(会心 破招) 14150": {"id": 96371, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "all_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻腰带#96370(会心 破招) 14150": {"id": 96370, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_critical_strike_base": 3470, "surplus_base": 3085}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇腰带#98685(破防 破招) 13950": {"id": 98685, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光腰带#98684(破防 破招) 13950": {"id": 98684, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼腰带#98683(破防 破招) 13950": {"id": 98683, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适腰带#98682(破防 破招) 13950": {"id": 98682, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危光带#98193(会心 无双) 13950": {"id": 98193, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨带#98192(会心 无双) 13950": {"id": 98192, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危影带#98191(会心 无双) 13950": {"id": 98191, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危音带#98190(会心 无双) 13950": {"id": 98190, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽腰带#96483(会心 破招) 13950": {"id": 96483, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺腰带#96482(会心 破招) 13950": {"id": 96482, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓腰带#96481(会心 破招) 13950": {"id": 96481, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合腰带#96480(会心 破招) 13950": {"id": 96480, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "余弦束腰#96355(破招 无双) 13950": {"id": 96355, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2000, "surplus_base": 4277, "strain_base": 4277}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮舞束腰#96354(破防 无双) 13950": {"id": 96354, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "physical_overcome_base": 3611, "strain_base": 3991}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "舒念束腰#96353(破招 无双) 13950": {"id": 96353, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2399, "surplus_base": 4277, "strain_base": 4277}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "楼满束腰#96352(破防 无双) 13950": {"id": 96352, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2859, "magical_overcome_base": 3611, "strain_base": 3991}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "叙尧腰带#96335(无双) 13950": {"id": 96335, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6748}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "书鸢腰带#96334(无双) 13950": {"id": 96334, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "strain_base": 6748}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "疏绫腰带#96333(会心 破招 无双) 13950": {"id": 96333, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus_base": 2091, "physical_critical_strike_base": 3611, "strain_base": 2091}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆檀腰带#96332(破防 破招) 13950": {"id": 96332, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus_base": 3801, "physical_overcome_base": 3991}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岳圭腰带#96331(会心) 13950": {"id": 96331, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "东珞腰带#96330(会心 破招 无双) 13950": {"id": 96330, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "surplus_base": 2091, "all_critical_strike_base": 3611, "strain_base": 2091}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "芜云腰带#96329(破防 破招) 13950": {"id": 96329, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "surplus_base": 3801, "magical_overcome_base": 3991}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "挽星腰带#96328(会心) 13950": {"id": 96328, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "all_critical_strike_base": 6748}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁带#96301(加速 破招) 13950": {"id": 96301, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦带#96300(加速 破招) 13950": {"id": 96300, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云带#96299(加速 破招) 13950": {"id": 96299, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡带#96298(加速 破招) 13950": {"id": 96298, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣腰带#96265(破防 无双) 13950": {"id": 96265, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行腰带#96264(破防 无双) 13950": {"id": 96264, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐腰带#96263(破防 无双) 13950": {"id": 96263, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英腰带#96262(破防 无双) 13950": {"id": 96262, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋腰带#98169(加速 破招) 13750": {"id": 98169, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪腰带#98168(加速 破招) 13750": {"id": 98168, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉腰带#98167(加速 破招) 13750": {"id": 98167, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "haste_base": 3372, "surplus_base": 2998}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月腰带#98166(加速 破招) 13750": {"id": 98166, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "haste_base": 3372, "surplus_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林腰带#96165(会心 无双) 13750": {"id": 96165, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归腰带#96164(会心 无双) 13750": {"id": 96164, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳腰带#96162(会心 无双) 13750": {"id": 96162, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛腰带#96159(会心 无双) 13750": {"id": 96159, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜腰带#96158(会心 无双) 13750": {"id": 96158, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音腰带#96156(破防 无双) 13750": {"id": 96156, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·肃晓腰带#96154(会心 无双) 13750": {"id": 96154, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·闻箫腰带#96149(会心 无双) 13750": {"id": 96149, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿腰带#96148(会心 无双) 13750": {"id": 96148, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪腰带#96144(破防 无双) 13750": {"id": 96144, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿腰带#96143(会心 无双) 13750": {"id": 96143, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐腰带#96142(会心 无双) 13750": {"id": 96142, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧腰带#96138(会心 无双) 13750": {"id": 96138, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行腰带#96136(会心 无双) 13750": {"id": 96136, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "翠林腰带#97773(破防 破招) 12600": {"id": 97773, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "静山腰带#97772(破防 破招) 12600": {"id": 97772, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "幽川腰带#97771(破防 破招) 12600": {"id": 97771, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月腰带#97770(破防 破招) 12600": {"id": 97770, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫腰带#94470(会心 破招) 12600": {"id": 94470, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞腰带#94469(会心 破招) 12600": {"id": 94469, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁腰带#94468(会心 破招) 12600": {"id": 94468, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "all_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满腰带#94467(会心 破招) 12600": {"id": 94467, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_critical_strike_base": 3090, "surplus_base": 2747}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒腰带#96579(破防 破招) 12450": {"id": 96579, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠腰带#96578(破防 破招) 12450": {"id": 96578, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声腰带#96577(破防 破招) 12450": {"id": 96577, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书腰带#96576(破防 破招) 12450": {"id": 96576, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月腰带#94572(会心 破招) 12450": {"id": 94572, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静腰带#94571(会心 破招) 12450": {"id": 94571, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟腰带#94570(会心 破招) 12450": {"id": 94570, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂腰带#94569(会心 破招) 12450": {"id": 94569, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泽及腰带#94444(破防 无双) 12450": {"id": 94444, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寸碧腰带#94443(破防 无双) 12450": {"id": 94443, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "magical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "沧鳞腰带#94442(会心 无双) 12450": {"id": 94442, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "聚远腰带#94441(破防 破招) 12450": {"id": 94441, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus_base": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "束缊腰带#94440(无双) 12450": {"id": 94440, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "strain_base": 5683}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿北腰带#94439(会心 无双) 12450": {"id": 94439, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2187, "all_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "百汩腰带#94438(破防 破招) 12450": {"id": 94438, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "surplus_base": 3562, "magical_overcome_base": 3223}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "栗烈腰带#94437(无双) 12450": {"id": 94437, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3098, "strain_base": 5683}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞带#94410(加速 破招) 12450": {"id": 94410, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃带#94409(加速 破招) 12450": {"id": 94409, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡带#94408(加速 破招) 12450": {"id": 94408, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华带#94407(加速 破招) 12450": {"id": 94407, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野腰带#94374(破防 无双) 12450": {"id": 94374, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿腰带#94373(破防 无双) 12450": {"id": 94373, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微腰带#94372(破防 无双) 12450": {"id": 94372, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓腰带#94371(破防 无双) 12450": {"id": 94371, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临夜腰带#90516(破防 无双) 12400": {"id": 90516, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临岳腰带#90515(破防 无双) 12400": {"id": 90515, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临初腰带#90514(破防 无双) 12400": {"id": 90514, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "magical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临罡腰带#90513(破防 无双) 12400": {"id": 90513, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨腰带·刀功#98127(会心 破招) 12300": {"id": 98127, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨腰带·刀功#98126(会心 破招) 12300": {"id": 98126, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨腰带·火候#98124(会心 破招) 12300": {"id": 98124, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨腰带·刀功 #98121(会心 破招) 12300": {"id": 98121, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨腰带·刀功 #98120(会心 破招) 12300": {"id": 98120, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨腰带·火候#98118(会心 破招) 12300": {"id": 98118, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨腰带·刀工#98116(会心 破招) 12300": {"id": 98116, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨腰带·刀功#98111(会心 破招) 12300": {"id": 98111, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨腰带·火候#98110(会心 破招) 12300": {"id": 98110, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨腰带·火候#98106(会心 破招) 12300": {"id": 98106, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨腰带·刀功#98105(会心 破招) 12300": {"id": 98105, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨腰带·火候#98104(会心 破招) 12300": {"id": 98104, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨腰带·火候#98100(会心 破招) 12300": {"id": 98100, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨腰带·火候#98098(会心 破招) 12300": {"id": 98098, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风腰带#97847(会心 无双) 12300": {"id": 97847, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云腰带#96085(加速 破招) 12300": {"id": 96085, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风腰带#96084(加速 破招) 12300": {"id": 96084, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨腰带#96083(加速 破招) 12300": {"id": 96083, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪腰带#96082(加速 破招) 12300": {"id": 96082, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹腰带#94277(会心 无双) 12300": {"id": 94277, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青腰带#94275(会心 无双) 12300": {"id": 94275, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀腰带#94272(会心 无双) 12300": {"id": 94272, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄腰带#94271(会心 无双) 12300": {"id": 94271, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒腰带#94269(破防 无双) 12300": {"id": 94269, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·弦夜腰带#94267(会心 无双) 12300": {"id": 94267, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·霜故腰带#94262(会心 无双) 12300": {"id": 94262, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼腰带#94261(会心 无双) 12300": {"id": 94261, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆腰带#94257(破防 无双) 12300": {"id": 94257, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄腰带#94256(会心 无双) 12300": {"id": 94256, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心腰带#94255(会心 无双) 12300": {"id": 94255, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声腰带#94251(会心 无双) 12300": {"id": 94251, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台腰带#94249(会心 无双) 12300": {"id": 94249, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念腰带#90648(加速 破招) 12300": {"id": 90648, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江腰带#90647(加速 破招) 12300": {"id": 90647, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦腰带#90646(加速 破招) 12300": {"id": 90646, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰腰带#90645(加速 破招) 12300": {"id": 90645, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱腰带#90612(破防 无双) 12300": {"id": 90612, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌腰带#90611(破防 无双) 12300": {"id": 90611, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳腰带#90610(破防 无双) 12300": {"id": 90610, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐腰带#90609(破防 无双) 12300": {"id": 90609, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱腰带#90576(破防 破招) 12300": {"id": 90576, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦腰带#90575(破防 破招) 12300": {"id": 90575, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭腰带#90574(破防 破招) 12300": {"id": 90574, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南腰带#90573(破防 破招) 12300": {"id": 90573, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱腰带#90540(会心 无双) 12300": {"id": 90540, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双腰带#90539(会心 无双) 12300": {"id": 90539, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜腰带#90538(会心 无双) 12300": {"id": 90538, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云腰带#90537(会心 无双) 12300": {"id": 90537, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁带#90408(加速 无双) 12300": {"id": 90408, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬带#90407(加速 无双) 12300": {"id": 90407, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜带#90406(加速 无双) 12300": {"id": 90406, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安带#90405(加速 无双) 12300": {"id": 90405, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝带#90372(破防 无双) 12300": {"id": 90372, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰带#90371(破防 无双) 12300": {"id": 90371, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔带#90370(破防 无双) 12300": {"id": 90370, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨带#90369(破防 无双) 12300": {"id": 90369, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳带#90336(破招 无双) 12300": {"id": 90336, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关带#90335(破招 无双) 12300": {"id": 90335, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐带#90334(破招 无双) 12300": {"id": 90334, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄带#90333(破招 无双) 12300": {"id": 90333, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/bottoms b/qt/assets/equipments/bottoms index 5b9d4aeccff8177dedfee7ede2b1f3ac57cf729e..c8d3672fe33bacf2949a305ba54cfd0455021865 100644 --- a/qt/assets/equipments/bottoms +++ b/qt/assets/equipments/bottoms @@ -1 +1 @@ -{"水泉裤 (会心 无双) 15800": {"id": 98499, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽裤 (会心 无双) 15800": {"id": 98498, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓裤 (会心 无双) 15800": {"id": 98497, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1103, "magical_attack_power_base": 2148, "all_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川裤 (会心 无双) 15800": {"id": 98496, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1103, "magical_attack_power_base": 2148, "magical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落裤 (会心 破招) 15600": {"id": 98601, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠裤 (会心 破招) 15600": {"id": 98600, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟裤 (会心 破招) 15600": {"id": 98599, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤裤 (会心 破招) 15600": {"id": 98598, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧下裳 (破防 无双) 15600": {"id": 98523, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远下裳 (破防 无双) 15600": {"id": 98522, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气下裳 (破防 无双) 15600": {"id": 98521, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "strain_base": 4858}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎下裳 (破防 无双) 15600": {"id": 98520, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "strain_base": 4858}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微尔裤 (会心 无双) 15600": {"id": 98477, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3262, "physical_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水回裤 (无双) 15600": {"id": 98476, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4622, "strain_base": 10172}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "满室裤 (会心 无双) 15600": {"id": 98475, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3915, "all_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "复粉裤 (无双) 15600": {"id": 98474, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 5546, "strain_base": 10172}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "见美裤 (破防 会心 无双) 15600": {"id": 98465, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "physical_overcome_base": 4251, "physical_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "示曰裤 (破防 会心 无双) 15600": {"id": 98464, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "magical_overcome_base": 4251, "all_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罗一裤 (破防 破招 无双) 15600": {"id": 98463, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus_base": 4251, "physical_overcome_base": 5162, "strain_base": 3036}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "木幽裤 (会心 破招) 15600": {"id": 98462, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus_base": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "中空裤 (破防) 15600": {"id": 98461, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4622, "physical_overcome_base": 10779}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闻太裤 (破防 破招 无双) 15600": {"id": 98460, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "surplus_base": 4251, "magical_overcome_base": 5162, "strain_base": 3036}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "冷然裤 (会心 破招) 15600": {"id": 98459, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "surplus_base": 6377, "all_critical_strike_base": 6073}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "十珠裤 (破防) 15600": {"id": 98458, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5546, "magical_overcome_base": 10779}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困裤 (破防 破招) 15600": {"id": 98427, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落裤 (破防 破招) 15600": {"id": 98426, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安裤 (破防 破招) 15600": {"id": 98425, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义裤 (破防 破招) 15600": {"id": 98424, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀裤 (加速 无双) 15600": {"id": 98391, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪裤 (加速 无双) 15600": {"id": 98390, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙裤 (加速 无双) 15600": {"id": 98389, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城裤 (加速 无双) 15600": {"id": 98388, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 15200": {"id": 98573, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "physical_overcome_base": 4142, "physical_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破招 无双) 15200": {"id": 98572, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "surplus_base": 6065, "strain_base": 6065}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防) 15200": {"id": 98571, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4503, "physical_overcome_base": 10503}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 会心 无双) 15200": {"id": 98570, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4609, "magical_overcome_base": 4142, "all_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破招 无双) 15200": {"id": 98569, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4609, "surplus_base": 6065, "strain_base": 6065}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防) 15200": {"id": 98568, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5404, "magical_overcome_base": 10503}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 14350": {"id": 98549, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4001, "surplus_base": 3352, "physical_overcome_base": 3631, "physical_critical_strike_base": 3631}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 无双) 14350": {"id": 98548, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3626, "physical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心) 14350": {"id": 98547, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4251, "physical_critical_strike_base": 9916}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 会心 破招) 14350": {"id": 98546, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4802, "surplus_base": 3352, "magical_overcome_base": 3631, "all_critical_strike_base": 3631}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 无双) 14350": {"id": 98545, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4351, "magical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (会心) 14350": {"id": 98544, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5102, "all_critical_strike_base": 9916}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风停裤 (会心 无双) 14150": {"id": 96385, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈裤 (会心 无双) 14150": {"id": 96384, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫裤 (会心 无双) 14150": {"id": 96383, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "all_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻裤 (会心 无双) 14150": {"id": 96382, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "magical_attack_power_base": 1923, "magical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇裤 (破防 破招) 13950": {"id": 98697, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光裤 (破防 破招) 13950": {"id": 98696, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼裤 (破防 破招) 13950": {"id": 98695, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适裤 (破防 破招) 13950": {"id": 98694, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光裤 (会心 无双) 13950": {"id": 98205, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨裤 (会心 无双) 13950": {"id": 98204, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影裤 (会心 无双) 13950": {"id": 98203, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音裤 (会心 无双) 13950": {"id": 98202, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽裤 (会心 破招) 13950": {"id": 96495, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺裤 (会心 破招) 13950": {"id": 96494, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓裤 (会心 破招) 13950": {"id": 96493, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合裤 (会心 破招) 13950": {"id": 96492, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月下裳 (破防 无双) 13950": {"id": 96409, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟下裳 (破防 无双) 13950": {"id": 96408, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意下裳 (破防 无双) 13950": {"id": 96407, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠下裳 (破防 无双) 13950": {"id": 96406, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "燕轻裤 (会心 无双) 13950": {"id": 96363, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2917, "physical_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂声裤 (无双) 13950": {"id": 96362, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4133, "strain_base": 9096}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语瞳裤 (会心 无双) 13950": {"id": 96361, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3501, "all_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝户裤 (无双) 13950": {"id": 96360, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4959, "strain_base": 9096}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风袂裤 (破防 会心 无双) 13950": {"id": 96351, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "physical_overcome_base": 3801, "physical_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "韶于裤 (破防 会心 无双) 13950": {"id": 96350, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "magical_overcome_base": 3801, "all_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "含晨裤 (破防 破招 无双) 13950": {"id": 96349, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus_base": 3801, "physical_overcome_base": 4616, "strain_base": 2715}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "向行裤 (会心 破招) 13950": {"id": 96348, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus_base": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "满歌裤 (破防) 13950": {"id": 96347, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4133, "physical_overcome_base": 9639}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "南依裤 (破防 破招 无双) 13950": {"id": 96346, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus_base": 3801, "magical_overcome_base": 4616, "strain_base": 2715}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "漫泠裤 (会心 破招) 13950": {"id": 96345, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus_base": 5702, "all_critical_strike_base": 5431}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雅采裤 (破防) 13950": {"id": 96344, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4959, "magical_overcome_base": 9639}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁裤 (破防 破招) 13950": {"id": 96313, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦裤 (破防 破招) 13950": {"id": 96312, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云裤 (破防 破招) 13950": {"id": 96311, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡裤 (破防 破招) 13950": {"id": 96310, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣裤 (加速 无双) 13950": {"id": 96277, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行裤 (加速 无双) 13950": {"id": 96276, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐裤 (加速 无双) 13950": {"id": 96275, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英裤 (加速 无双) 13950": {"id": 96274, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 破招 无双) 13550": {"id": 96467, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "surplus_base": 3692, "physical_overcome_base": 4484, "strain_base": 2637}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心 无双) 13550": {"id": 96466, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "physical_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (无双) 13550": {"id": 96465, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4014, "strain_base": 9363}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 破招 无双) 13550": {"id": 96464, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "surplus_base": 3692, "magical_overcome_base": 4484, "strain_base": 2637}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (会心 无双) 13550": {"id": 96463, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "all_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (无双) 13550": {"id": 96462, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4817, "strain_base": 9363}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 12800": {"id": 96439, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "physical_overcome_base": 3488, "physical_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破招 无双) 12800": {"id": 96438, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "surplus_base": 5107, "strain_base": 5107}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防) 12800": {"id": 96437, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3792, "physical_overcome_base": 8845}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 会心 无双) 12800": {"id": 96436, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "magical_overcome_base": 3488, "all_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破招 无双) 12800": {"id": 96435, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "surplus_base": 5107, "strain_base": 5107}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防) 12800": {"id": 96434, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4551, "magical_overcome_base": 8845}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫裤 (会心 无双) 12600": {"id": 94482, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞裤 (会心 无双) 12600": {"id": 94481, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁裤 (会心 无双) 12600": {"id": 94480, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "all_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满裤 (会心 无双) 12600": {"id": 94479, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "magical_attack_power_base": 1713, "magical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒裤 (破防 破招) 12450": {"id": 96591, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠裤 (破防 破招) 12450": {"id": 96590, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声裤 (破防 破招) 12450": {"id": 96589, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书裤 (破防 破招) 12450": {"id": 96588, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月裤 (会心 破招) 12450": {"id": 94584, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静裤 (会心 破招) 12450": {"id": 94583, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟裤 (会心 破招) 12450": {"id": 94582, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂裤 (会心 破招) 12450": {"id": 94581, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配下裳 (破防 无双) 12450": {"id": 94506, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花下裳 (破防 无双) 12450": {"id": 94505, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世下裳 (破防 无双) 12450": {"id": 94504, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓下裳 (破防 无双) 12450": {"id": 94503, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不暇裤 (破防 无双) 12450": {"id": 94460, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "physical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绣思裤 (破防 无双) 12450": {"id": 94459, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "magical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泛景裤 (破招) 12450": {"id": 94458, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3688, "surplus_base": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "锦堂裤 (破防 破招) 12450": {"id": 94457, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "surplus_base": 5089, "physical_overcome_base": 4604}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "思柔裤 (会心 无双) 12450": {"id": 94456, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2604, "physical_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "贻池裤 (破招) 12450": {"id": 94455, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4426, "surplus_base": 8118}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "晤歌裤 (破防 破招) 12450": {"id": 94454, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "surplus_base": 5089, "magical_overcome_base": 4604}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "执徐裤 (会心 无双) 12450": {"id": 94453, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3124, "all_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞裤 (破防 破招) 12450": {"id": 94422, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃裤 (破防 破招) 12450": {"id": 94421, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡裤 (破防 破招) 12450": {"id": 94420, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华裤 (破防 破招) 12450": {"id": 94419, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野裤 (加速 无双) 12450": {"id": 94386, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿裤 (加速 无双) 12450": {"id": 94385, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微裤 (加速 无双) 12450": {"id": 94384, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓裤 (加速 无双) 12450": {"id": 94383, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念裤 (破防 破招) 12300": {"id": 90660, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江裤 (破防 破招) 12300": {"id": 90659, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦裤 (破防 破招) 12300": {"id": 90658, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰裤 (破防 破招) 12300": {"id": 90657, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱裤 (会心 破招) 12300": {"id": 90624, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌裤 (会心 破招) 12300": {"id": 90623, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳裤 (会心 破招) 12300": {"id": 90622, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐裤 (会心 破招) 12300": {"id": 90621, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱裤 (加速 破招) 12300": {"id": 90588, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦裤 (加速 破招) 12300": {"id": 90587, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭裤 (加速 破招) 12300": {"id": 90586, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南裤 (加速 破招) 12300": {"id": 90585, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱裤 (破防 无双) 12300": {"id": 90552, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双裤 (破防 无双) 12300": {"id": 90551, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜裤 (破防 无双) 12300": {"id": 90550, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云裤 (破防 无双) 12300": {"id": 90549, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁裳 (会心 无双) 12300": {"id": 90420, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬裳 (会心 无双) 12300": {"id": 90419, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜裳 (会心 无双) 12300": {"id": 90418, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安裳 (会心 无双) 12300": {"id": 90417, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝裤 (破防 破招) 12300": {"id": 90384, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰裤 (破防 破招) 12300": {"id": 90383, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔裤 (破防 破招) 12300": {"id": 90382, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨裤 (破防 破招) 12300": {"id": 90381, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳裤 (加速 破招) 12300": {"id": 90348, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关裤 (加速 破招) 12300": {"id": 90347, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐裤 (加速 破招) 12300": {"id": 90346, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄裤 (加速 破招) 12300": {"id": 90345, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 12100": {"id": 94556, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3374, "surplus_base": 2826, "physical_overcome_base": 3062, "physical_critical_strike_base": 3062}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 无双) 12100": {"id": 94555, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3058, "physical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心) 12100": {"id": 94554, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3585, "physical_critical_strike_base": 8361}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 会心 破招) 12100": {"id": 94553, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4049, "surplus_base": 2826, "magical_overcome_base": 3062, "all_critical_strike_base": 3062}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (破防 无双) 12100": {"id": 94552, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3669, "magical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封裤 (会心) 12100": {"id": 94551, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4302, "all_critical_strike_base": 8361}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉裤#98499(会心 无双) 15800": {"id": 98499, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽裤#98498(会心 无双) 15800": {"id": 98498, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓裤#98497(会心 无双) 15800": {"id": 98497, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1103, "magical_attack_power_base": 2148, "all_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川裤#98496(会心 无双) 15800": {"id": 98496, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1103, "magical_attack_power_base": 2148, "magical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落裤#98601(会心 破招) 15600": {"id": 98601, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠裤#98600(会心 破招) 15600": {"id": 98600, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟裤#98599(会心 破招) 15600": {"id": 98599, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤裤#98598(会心 破招) 15600": {"id": 98598, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧下裳#98523(破防 无双) 15600": {"id": 98523, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远下裳#98522(破防 无双) 15600": {"id": 98522, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气下裳#98521(破防 无双) 15600": {"id": 98521, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "strain_base": 4858}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎下裳#98520(破防 无双) 15600": {"id": 98520, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "strain_base": 4858}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微尔裤#98477(会心 无双) 15600": {"id": 98477, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3262, "physical_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水回裤#98476(无双) 15600": {"id": 98476, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4622, "strain_base": 10172}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "满室裤#98475(会心 无双) 15600": {"id": 98475, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3915, "all_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "复粉裤#98474(无双) 15600": {"id": 98474, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 5546, "strain_base": 10172}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "见美裤#98465(破防 会心 无双) 15600": {"id": 98465, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "physical_overcome_base": 4251, "physical_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "示曰裤#98464(破防 会心 无双) 15600": {"id": 98464, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "magical_overcome_base": 4251, "all_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罗一裤#98463(破防 破招 无双) 15600": {"id": 98463, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus_base": 4251, "physical_overcome_base": 5162, "strain_base": 3036}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "木幽裤#98462(会心 破招) 15600": {"id": 98462, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus_base": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "中空裤#98461(破防) 15600": {"id": 98461, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4622, "physical_overcome_base": 10779}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闻太裤#98460(破防 破招 无双) 15600": {"id": 98460, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "surplus_base": 4251, "magical_overcome_base": 5162, "strain_base": 3036}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "冷然裤#98459(会心 破招) 15600": {"id": 98459, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4730, "surplus_base": 6377, "all_critical_strike_base": 6073}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "十珠裤#98458(破防) 15600": {"id": 98458, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5546, "magical_overcome_base": 10779}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困裤#98427(破防 破招) 15600": {"id": 98427, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落裤#98426(破防 破招) 15600": {"id": 98426, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安裤#98425(破防 破招) 15600": {"id": 98425, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义裤#98424(破防 破招) 15600": {"id": 98424, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀裤#98391(加速 无双) 15600": {"id": 98391, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪裤#98390(加速 无双) 15600": {"id": 98390, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙裤#98389(加速 无双) 15600": {"id": 98389, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城裤#98388(加速 无双) 15600": {"id": 98388, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98573(破防 会心 无双) 15200": {"id": 98573, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "physical_overcome_base": 4142, "physical_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98572(破招 无双) 15200": {"id": 98572, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "surplus_base": 6065, "strain_base": 6065}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98571(破防) 15200": {"id": 98571, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4503, "physical_overcome_base": 10503}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98570(破防 会心 无双) 15200": {"id": 98570, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4609, "magical_overcome_base": 4142, "all_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98569(破招 无双) 15200": {"id": 98569, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4609, "surplus_base": 6065, "strain_base": 6065}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98568(破防) 15200": {"id": 98568, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5404, "magical_overcome_base": 10503}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98549(破防 会心 破招) 14350": {"id": 98549, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4001, "surplus_base": 3352, "physical_overcome_base": 3631, "physical_critical_strike_base": 3631}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98548(破防 无双) 14350": {"id": 98548, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3626, "physical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98547(会心) 14350": {"id": 98547, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4251, "physical_critical_strike_base": 9916}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98546(破防 会心 破招) 14350": {"id": 98546, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4802, "surplus_base": 3352, "magical_overcome_base": 3631, "all_critical_strike_base": 3631}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98545(破防 无双) 14350": {"id": 98545, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4351, "magical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#98544(会心) 14350": {"id": 98544, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 5102, "all_critical_strike_base": 9916}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风停裤#96385(会心 无双) 14150": {"id": 96385, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈裤#96384(会心 无双) 14150": {"id": 96384, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫裤#96383(会心 无双) 14150": {"id": 96383, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "all_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻裤#96382(会心 无双) 14150": {"id": 96382, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "magical_attack_power_base": 1923, "magical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇裤#98697(破防 破招) 13950": {"id": 98697, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光裤#98696(破防 破招) 13950": {"id": 98696, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼裤#98695(破防 破招) 13950": {"id": 98695, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适裤#98694(破防 破招) 13950": {"id": 98694, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光裤#98205(会心 无双) 13950": {"id": 98205, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨裤#98204(会心 无双) 13950": {"id": 98204, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影裤#98203(会心 无双) 13950": {"id": 98203, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音裤#98202(会心 无双) 13950": {"id": 98202, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽裤#96495(会心 破招) 13950": {"id": 96495, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺裤#96494(会心 破招) 13950": {"id": 96494, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓裤#96493(会心 破招) 13950": {"id": 96493, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合裤#96492(会心 破招) 13950": {"id": 96492, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月下裳#96409(破防 无双) 13950": {"id": 96409, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟下裳#96408(破防 无双) 13950": {"id": 96408, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意下裳#96407(破防 无双) 13950": {"id": 96407, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠下裳#96406(破防 无双) 13950": {"id": 96406, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "燕轻裤#96363(会心 无双) 13950": {"id": 96363, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2917, "physical_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂声裤#96362(无双) 13950": {"id": 96362, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4133, "strain_base": 9096}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语瞳裤#96361(会心 无双) 13950": {"id": 96361, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3501, "all_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝户裤#96360(无双) 13950": {"id": 96360, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4959, "strain_base": 9096}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风袂裤#96351(破防 会心 无双) 13950": {"id": 96351, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "physical_overcome_base": 3801, "physical_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "韶于裤#96350(破防 会心 无双) 13950": {"id": 96350, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "magical_overcome_base": 3801, "all_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "含晨裤#96349(破防 破招 无双) 13950": {"id": 96349, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus_base": 3801, "physical_overcome_base": 4616, "strain_base": 2715}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "向行裤#96348(会心 破招) 13950": {"id": 96348, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus_base": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "满歌裤#96347(破防) 13950": {"id": 96347, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4133, "physical_overcome_base": 9639}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "南依裤#96346(破防 破招 无双) 13950": {"id": 96346, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus_base": 3801, "magical_overcome_base": 4616, "strain_base": 2715}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "漫泠裤#96345(会心 破招) 13950": {"id": 96345, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus_base": 5702, "all_critical_strike_base": 5431}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雅采裤#96344(破防) 13950": {"id": 96344, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4959, "magical_overcome_base": 9639}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁裤#96313(破防 破招) 13950": {"id": 96313, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦裤#96312(破防 破招) 13950": {"id": 96312, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云裤#96311(破防 破招) 13950": {"id": 96311, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡裤#96310(破防 破招) 13950": {"id": 96310, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣裤#96277(加速 无双) 13950": {"id": 96277, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行裤#96276(加速 无双) 13950": {"id": 96276, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐裤#96275(加速 无双) 13950": {"id": 96275, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英裤#96274(加速 无双) 13950": {"id": 96274, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96467(破防 破招 无双) 13550": {"id": 96467, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "surplus_base": 3692, "physical_overcome_base": 4484, "strain_base": 2637}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96466(会心 无双) 13550": {"id": 96466, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "physical_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96465(无双) 13550": {"id": 96465, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4014, "strain_base": 9363}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96464(破防 破招 无双) 13550": {"id": 96464, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "surplus_base": 3692, "magical_overcome_base": 4484, "strain_base": 2637}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96463(会心 无双) 13550": {"id": 96463, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "all_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96462(无双) 13550": {"id": 96462, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4817, "strain_base": 9363}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96439(破防 会心 无双) 12800": {"id": 96439, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "physical_overcome_base": 3488, "physical_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96438(破招 无双) 12800": {"id": 96438, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "surplus_base": 5107, "strain_base": 5107}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96437(破防) 12800": {"id": 96437, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3792, "physical_overcome_base": 8845}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96436(破防 会心 无双) 12800": {"id": 96436, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "magical_overcome_base": 3488, "all_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96435(破招 无双) 12800": {"id": 96435, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "surplus_base": 5107, "strain_base": 5107}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#96434(破防) 12800": {"id": 96434, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4551, "magical_overcome_base": 8845}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫裤#94482(会心 无双) 12600": {"id": 94482, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞裤#94481(会心 无双) 12600": {"id": 94481, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁裤#94480(会心 无双) 12600": {"id": 94480, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "all_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满裤#94479(会心 无双) 12600": {"id": 94479, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "magical_attack_power_base": 1713, "magical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒裤#96591(破防 破招) 12450": {"id": 96591, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠裤#96590(破防 破招) 12450": {"id": 96590, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声裤#96589(破防 破招) 12450": {"id": 96589, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书裤#96588(破防 破招) 12450": {"id": 96588, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月裤#94584(会心 破招) 12450": {"id": 94584, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静裤#94583(会心 破招) 12450": {"id": 94583, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟裤#94582(会心 破招) 12450": {"id": 94582, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂裤#94581(会心 破招) 12450": {"id": 94581, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配下裳#94506(破防 无双) 12450": {"id": 94506, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花下裳#94505(破防 无双) 12450": {"id": 94505, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世下裳#94504(破防 无双) 12450": {"id": 94504, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓下裳#94503(破防 无双) 12450": {"id": 94503, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不暇裤#94460(破防 无双) 12450": {"id": 94460, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "physical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绣思裤#94459(破防 无双) 12450": {"id": 94459, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "magical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泛景裤#94458(破招) 12450": {"id": 94458, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3688, "surplus_base": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "锦堂裤#94457(破防 破招) 12450": {"id": 94457, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "surplus_base": 5089, "physical_overcome_base": 4604}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "思柔裤#94456(会心 无双) 12450": {"id": 94456, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2604, "physical_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "贻池裤#94455(破招) 12450": {"id": 94455, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4426, "surplus_base": 8118}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "晤歌裤#94454(破防 破招) 12450": {"id": 94454, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "surplus_base": 5089, "magical_overcome_base": 4604}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "执徐裤#94453(会心 无双) 12450": {"id": 94453, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3124, "all_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞裤#94422(破防 破招) 12450": {"id": 94422, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃裤#94421(破防 破招) 12450": {"id": 94421, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡裤#94420(破防 破招) 12450": {"id": 94420, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华裤#94419(破防 破招) 12450": {"id": 94419, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野裤#94386(加速 无双) 12450": {"id": 94386, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿裤#94385(加速 无双) 12450": {"id": 94385, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微裤#94384(加速 无双) 12450": {"id": 94384, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓裤#94383(加速 无双) 12450": {"id": 94383, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念裤#90660(破防 破招) 12300": {"id": 90660, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江裤#90659(破防 破招) 12300": {"id": 90659, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦裤#90658(破防 破招) 12300": {"id": 90658, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰裤#90657(破防 破招) 12300": {"id": 90657, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱裤#90624(会心 破招) 12300": {"id": 90624, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌裤#90623(会心 破招) 12300": {"id": 90623, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳裤#90622(会心 破招) 12300": {"id": 90622, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐裤#90621(会心 破招) 12300": {"id": 90621, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱裤#90588(加速 破招) 12300": {"id": 90588, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦裤#90587(加速 破招) 12300": {"id": 90587, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭裤#90586(加速 破招) 12300": {"id": 90586, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南裤#90585(加速 破招) 12300": {"id": 90585, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱裤#90552(破防 无双) 12300": {"id": 90552, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双裤#90551(破防 无双) 12300": {"id": 90551, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜裤#90550(破防 无双) 12300": {"id": 90550, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云裤#90549(破防 无双) 12300": {"id": 90549, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁裳#90420(会心 无双) 12300": {"id": 90420, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬裳#90419(会心 无双) 12300": {"id": 90419, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜裳#90418(会心 无双) 12300": {"id": 90418, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安裳#90417(会心 无双) 12300": {"id": 90417, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝裤#90384(破防 破招) 12300": {"id": 90384, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰裤#90383(破防 破招) 12300": {"id": 90383, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔裤#90382(破防 破招) 12300": {"id": 90382, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨裤#90381(破防 破招) 12300": {"id": 90381, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳裤#90348(加速 破招) 12300": {"id": 90348, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关裤#90347(加速 破招) 12300": {"id": 90347, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐裤#90346(加速 破招) 12300": {"id": 90346, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄裤#90345(加速 破招) 12300": {"id": 90345, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94556(破防 会心 破招) 12100": {"id": 94556, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3374, "surplus_base": 2826, "physical_overcome_base": 3062, "physical_critical_strike_base": 3062}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94555(破防 无双) 12100": {"id": 94555, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3058, "physical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94554(会心) 12100": {"id": 94554, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3585, "physical_critical_strike_base": 8361}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94553(破防 会心 破招) 12100": {"id": 94553, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4049, "surplus_base": 2826, "magical_overcome_base": 3062, "all_critical_strike_base": 3062}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94552(破防 无双) 12100": {"id": 94552, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3669, "magical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封裤#94551(会心) 12100": {"id": 94551, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4302, "all_critical_strike_base": 8361}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/hat b/qt/assets/equipments/hat index 45776a9ad43d6ea13cacbe2736e0de8d0927a9d4..35c76dd9306848081e1b4d1baa390b1b9d5f35d8 100644 --- a/qt/assets/equipments/hat +++ b/qt/assets/equipments/hat @@ -1 +1 @@ -{"水泉冠 (会心 破招) 15800": {"id": 98505, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽冠 (会心 破招) 15800": {"id": 98504, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓冠 (会心 破招) 15800": {"id": 98503, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 993, "magical_attack_power_base": 1933, "all_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川冠 (会心 破招) 15800": {"id": 98502, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 993, "magical_attack_power_base": 1933, "magical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落冠 (会心 破招) 15600": {"id": 98607, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠冠 (会心 破招) 15600": {"id": 98606, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟冠 (会心 破招) 15600": {"id": 98605, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤冠 (会心 破招) 15600": {"id": 98604, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧冠 (会心 破招) 15600": {"id": 98529, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远冠 (会心 破招) 15600": {"id": 98528, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气冠 (会心 破招) 15600": {"id": 98527, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎冠 (会心 破招) 15600": {"id": 98526, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困冠 (加速 破招) 15600": {"id": 98433, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus_base": 4373}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落冠 (加速 破招) 15600": {"id": 98432, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus_base": 4373}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安冠 (加速 破招) 15600": {"id": 98431, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "haste_base": 4919, "surplus_base": 4373}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义冠 (加速 破招) 15600": {"id": 98430, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "haste_base": 4919, "surplus_base": 4373}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀冠 (会心 无双) 15600": {"id": 98397, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪冠 (会心 无双) 15600": {"id": 98396, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙冠 (会心 无双) 15600": {"id": 98395, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城冠 (会心 无双) 15600": {"id": 98394, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸冠 (破防 破招) 15400": {"id": 98339, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜冠 (破防 破招) 15400": {"id": 98338, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林冠 (破防 破招) 15400": {"id": 98336, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼冠 (破防 破招) 15400": {"id": 98333, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁冠 (破防 破招) 15400": {"id": 98332, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲冠 (破防 破招) 15400": {"id": 98330, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·雨痕冠 (破防 破招) 15400": {"id": 98323, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江冠 (破防 破招) 15400": {"id": 98322, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦冠 (破防 破招) 15400": {"id": 98318, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛冠 (破防 破招) 15400": {"id": 98317, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬冠 (破防 破招) 15400": {"id": 98316, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧冠 (破防 破招) 15400": {"id": 98312, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法冠 (破防 破招) 15400": {"id": 98310, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封头饰 (破防 会心 破招) 15200": {"id": 98561, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus_base": 3195, "physical_overcome_base": 3462, "physical_critical_strike_base": 3462}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 无双) 15200": {"id": 98560, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3457, "physical_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (无双) 15200": {"id": 98559, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4053, "strain_base": 9453}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (破防 会心 破招) 15200": {"id": 98558, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4577, "surplus_base": 3195, "magical_overcome_base": 3462, "all_critical_strike_base": 3462}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 无双) 15200": {"id": 98557, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4148, "all_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (无双) 15200": {"id": 98556, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4863, "strain_base": 9453}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 14350": {"id": 98537, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "surplus_base": 2765, "physical_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 会效) 14350": {"id": 98536, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "physical_critical_strike_base": 6285, "physical_critical_power_base": 3771}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防) 14350": {"id": 98535, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3826, "physical_overcome_base": 8924}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 破招 无双) 14350": {"id": 98534, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3916, "surplus_base": 2765, "all_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 会效) 14350": {"id": 98533, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3916, "all_critical_strike_base": 6285, "all_critical_power_base": 3771}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (破防) 14350": {"id": 98532, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4591, "magical_overcome_base": 8924}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风停冠 (会心 破招) 14150": {"id": 96391, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈冠 (会心 破招) 14150": {"id": 96390, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫冠 (会心 破招) 14150": {"id": 96389, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 889, "magical_attack_power_base": 1731, "all_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻冠 (会心 破招) 14150": {"id": 96388, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 889, "magical_attack_power_base": 1731, "magical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇冠 (会心 无双) 13950": {"id": 98703, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光冠 (会心 无双) 13950": {"id": 98702, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼冠 (会心 无双) 13950": {"id": 98701, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适冠 (会心 无双) 13950": {"id": 98700, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光帽 (破防 破招) 13950": {"id": 98211, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨帽 (破防 破招) 13950": {"id": 98210, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影帽 (破防 破招) 13950": {"id": 98209, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "magical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音帽 (破防 破招) 13950": {"id": 98208, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽冠 (会心 破招) 13950": {"id": 96501, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺冠 (会心 破招) 13950": {"id": 96500, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓冠 (会心 破招) 13950": {"id": 96499, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合冠 (会心 破招) 13950": {"id": 96498, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月冠 (会心 破招) 13950": {"id": 96415, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟冠 (会心 破招) 13950": {"id": 96414, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意冠 (会心 破招) 13950": {"id": 96413, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠冠 (会心 破招) 13950": {"id": 96412, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁冠 (加速 破招) 13950": {"id": 96319, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus_base": 3910}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦冠 (加速 破招) 13950": {"id": 96318, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus_base": 3910}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云冠 (加速 破招) 13950": {"id": 96317, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "haste_base": 4399, "surplus_base": 3910}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡冠 (加速 破招) 13950": {"id": 96316, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "haste_base": 4399, "surplus_base": 3910}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣冠 (会心 无双) 13950": {"id": 96283, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行冠 (会心 无双) 13950": {"id": 96282, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐冠 (会心 无双) 13950": {"id": 96281, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英冠 (会心 无双) 13950": {"id": 96280, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋帽 (会心 无双) 13750": {"id": 98181, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪帽 (会心 无双) 13750": {"id": 98180, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉帽 (会心 无双) 13750": {"id": 98179, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "all_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月帽 (会心 无双) 13750": {"id": 98178, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林冠 (破防 破招) 13750": {"id": 96225, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归冠 (破防 破招) 13750": {"id": 96224, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳冠 (破防 破招) 13750": {"id": 96222, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛冠 (破防 破招) 13750": {"id": 96219, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜冠 (破防 破招) 13750": {"id": 96218, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音冠 (破防 破招) 13750": {"id": 96216, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·闻箫冠 (破防 破招) 13750": {"id": 96209, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿冠 (破防 破招) 13750": {"id": 96208, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪冠 (破防 破招) 13750": {"id": 96204, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿冠 (破防 破招) 13750": {"id": 96203, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐冠 (破防 破招) 13750": {"id": 96202, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧冠 (破防 破招) 13750": {"id": 96198, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行冠 (破防 破招) 13750": {"id": 96196, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封头饰 (破防 会心 无双) 13550": {"id": 96455, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "physical_overcome_base": 3323, "physical_critical_strike_base": 3798, "strain_base": 2611}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招) 13550": {"id": 96454, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "surplus_base": 4985, "physical_critical_strike_base": 4747}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心) 13550": {"id": 96453, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3613, "physical_critical_strike_base": 8427}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (破防 会心 无双) 13550": {"id": 96452, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3698, "magical_overcome_base": 3323, "all_critical_strike_base": 3798, "strain_base": 2611}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 破招) 13550": {"id": 96451, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3698, "surplus_base": 4985, "all_critical_strike_base": 4747}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心) 13550": {"id": 96450, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4335, "all_critical_strike_base": 8427}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防 会心 破招) 12800": {"id": 96423, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3212, "surplus_base": 2691, "physical_overcome_base": 2915, "physical_critical_strike_base": 2915}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 无双) 12800": {"id": 96422, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2911, "physical_critical_strike_base": 4485, "strain_base": 4709}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (无双) 12800": {"id": 96421, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3413, "strain_base": 7960}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (破防 会心 破招) 12800": {"id": 96420, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3855, "surplus_base": 2691, "magical_overcome_base": 2915, "all_critical_strike_base": 2915}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 无双) 12800": {"id": 96419, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3493, "all_critical_strike_base": 4485, "strain_base": 4709}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (无双) 12800": {"id": 96418, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4096, "strain_base": 7960}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫冠 (会心 破招) 12600": {"id": 94488, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 792, "physical_attack_power_base": 1285, "physical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞冠 (会心 破招) 12600": {"id": 94487, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 792, "physical_attack_power_base": 1285, "physical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁冠 (会心 破招) 12600": {"id": 94486, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 792, "magical_attack_power_base": 1541, "all_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满冠 (会心 破招) 12600": {"id": 94485, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 792, "magical_attack_power_base": 1541, "magical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒冠 (会心 无双) 12450": {"id": 96597, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠冠 (会心 无双) 12450": {"id": 96596, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声冠 (会心 无双) 12450": {"id": 96595, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书冠 (会心 无双) 12450": {"id": 96594, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月冠 (会心 破招) 12450": {"id": 94590, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静冠 (会心 破招) 12450": {"id": 94589, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟冠 (会心 破招) 12450": {"id": 94588, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂冠 (会心 破招) 12450": {"id": 94587, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配冠 (会心 破招) 12450": {"id": 94512, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花冠 (会心 破招) 12450": {"id": 94511, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世冠 (会心 破招) 12450": {"id": 94510, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓冠 (会心 破招) 12450": {"id": 94509, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞冠 (加速 破招) 12450": {"id": 94428, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus_base": 3490}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃冠 (加速 破招) 12450": {"id": 94427, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus_base": 3490}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡冠 (加速 破招) 12450": {"id": 94426, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "haste_base": 3926, "surplus_base": 3490}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华冠 (加速 破招) 12450": {"id": 94425, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "haste_base": 3926, "surplus_base": 3490}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野冠 (会心 无双) 12450": {"id": 94392, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿冠 (会心 无双) 12450": {"id": 94391, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微冠 (会心 无双) 12450": {"id": 94390, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓冠 (会心 无双) 12450": {"id": 94389, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临书帽 (破防 无双) 12400": {"id": 90528, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临雾帽 (破防 无双) 12400": {"id": 90527, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临起帽 (破防 无双) 12400": {"id": 90526, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1517, "magical_overcome_base": 3910, "strain_base": 3476}, "embed": {"spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临可帽 (破防 无双) 12400": {"id": 90525, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1517, "magical_overcome_base": 3910, "strain_base": 3476}, "embed": {"spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风冠 (破防 破招) 12300": {"id": 97849, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云帽 (会心 无双) 12300": {"id": 96097, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风帽 (会心 无双) 12300": {"id": 96096, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨帽 (会心 无双) 12300": {"id": 96095, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪帽 (会心 无双) 12300": {"id": 96094, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹冠 (破防 破招) 12300": {"id": 94335, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青冠 (破防 破招) 12300": {"id": 94333, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀冠 (破防 破招) 12300": {"id": 94330, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄冠 (破防 破招) 12300": {"id": 94329, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒冠 (破防 破招) 12300": {"id": 94327, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·霜故冠 (破防 破招) 12300": {"id": 94320, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼冠 (破防 破招) 12300": {"id": 94319, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆冠 (破防 破招) 12300": {"id": 94315, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄冠 (破防 破招) 12300": {"id": 94314, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心冠 (破防 破招) 12300": {"id": 94313, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声冠 (破防 破招) 12300": {"id": 94309, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台冠 (破防 破招) 12300": {"id": 94307, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念冠 (破防 无双) 12300": {"id": 90666, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江冠 (破防 无双) 12300": {"id": 90665, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦冠 (破防 无双) 12300": {"id": 90664, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "strain_base": 3448}, "embed": {"spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰冠 (破防 无双) 12300": {"id": 90663, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "strain_base": 3448}, "embed": {"spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱冠 (会心 破招) 12300": {"id": 90630, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌冠 (会心 破招) 12300": {"id": 90629, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳冠 (会心 破招) 12300": {"id": 90628, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐冠 (会心 破招) 12300": {"id": 90627, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱冠 (加速 破招) 12300": {"id": 90594, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus_base": 3448}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦冠 (加速 破招) 12300": {"id": 90593, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus_base": 3448}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭冠 (加速 破招) 12300": {"id": 90592, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "surplus_base": 3448}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南冠 (加速 破招) 12300": {"id": 90591, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "surplus_base": 3448}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱冠 (会心 无双) 12300": {"id": 90558, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双冠 (会心 无双) 12300": {"id": 90557, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜冠 (会心 无双) 12300": {"id": 90556, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云冠 (会心 无双) 12300": {"id": 90555, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁冠 (破防 破招) 12300": {"id": 90426, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬冠 (破防 破招) 12300": {"id": 90425, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜冠 (破防 破招) 12300": {"id": 90424, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安冠 (破防 破招) 12300": {"id": 90423, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝帽 (加速 无双) 12300": {"id": 90390, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰帽 (加速 无双) 12300": {"id": 90389, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔帽 (加速 无双) 12300": {"id": 90388, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨帽 (加速 无双) 12300": {"id": 90387, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳帽 (会心 破招) 12300": {"id": 90354, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关帽 (会心 破招) 12300": {"id": 90353, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐帽 (会心 破招) 12300": {"id": 90352, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄帽 (会心 破招) 12300": {"id": 90351, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 12100": {"id": 94544, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "surplus_base": 2332, "physical_critical_strike_base": 4027, "strain_base": 2332}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 会效) 12100": {"id": 94543, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "physical_critical_strike_base": 5299, "physical_critical_power_base": 3180}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防) 12100": {"id": 94542, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3226, "physical_overcome_base": 7525}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 破招 无双) 12100": {"id": 94541, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3302, "surplus_base": 2332, "all_critical_strike_base": 4027, "strain_base": 2332}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (会心 会效) 12100": {"id": 94540, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3302, "all_critical_strike_base": 5299, "all_critical_power_base": 3180}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封头饰 (破防) 12100": {"id": 94539, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3872, "magical_overcome_base": 7525}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉冠#98505(会心 破招) 15800": {"id": 98505, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽冠#98504(会心 破招) 15800": {"id": 98504, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓冠#98503(会心 破招) 15800": {"id": 98503, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 993, "magical_attack_power_base": 1933, "all_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川冠#98502(会心 破招) 15800": {"id": 98502, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 993, "magical_attack_power_base": 1933, "magical_critical_strike_base": 4982, "surplus_base": 4429}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落冠#98607(会心 破招) 15600": {"id": 98607, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠冠#98606(会心 破招) 15600": {"id": 98606, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟冠#98605(会心 破招) 15600": {"id": 98605, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤冠#98604(会心 破招) 15600": {"id": 98604, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧冠#98529(会心 破招) 15600": {"id": 98529, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远冠#98528(会心 破招) 15600": {"id": 98528, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气冠#98527(会心 破招) 15600": {"id": 98527, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎冠#98526(会心 破招) 15600": {"id": 98526, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus_base": 4373}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困冠#98433(加速 破招) 15600": {"id": 98433, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus_base": 4373}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落冠#98432(加速 破招) 15600": {"id": 98432, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus_base": 4373}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安冠#98431(加速 破招) 15600": {"id": 98431, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "haste_base": 4919, "surplus_base": 4373}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义冠#98430(加速 破招) 15600": {"id": 98430, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "haste_base": 4919, "surplus_base": 4373}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀冠#98397(会心 无双) 15600": {"id": 98397, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪冠#98396(会心 无双) 15600": {"id": 98396, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙冠#98395(会心 无双) 15600": {"id": 98395, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 980, "magical_attack_power_base": 1908, "all_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城冠#98394(会心 无双) 15600": {"id": 98394, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸冠#98339(破防 破招) 15400": {"id": 98339, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜冠#98338(破防 破招) 15400": {"id": 98338, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林冠#98336(破防 破招) 15400": {"id": 98336, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼冠#98333(破防 破招) 15400": {"id": 98333, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁冠#98332(破防 破招) 15400": {"id": 98332, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲冠#98330(破防 破招) 15400": {"id": 98330, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·旌声冠#98328(破防 破招) 15400": {"id": 98328, "school": "苍云", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192044", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "鸿辉·雨痕冠#98323(破防 破招) 15400": {"id": 98323, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江冠#98322(破防 破招) 15400": {"id": 98322, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦冠#98318(破防 破招) 15400": {"id": 98318, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛冠#98317(破防 破招) 15400": {"id": 98317, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬冠#98316(破防 破招) 15400": {"id": 98316, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧冠#98312(破防 破招) 15400": {"id": 98312, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法冠#98310(破防 破招) 15400": {"id": 98310, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 968, "magical_attack_power_base": 1884, "magical_overcome_base": 4856, "surplus_base": 4316}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 12], "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "无封头饰#98561(破防 会心 破招) 15200": {"id": 98561, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus_base": 3195, "physical_overcome_base": 3462, "physical_critical_strike_base": 3462}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98560(会心 无双) 15200": {"id": 98560, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3457, "physical_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98559(无双) 15200": {"id": 98559, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4053, "strain_base": 9453}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98558(破防 会心 破招) 15200": {"id": 98558, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4577, "surplus_base": 3195, "magical_overcome_base": 3462, "all_critical_strike_base": 3462}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98557(会心 无双) 15200": {"id": 98557, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4148, "all_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98556(无双) 15200": {"id": 98556, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4863, "strain_base": 9453}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98537(会心 破招 无双) 14350": {"id": 98537, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "surplus_base": 2765, "physical_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98536(会心 会效) 14350": {"id": 98536, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "physical_critical_strike_base": 6285, "physical_critical_power_base": 3771}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98535(破防) 14350": {"id": 98535, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3826, "physical_overcome_base": 8924}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98534(会心 破招 无双) 14350": {"id": 98534, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3916, "surplus_base": 2765, "all_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98533(会心 会效) 14350": {"id": 98533, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3916, "all_critical_strike_base": 6285, "all_critical_power_base": 3771}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#98532(破防) 14350": {"id": 98532, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4591, "magical_overcome_base": 8924}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风停冠#96391(会心 破招) 14150": {"id": 96391, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈冠#96390(会心 破招) 14150": {"id": 96390, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫冠#96389(会心 破招) 14150": {"id": 96389, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 889, "magical_attack_power_base": 1731, "all_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻冠#96388(会心 破招) 14150": {"id": 96388, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 889, "magical_attack_power_base": 1731, "magical_critical_strike_base": 4462, "surplus_base": 3966}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇冠#98703(会心 无双) 13950": {"id": 98703, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光冠#98702(会心 无双) 13950": {"id": 98702, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼冠#98701(会心 无双) 13950": {"id": 98701, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适冠#98700(会心 无双) 13950": {"id": 98700, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光帽#98211(破防 破招) 13950": {"id": 98211, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨帽#98210(破防 破招) 13950": {"id": 98210, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影帽#98209(破防 破招) 13950": {"id": 98209, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "magical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音帽#98208(破防 破招) 13950": {"id": 98208, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_overcome_base": 4399, "surplus_base": 3910}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽冠#96501(会心 破招) 13950": {"id": 96501, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺冠#96500(会心 破招) 13950": {"id": 96500, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓冠#96499(会心 破招) 13950": {"id": 96499, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合冠#96498(会心 破招) 13950": {"id": 96498, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月冠#96415(会心 破招) 13950": {"id": 96415, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟冠#96414(会心 破招) 13950": {"id": 96414, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意冠#96413(会心 破招) 13950": {"id": 96413, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠冠#96412(会心 破招) 13950": {"id": 96412, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus_base": 3910}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁冠#96319(加速 破招) 13950": {"id": 96319, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus_base": 3910}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦冠#96318(加速 破招) 13950": {"id": 96318, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus_base": 3910}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云冠#96317(加速 破招) 13950": {"id": 96317, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "haste_base": 4399, "surplus_base": 3910}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡冠#96316(加速 破招) 13950": {"id": 96316, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "haste_base": 4399, "surplus_base": 3910}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣冠#96283(会心 无双) 13950": {"id": 96283, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行冠#96282(会心 无双) 13950": {"id": 96282, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐冠#96281(会心 无双) 13950": {"id": 96281, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英冠#96280(会心 无双) 13950": {"id": 96280, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋帽#98181(会心 无双) 13750": {"id": 98181, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪帽#98180(会心 无双) 13750": {"id": 98180, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉帽#98179(会心 无双) 13750": {"id": 98179, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "all_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月帽#98178(会心 无双) 13750": {"id": 98178, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林冠#96225(破防 破招) 13750": {"id": 96225, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归冠#96224(破防 破招) 13750": {"id": 96224, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳冠#96222(破防 破招) 13750": {"id": 96222, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛冠#96219(破防 破招) 13750": {"id": 96219, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜冠#96218(破防 破招) 13750": {"id": 96218, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音冠#96216(破防 破招) 13750": {"id": 96216, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·肃晓冠#96214(破防 破招) 13750": {"id": 96214, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·闻箫冠#96209(破防 破招) 13750": {"id": 96209, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿冠#96208(破防 破招) 13750": {"id": 96208, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪冠#96204(破防 破招) 13750": {"id": 96204, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿冠#96203(破防 破招) 13750": {"id": 96203, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐冠#96202(破防 破招) 13750": {"id": 96202, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧冠#96198(破防 破招) 13750": {"id": 96198, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行冠#96196(破防 破招) 13750": {"id": 96196, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus_base": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "无封头饰#96455(破防 会心 无双) 13550": {"id": 96455, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "physical_overcome_base": 3323, "physical_critical_strike_base": 3798, "strain_base": 2611}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96454(会心 破招) 13550": {"id": 96454, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "surplus_base": 4985, "physical_critical_strike_base": 4747}, "embed": {"physical_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96453(会心) 13550": {"id": 96453, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3613, "physical_critical_strike_base": 8427}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96452(破防 会心 无双) 13550": {"id": 96452, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3698, "magical_overcome_base": 3323, "all_critical_strike_base": 3798, "strain_base": 2611}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96451(会心 破招) 13550": {"id": 96451, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3698, "surplus_base": 4985, "all_critical_strike_base": 4747}, "embed": {"all_critical_power_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96450(会心) 13550": {"id": 96450, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4335, "all_critical_strike_base": 8427}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96423(破防 会心 破招) 12800": {"id": 96423, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3212, "surplus_base": 2691, "physical_overcome_base": 2915, "physical_critical_strike_base": 2915}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96422(会心 无双) 12800": {"id": 96422, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2911, "physical_critical_strike_base": 4485, "strain_base": 4709}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96421(无双) 12800": {"id": 96421, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3413, "strain_base": 7960}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96420(破防 会心 破招) 12800": {"id": 96420, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3855, "surplus_base": 2691, "magical_overcome_base": 2915, "all_critical_strike_base": 2915}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96419(会心 无双) 12800": {"id": 96419, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3493, "all_critical_strike_base": 4485, "strain_base": 4709}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#96418(无双) 12800": {"id": 96418, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4096, "strain_base": 7960}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫冠#94488(会心 破招) 12600": {"id": 94488, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 792, "physical_attack_power_base": 1285, "physical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞冠#94487(会心 破招) 12600": {"id": 94487, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 792, "physical_attack_power_base": 1285, "physical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁冠#94486(会心 破招) 12600": {"id": 94486, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 792, "magical_attack_power_base": 1541, "all_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满冠#94485(会心 破招) 12600": {"id": 94485, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 792, "magical_attack_power_base": 1541, "magical_critical_strike_base": 3973, "surplus_base": 3532}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒冠#96597(会心 无双) 12450": {"id": 96597, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠冠#96596(会心 无双) 12450": {"id": 96596, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声冠#96595(会心 无双) 12450": {"id": 96595, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书冠#96594(会心 无双) 12450": {"id": 96594, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月冠#94590(会心 破招) 12450": {"id": 94590, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静冠#94589(会心 破招) 12450": {"id": 94589, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟冠#94588(会心 破招) 12450": {"id": 94588, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂冠#94587(会心 破招) 12450": {"id": 94587, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配冠#94512(会心 破招) 12450": {"id": 94512, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花冠#94511(会心 破招) 12450": {"id": 94511, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世冠#94510(会心 破招) 12450": {"id": 94510, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓冠#94509(会心 破招) 12450": {"id": 94509, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus_base": 3490}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞冠#94428(加速 破招) 12450": {"id": 94428, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus_base": 3490}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃冠#94427(加速 破招) 12450": {"id": 94427, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus_base": 3490}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡冠#94426(加速 破招) 12450": {"id": 94426, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "haste_base": 3926, "surplus_base": 3490}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华冠#94425(加速 破招) 12450": {"id": 94425, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "haste_base": 3926, "surplus_base": 3490}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野冠#94392(会心 无双) 12450": {"id": 94392, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿冠#94391(会心 无双) 12450": {"id": 94391, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微冠#94390(会心 无双) 12450": {"id": 94390, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓冠#94389(会心 无双) 12450": {"id": 94389, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临书帽#90528(破防 无双) 12400": {"id": 90528, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临雾帽#90527(破防 无双) 12400": {"id": 90527, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临起帽#90526(破防 无双) 12400": {"id": 90526, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1517, "magical_overcome_base": 3910, "strain_base": 3476}, "embed": {"spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临可帽#90525(破防 无双) 12400": {"id": 90525, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1517, "magical_overcome_base": 3910, "strain_base": 3476}, "embed": {"spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风冠#97849(破防 破招) 12300": {"id": 97849, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云帽#96097(会心 无双) 12300": {"id": 96097, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风帽#96096(会心 无双) 12300": {"id": 96096, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨帽#96095(会心 无双) 12300": {"id": 96095, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪帽#96094(会心 无双) 12300": {"id": 96094, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹冠#94335(破防 破招) 12300": {"id": 94335, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青冠#94333(破防 破招) 12300": {"id": 94333, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀冠#94330(破防 破招) 12300": {"id": 94330, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄冠#94329(破防 破招) 12300": {"id": 94329, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒冠#94327(破防 破招) 12300": {"id": 94327, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·弦夜冠#94325(破防 破招) 12300": {"id": 94325, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·霜故冠#94320(破防 破招) 12300": {"id": 94320, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼冠#94319(破防 破招) 12300": {"id": 94319, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆冠#94315(破防 破招) 12300": {"id": 94315, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄冠#94314(破防 破招) 12300": {"id": 94314, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心冠#94313(破防 破招) 12300": {"id": 94313, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声冠#94309(破防 破招) 12300": {"id": 94309, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台冠#94307(破防 破招) 12300": {"id": 94307, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念冠#90666(破防 无双) 12300": {"id": 90666, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江冠#90665(破防 无双) 12300": {"id": 90665, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦冠#90664(破防 无双) 12300": {"id": 90664, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "strain_base": 3448}, "embed": {"spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰冠#90663(破防 无双) 12300": {"id": 90663, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "strain_base": 3448}, "embed": {"spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱冠#90630(会心 破招) 12300": {"id": 90630, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌冠#90629(会心 破招) 12300": {"id": 90629, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳冠#90628(会心 破招) 12300": {"id": 90628, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐冠#90627(会心 破招) 12300": {"id": 90627, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱冠#90594(加速 破招) 12300": {"id": 90594, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus_base": 3448}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦冠#90593(加速 破招) 12300": {"id": 90593, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus_base": 3448}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭冠#90592(加速 破招) 12300": {"id": 90592, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "surplus_base": 3448}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南冠#90591(加速 破招) 12300": {"id": 90591, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "surplus_base": 3448}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱冠#90558(会心 无双) 12300": {"id": 90558, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双冠#90557(会心 无双) 12300": {"id": 90557, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜冠#90556(会心 无双) 12300": {"id": 90556, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云冠#90555(会心 无双) 12300": {"id": 90555, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁冠#90426(破防 破招) 12300": {"id": 90426, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬冠#90425(破防 破招) 12300": {"id": 90425, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜冠#90424(破防 破招) 12300": {"id": 90424, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安冠#90423(破防 破招) 12300": {"id": 90423, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus_base": 3448}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝帽#90390(加速 无双) 12300": {"id": 90390, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰帽#90389(加速 无双) 12300": {"id": 90389, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔帽#90388(加速 无双) 12300": {"id": 90388, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨帽#90387(加速 无双) 12300": {"id": 90387, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳帽#90354(会心 破招) 12300": {"id": 90354, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关帽#90353(会心 破招) 12300": {"id": 90353, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐帽#90352(会心 破招) 12300": {"id": 90352, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄帽#90351(会心 破招) 12300": {"id": 90351, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus_base": 3448}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94544(会心 破招 无双) 12100": {"id": 94544, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "surplus_base": 2332, "physical_critical_strike_base": 4027, "strain_base": 2332}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94543(会心 会效) 12100": {"id": 94543, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "physical_critical_strike_base": 5299, "physical_critical_power_base": 3180}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94542(破防) 12100": {"id": 94542, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3226, "physical_overcome_base": 7525}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94541(会心 破招 无双) 12100": {"id": 94541, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3302, "surplus_base": 2332, "all_critical_strike_base": 4027, "strain_base": 2332}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94540(会心 会效) 12100": {"id": 94540, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3302, "all_critical_strike_base": 5299, "all_critical_power_base": 3180}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封头饰#94539(破防) 12100": {"id": 94539, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3872, "magical_overcome_base": 7525}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/jacket b/qt/assets/equipments/jacket index 1bee068f6f1a00252c9796be7b21c164af28d79b..7d86b6cb4fe2c3eccbe498b8d36e046cfd4f8cde 100644 --- a/qt/assets/equipments/jacket +++ b/qt/assets/equipments/jacket @@ -1 +1 @@ -{"水泉衣 (破防 无双) 15800": {"id": 98511, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽衣 (破防 无双) 15800": {"id": 98510, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓衣 (破防 无双) 15800": {"id": 98509, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1103, "magical_attack_power_base": 2148, "magical_overcome_base": 5536, "strain_base": 4921}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川衣 (破防 无双) 15800": {"id": 98508, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1103, "magical_attack_power_base": 2148, "magical_overcome_base": 5536, "strain_base": 4921}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落衣 (会心 无双) 15600": {"id": 98613, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠衣 (会心 无双) 15600": {"id": 98612, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟衣 (会心 无双) 15600": {"id": 98611, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤衣 (会心 无双) 15600": {"id": 98610, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困衣 (会心 破招) 15600": {"id": 98439, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落衣 (会心 破招) 15600": {"id": 98438, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安衣 (会心 破招) 15600": {"id": 98437, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义衣 (会心 破招) 15600": {"id": 98436, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀衫 (破防 破招) 15600": {"id": 98403, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪衫 (破防 破招) 15600": {"id": 98402, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙衫 (破防 破招) 15600": {"id": 98401, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城衫 (破防 破招) 15600": {"id": 98400, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸衣 (会心 无双) 15400": {"id": 98369, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜衣 (会心 无双) 15400": {"id": 98368, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林衣 (会心 无双) 15400": {"id": 98366, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼衣 (会心 无双) 15400": {"id": 98363, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁衣 (会心 无双) 15400": {"id": 98362, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲衣 (加速 无双) 15400": {"id": 98360, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "haste_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·雨痕衣 (会心 无双) 15400": {"id": 98353, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江衣 (会心 无双) 15400": {"id": 98352, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦衣 (加速 无双) 15400": {"id": 98348, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "haste_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛衣 (会心 无双) 15400": {"id": 98347, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬衣 (会心 无双) 15400": {"id": 98346, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧衣 (会心 无双) 15400": {"id": 98342, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法衣 (会心 无双) 15400": {"id": 98340, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "风停衣 (破防 无双) 14150": {"id": 96397, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 988, "physical_attack_power_base": 1603, "physical_overcome_base": 4958, "strain_base": 4407}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈衣 (破防 无双) 14150": {"id": 96396, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_overcome_base": 4958, "strain_base": 4407}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫衣 (破防 无双) 14150": {"id": 96395, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "magical_overcome_base": 4958, "strain_base": 4407}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻衣 (破防 无双) 14150": {"id": 96394, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "magical_attack_power_base": 1923, "magical_overcome_base": 4958, "strain_base": 4407}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇衫 (破防 破招) 13950": {"id": 98709, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光衫 (破防 破招) 13950": {"id": 98708, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼衫 (破防 破招) 13950": {"id": 98707, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适衫 (破防 破招) 13950": {"id": 98706, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光衣 (破招 无双) 13950": {"id": 98217, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨衣 (破招 无双) 13950": {"id": 98216, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影衣 (破招 无双) 13950": {"id": 98215, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音衣 (破招 无双) 13950": {"id": 98214, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽衣 (会心 无双) 13950": {"id": 96507, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺衣 (会心 无双) 13950": {"id": 96506, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓衣 (会心 无双) 13950": {"id": 96505, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合衣 (会心 无双) 13950": {"id": 96504, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁衣 (会心 破招) 13950": {"id": 96325, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦衣 (会心 破招) 13950": {"id": 96324, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云衣 (会心 破招) 13950": {"id": 96323, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡衣 (会心 破招) 13950": {"id": 96322, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣衫 (破防 破招) 13950": {"id": 96289, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行衫 (破防 破招) 13950": {"id": 96288, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐衫 (破防 破招) 13950": {"id": 96287, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英衫 (破防 破招) 13950": {"id": 96286, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋衣 (加速 破招) 13750": {"id": 98187, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus_base": 4282}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪衣 (加速 破招) 13750": {"id": 98186, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus_base": 4282}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉衣 (加速 破招) 13750": {"id": 98185, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "surplus_base": 4282}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月衣 (加速 破招) 13750": {"id": 98184, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "surplus_base": 4282}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林衣 (会心 无双) 13750": {"id": 96255, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归衣 (会心 无双) 13750": {"id": 96254, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳衣 (会心 无双) 13750": {"id": 96252, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛衣 (会心 无双) 13750": {"id": 96249, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜衣 (会心 无双) 13750": {"id": 96248, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音衣 (加速 无双) 13750": {"id": 96246, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·闻箫衣 (会心 无双) 13750": {"id": 96239, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿衣 (会心 无双) 13750": {"id": 96238, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪衣 (加速 无双) 13750": {"id": 96234, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿衣 (会心 无双) 13750": {"id": 96233, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐衣 (会心 无双) 13750": {"id": 96232, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧衣 (会心 无双) 13750": {"id": 96228, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行衣 (会心 无双) 13750": {"id": 96226, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "雪漫衣 (破防 无双) 12600": {"id": 94494, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞衣 (破防 无双) 12600": {"id": 94493, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁衣 (破防 无双) 12600": {"id": 94492, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "magical_overcome_base": 4415, "strain_base": 3924}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满衣 (破防 无双) 12600": {"id": 94491, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "magical_attack_power_base": 1713, "magical_overcome_base": 4415, "strain_base": 3924}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒衣 (破防 破招) 12450": {"id": 96603, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠衣 (破防 破招) 12450": {"id": 96602, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声衣 (破防 破招) 12450": {"id": 96601, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书衣 (破防 破招) 12450": {"id": 96600, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月衣 (会心 无双) 12450": {"id": 94596, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静衣 (会心 无双) 12450": {"id": 94595, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟衣 (会心 无双) 12450": {"id": 94594, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂衣 (会心 无双) 12450": {"id": 94593, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞衣 (会心 破招) 12450": {"id": 94434, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃衣 (会心 破招) 12450": {"id": 94433, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡衣 (会心 破招) 12450": {"id": 94432, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华衣 (会心 破招) 12450": {"id": 94431, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野衫 (破防 破招) 12450": {"id": 94398, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿衫 (破防 破招) 12450": {"id": 94397, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微衫 (破防 破招) 12450": {"id": 94396, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓衫 (破防 破招) 12450": {"id": 94395, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨上衣·刀功 (破防 无双) 12300": {"id": 98157, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨上衣·刀功 (破防 无双) 12300": {"id": 98156, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨上衣·火候 (破防 无双) 12300": {"id": 98154, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨上衣·刀功 (破防 无双) 12300": {"id": 98151, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨上衣·刀功 (破防 无双) 12300": {"id": 98150, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨上衣·火候 (破防 无双) 12300": {"id": 98148, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨上衣·刀功 (破防 无双) 12300": {"id": 98141, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨上衣·火候 (破防 无双) 12300": {"id": 98140, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨上衣·火候 (破防 无双) 12300": {"id": 98136, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨上衣·刀功 (破防 无双) 12300": {"id": 98135, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨上衣·火候 (破防 无双) 12300": {"id": 98134, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨上衣·火候 (破防 无双) 12300": {"id": 98130, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨上衣·火候 (破防 无双) 12300": {"id": 98128, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风衣 (会心 无双) 12300": {"id": 97850, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云衣 (加速 破招) 12300": {"id": 96103, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风衣 (加速 破招) 12300": {"id": 96102, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨衣 (加速 破招) 12300": {"id": 96101, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪衣 (加速 破招) 12300": {"id": 96100, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹衣 (会心 无双) 12300": {"id": 94364, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青衣 (会心 无双) 12300": {"id": 94362, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀衣 (会心 无双) 12300": {"id": 94359, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄衣 (会心 无双) 12300": {"id": 94358, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒衣 (加速 无双) 12300": {"id": 94356, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·霜故衣 (会心 无双) 12300": {"id": 94349, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼衣 (会心 无双) 12300": {"id": 94348, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆衣 (加速 无双) 12300": {"id": 94344, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄衣 (会心 无双) 12300": {"id": 94343, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心衣 (会心 无双) 12300": {"id": 94342, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声衣 (会心 无双) 12300": {"id": 94338, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台衣 (会心 无双) 12300": {"id": 94336, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念衣 (会心 无双) 12300": {"id": 90672, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江衣 (会心 无双) 12300": {"id": 90671, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦衣 (会心 无双) 12300": {"id": 90670, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰衣 (会心 无双) 12300": {"id": 90669, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱衣 (破防 破招) 12300": {"id": 90636, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌衣 (破防 破招) 12300": {"id": 90635, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳衣 (破防 破招) 12300": {"id": 90634, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐衣 (破防 破招) 12300": {"id": 90633, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱衣 (会心 破招) 12300": {"id": 90600, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦衣 (会心 破招) 12300": {"id": 90599, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭衣 (会心 破招) 12300": {"id": 90598, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南衣 (会心 破招) 12300": {"id": 90597, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱衣 (破防 无双) 12300": {"id": 90564, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双衣 (破防 无双) 12300": {"id": 90563, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜衣 (破防 无双) 12300": {"id": 90562, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云衣 (破防 无双) 12300": {"id": 90561, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁衫 (破防 无双) 12300": {"id": 90432, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬衫 (破防 无双) 12300": {"id": 90431, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜衫 (破防 无双) 12300": {"id": 90430, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安衫 (破防 无双) 12300": {"id": 90429, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝衫 (加速 无双) 12300": {"id": 90396, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰衫 (加速 无双) 12300": {"id": 90395, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔衫 (加速 无双) 12300": {"id": 90394, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨衫 (加速 无双) 12300": {"id": 90393, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳衫 (会心 破招) 12300": {"id": 90360, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关衫 (会心 破招) 12300": {"id": 90359, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐衫 (会心 破招) 12300": {"id": 90358, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄衫 (会心 破招) 12300": {"id": 90357, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉衣#98511(破防 无双) 15800": {"id": 98511, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽衣#98510(破防 无双) 15800": {"id": 98510, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓衣#98509(破防 无双) 15800": {"id": 98509, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1103, "magical_attack_power_base": 2148, "magical_overcome_base": 5536, "strain_base": 4921}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川衣#98508(破防 无双) 15800": {"id": 98508, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1103, "magical_attack_power_base": 2148, "magical_overcome_base": 5536, "strain_base": 4921}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落衣#98613(会心 无双) 15600": {"id": 98613, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠衣#98612(会心 无双) 15600": {"id": 98612, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟衣#98611(会心 无双) 15600": {"id": 98611, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤衣#98610(会心 无双) 15600": {"id": 98610, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困衣#98439(会心 破招) 15600": {"id": 98439, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落衣#98438(会心 破招) 15600": {"id": 98438, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安衣#98437(会心 破招) 15600": {"id": 98437, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "all_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义衣#98436(会心 破招) 15600": {"id": 98436, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "surplus_base": 4858}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀衫#98403(破防 破招) 15600": {"id": 98403, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪衫#98402(破防 破招) 15600": {"id": 98402, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙衫#98401(破防 破招) 15600": {"id": 98401, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城衫#98400(破防 破招) 15600": {"id": 98400, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_overcome_base": 5466, "surplus_base": 4858}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸衣#98369(会心 无双) 15400": {"id": 98369, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜衣#98368(会心 无双) 15400": {"id": 98368, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林衣#98366(会心 无双) 15400": {"id": 98366, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼衣#98363(会心 无双) 15400": {"id": 98363, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁衣#98362(会心 无双) 15400": {"id": 98362, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲衣#98360(加速 无双) 15400": {"id": 98360, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "haste_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·旌声衣#98358(会心 无双) 15400": {"id": 98358, "school": "苍云", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192044", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "鸿辉·雨痕衣#98353(会心 无双) 15400": {"id": 98353, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江衣#98352(会心 无双) 15400": {"id": 98352, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦衣#98348(加速 无双) 15400": {"id": 98348, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "haste_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛衣#98347(会心 无双) 15400": {"id": 98347, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬衣#98346(会心 无双) 15400": {"id": 98346, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧衣#98342(会心 无双) 15400": {"id": 98342, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法衣#98340(会心 无双) 15400": {"id": 98340, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 1075, "magical_attack_power_base": 2093, "magical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "风停衣#96397(破防 无双) 14150": {"id": 96397, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 988, "physical_attack_power_base": 1603, "physical_overcome_base": 4958, "strain_base": 4407}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈衣#96396(破防 无双) 14150": {"id": 96396, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_overcome_base": 4958, "strain_base": 4407}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫衣#96395(破防 无双) 14150": {"id": 96395, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "magical_overcome_base": 4958, "strain_base": 4407}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻衣#96394(破防 无双) 14150": {"id": 96394, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "magical_attack_power_base": 1923, "magical_overcome_base": 4958, "strain_base": 4407}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇衫#98709(破防 破招) 13950": {"id": 98709, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光衫#98708(破防 破招) 13950": {"id": 98708, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼衫#98707(破防 破招) 13950": {"id": 98707, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适衫#98706(破防 破招) 13950": {"id": 98706, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光衣#98217(破招 无双) 13950": {"id": 98217, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨衣#98216(破招 无双) 13950": {"id": 98216, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影衣#98215(破招 无双) 13950": {"id": 98215, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音衣#98214(破招 无双) 13950": {"id": 98214, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "surplus_base": 4888, "strain_base": 4344}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽衣#96507(会心 无双) 13950": {"id": 96507, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺衣#96506(会心 无双) 13950": {"id": 96506, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓衣#96505(会心 无双) 13950": {"id": 96505, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合衣#96504(会心 无双) 13950": {"id": 96504, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁衣#96325(会心 破招) 13950": {"id": 96325, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦衣#96324(会心 破招) 13950": {"id": 96324, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云衣#96323(会心 破招) 13950": {"id": 96323, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡衣#96322(会心 破招) 13950": {"id": 96322, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus_base": 4344}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣衫#96289(破防 破招) 13950": {"id": 96289, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行衫#96288(破防 破招) 13950": {"id": 96288, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐衫#96287(破防 破招) 13950": {"id": 96287, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英衫#96286(破防 破招) 13950": {"id": 96286, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus_base": 4344}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋衣#98187(加速 破招) 13750": {"id": 98187, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus_base": 4282}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪衣#98186(加速 破招) 13750": {"id": 98186, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus_base": 4282}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉衣#98185(加速 破招) 13750": {"id": 98185, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "surplus_base": 4282}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月衣#98184(加速 破招) 13750": {"id": 98184, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "surplus_base": 4282}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林衣#96255(会心 无双) 13750": {"id": 96255, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归衣#96254(会心 无双) 13750": {"id": 96254, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳衣#96252(会心 无双) 13750": {"id": 96252, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛衣#96249(会心 无双) 13750": {"id": 96249, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜衣#96248(会心 无双) 13750": {"id": 96248, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音衣#96246(加速 无双) 13750": {"id": 96246, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·肃晓衣#96244(会心 无双) 13750": {"id": 96244, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·闻箫衣#96239(会心 无双) 13750": {"id": 96239, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿衣#96238(会心 无双) 13750": {"id": 96238, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪衣#96234(加速 无双) 13750": {"id": 96234, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿衣#96233(会心 无双) 13750": {"id": 96233, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐衣#96232(会心 无双) 13750": {"id": 96232, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧衣#96228(会心 无双) 13750": {"id": 96228, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行衣#96226(会心 无双) 13750": {"id": 96226, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "雪漫衣#94494(破防 无双) 12600": {"id": 94494, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞衣#94493(破防 无双) 12600": {"id": 94493, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁衣#94492(破防 无双) 12600": {"id": 94492, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "magical_overcome_base": 4415, "strain_base": 3924}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满衣#94491(破防 无双) 12600": {"id": 94491, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "magical_attack_power_base": 1713, "magical_overcome_base": 4415, "strain_base": 3924}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒衣#96603(破防 破招) 12450": {"id": 96603, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠衣#96602(破防 破招) 12450": {"id": 96602, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声衣#96601(破防 破招) 12450": {"id": 96601, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书衣#96600(破防 破招) 12450": {"id": 96600, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月衣#94596(会心 无双) 12450": {"id": 94596, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静衣#94595(会心 无双) 12450": {"id": 94595, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟衣#94594(会心 无双) 12450": {"id": 94594, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂衣#94593(会心 无双) 12450": {"id": 94593, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞衣#94434(会心 破招) 12450": {"id": 94434, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃衣#94433(会心 破招) 12450": {"id": 94433, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡衣#94432(会心 破招) 12450": {"id": 94432, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华衣#94431(会心 破招) 12450": {"id": 94431, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus_base": 3877}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野衫#94398(破防 破招) 12450": {"id": 94398, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿衫#94397(破防 破招) 12450": {"id": 94397, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微衫#94396(破防 破招) 12450": {"id": 94396, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓衫#94395(破防 破招) 12450": {"id": 94395, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus_base": 3877}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨上衣·刀功#98157(破防 无双) 12300": {"id": 98157, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨上衣·刀功#98156(破防 无双) 12300": {"id": 98156, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨上衣·火候#98154(破防 无双) 12300": {"id": 98154, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨上衣·刀功#98151(破防 无双) 12300": {"id": 98151, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨上衣·刀功#98150(破防 无双) 12300": {"id": 98150, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨上衣·火候#98148(破防 无双) 12300": {"id": 98148, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨上衣·刀工#98146(破防 无双) 12300": {"id": 98146, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨上衣·刀功#98141(破防 无双) 12300": {"id": 98141, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨上衣·火候#98140(破防 无双) 12300": {"id": 98140, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨上衣·火候#98136(破防 无双) 12300": {"id": 98136, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨上衣·刀功#98135(破防 无双) 12300": {"id": 98135, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨上衣·火候#98134(破防 无双) 12300": {"id": 98134, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨上衣·火候#98130(破防 无双) 12300": {"id": 98130, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨上衣·火候#98128(破防 无双) 12300": {"id": 98128, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风衣#97850(会心 无双) 12300": {"id": 97850, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云衣#96103(加速 破招) 12300": {"id": 96103, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风衣#96102(加速 破招) 12300": {"id": 96102, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨衣#96101(加速 破招) 12300": {"id": 96101, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪衣#96100(加速 破招) 12300": {"id": 96100, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹衣#94364(会心 无双) 12300": {"id": 94364, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青衣#94362(会心 无双) 12300": {"id": 94362, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀衣#94359(会心 无双) 12300": {"id": 94359, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄衣#94358(会心 无双) 12300": {"id": 94358, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒衣#94356(加速 无双) 12300": {"id": 94356, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·弦夜衣#94354(会心 无双) 12300": {"id": 94354, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·霜故衣#94349(会心 无双) 12300": {"id": 94349, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼衣#94348(会心 无双) 12300": {"id": 94348, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆衣#94344(加速 无双) 12300": {"id": 94344, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄衣#94343(会心 无双) 12300": {"id": 94343, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心衣#94342(会心 无双) 12300": {"id": 94342, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声衣#94338(会心 无双) 12300": {"id": 94338, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台衣#94336(会心 无双) 12300": {"id": 94336, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念衣#90672(会心 无双) 12300": {"id": 90672, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江衣#90671(会心 无双) 12300": {"id": 90671, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦衣#90670(会心 无双) 12300": {"id": 90670, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰衣#90669(会心 无双) 12300": {"id": 90669, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱衣#90636(破防 破招) 12300": {"id": 90636, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌衣#90635(破防 破招) 12300": {"id": 90635, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳衣#90634(破防 破招) 12300": {"id": 90634, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐衣#90633(破防 破招) 12300": {"id": 90633, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "surplus_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱衣#90600(会心 破招) 12300": {"id": 90600, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦衣#90599(会心 破招) 12300": {"id": 90599, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭衣#90598(会心 破招) 12300": {"id": 90598, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南衣#90597(会心 破招) 12300": {"id": 90597, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱衣#90564(破防 无双) 12300": {"id": 90564, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双衣#90563(破防 无双) 12300": {"id": 90563, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜衣#90562(破防 无双) 12300": {"id": 90562, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云衣#90561(破防 无双) 12300": {"id": 90561, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁衫#90432(破防 无双) 12300": {"id": 90432, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬衫#90431(破防 无双) 12300": {"id": 90431, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜衫#90430(破防 无双) 12300": {"id": 90430, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安衫#90429(破防 无双) 12300": {"id": 90429, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝衫#90396(加速 无双) 12300": {"id": 90396, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰衫#90395(加速 无双) 12300": {"id": 90395, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔衫#90394(加速 无双) 12300": {"id": 90394, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨衫#90393(加速 无双) 12300": {"id": 90393, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳衫#90360(会心 破招) 12300": {"id": 90360, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关衫#90359(会心 破招) 12300": {"id": 90359, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐衫#90358(会心 破招) 12300": {"id": 90358, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "all_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄衫#90357(会心 破招) 12300": {"id": 90357, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus_base": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/necklace b/qt/assets/equipments/necklace index eb7110865bdbcb5ac8b81a04249f736608547530..623b8c4b8d212387390aef727b731f1df11883ed 100644 --- a/qt/assets/equipments/necklace +++ b/qt/assets/equipments/necklace @@ -1 +1 @@ -{"无者链 (破防 破招) 15800": {"id": 39909, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 15800": {"id": 39908, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链 (破防 破招) 15800": {"id": 39907, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 552, "magical_attack_power_base": 1074, "magical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链 (破防 破招) 15800": {"id": 39906, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 552, "magical_attack_power_base": 1074, "magical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困链 (会心 无双) 15600": {"id": 39837, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落链 (会心 无双) 15600": {"id": 39836, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安链 (会心 无双) 15600": {"id": 39835, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义链 (会心 无双) 15600": {"id": 39834, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀链 (破防 无双) 15600": {"id": 39819, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪链 (破防 无双) 15600": {"id": 39818, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙链 (破防 无双) 15600": {"id": 39817, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城链 (破防 无双) 15600": {"id": 39816, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 15200": {"id": 39941, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 2071, "physical_overcome_base": 2515, "strain_base": 1479}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招) 15200": {"id": 39940, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 3107, "physical_critical_strike_base": 2959}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防) 15200": {"id": 39939, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "physical_overcome_base": 5252}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破防 破招 无双) 15200": {"id": 39938, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 2071, "magical_overcome_base": 2515, "strain_base": 1479}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心 破招) 15200": {"id": 39937, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 3107, "all_critical_strike_base": 2959}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破防) 15200": {"id": 39936, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2702, "magical_overcome_base": 5252}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链 (破防 破招) 14800": {"id": 39897, "school": "通用", "kind": "身法", "level": 14800, "max_strength": 6, "base": {}, "magic": {"agility_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 14800": {"id": 39896, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链 (破防 破招) 14800": {"id": 39895, "school": "通用", "kind": "元气", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 517, "magical_attack_power_base": 1006, "magical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链 (破防 破招) 14800": {"id": 39894, "school": "通用", "kind": "根骨", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 517, "magical_attack_power_base": 1006, "magical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 14350": {"id": 39929, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus_base": 1536, "physical_critical_strike_base": 2654, "physical_critical_power_base": 1397}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破招 无双) 14350": {"id": 39928, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus_base": 2863, "strain_base": 2863}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心) 14350": {"id": 39927, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_critical_strike_base": 4958}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心 会效 破招) 14350": {"id": 39926, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "surplus_base": 1536, "all_critical_strike_base": 2654, "all_critical_power_base": 1397}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破招 无双) 14350": {"id": 39925, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "surplus_base": 2863, "strain_base": 2863}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心) 14350": {"id": 39924, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2551, "all_critical_strike_base": 4958}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 14150": {"id": 38845, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 14150": {"id": 38844, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链 (破防 破招) 14150": {"id": 38843, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链 (破防 破招) 14150": {"id": 38842, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光链 (破防 无双) 13950": {"id": 39807, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨链 (破防 无双) 13950": {"id": 39806, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影链 (破防 无双) 13950": {"id": 39805, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音链 (破防 无双) 13950": {"id": 39804, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁链 (会心 无双) 13950": {"id": 38773, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦链 (会心 无双) 13950": {"id": 38772, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云链 (会心 无双) 13950": {"id": 38771, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡链 (会心 无双) 13950": {"id": 38770, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣链 (破防 无双) 13950": {"id": 38755, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行链 (破防 无双) 13950": {"id": 38754, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐链 (破防 无双) 13950": {"id": 38753, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英链 (破防 无双) 13950": {"id": 38752, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链 (破防 破招) 13800": {"id": 39885, "school": "通用", "kind": "身法", "level": 13800, "max_strength": 6, "base": {}, "magic": {"agility_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 13800": {"id": 39884, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链 (破防 破招) 13800": {"id": 39883, "school": "通用", "kind": "元气", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链 (破防 破招) 13800": {"id": 39882, "school": "通用", "kind": "根骨", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招 无双) 13550": {"id": 38881, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "surplus_base": 1451, "physical_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 无双) 13550": {"id": 38880, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (无双) 13550": {"id": 38879, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "strain_base": 4681}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心 破招 无双) 13550": {"id": 38878, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "surplus_base": 1451, "all_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破防 无双) 13550": {"id": 38877, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (无双) 13550": {"id": 38876, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "strain_base": 4681}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 13300": {"id": 38833, "school": "通用", "kind": "身法", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 13300": {"id": 38832, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链 (破防 破招) 13300": {"id": 38831, "school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链 (破防 破招) 13300": {"id": 38830, "school": "通用", "kind": "根骨", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链 (破防 破招) 12800": {"id": 39873, "school": "通用", "kind": "身法", "level": 12800, "max_strength": 6, "base": {}, "magic": {"agility_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 12800": {"id": 39872, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链 (破防 破招) 12800": {"id": 39871, "school": "通用", "kind": "元气", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 447, "magical_attack_power_base": 870, "magical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链 (破防 破招) 12800": {"id": 39870, "school": "通用", "kind": "根骨", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 447, "magical_attack_power_base": 870, "magical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 12800": {"id": 38865, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 1744, "physical_overcome_base": 2118, "strain_base": 1246}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招) 12800": {"id": 38864, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 2616, "physical_critical_strike_base": 2491}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防) 12800": {"id": 38863, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "physical_overcome_base": 4422}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破防 破招 无双) 12800": {"id": 38862, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 1744, "magical_overcome_base": 2118, "strain_base": 1246}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心 破招) 12800": {"id": 38861, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 2616, "all_critical_strike_base": 2491}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破防) 12800": {"id": 38860, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "magical_overcome_base": 4422}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林链 (破防 破招) 12600": {"id": 37770, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣链 (破防 破招) 12600": {"id": 37769, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "畅光链 (破防 破招) 12600": {"id": 37768, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游零链 (破防 破招) 12600": {"id": 37767, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·风行链 (破防 无双) 12450": {"id": 39683, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地链 (破防 无双) 12450": {"id": 39682, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·未判链 (破防 无双) 12450": {"id": 39681, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·心斋链 (破防 无双) 12450": {"id": 39680, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 12450": {"id": 38821, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 12450": {"id": 38820, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链 (破防 破招) 12450": {"id": 38819, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链 (破防 破招) 12450": {"id": 38818, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月链 (会心 破招) 12450": {"id": 37812, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静链 (会心 破招) 12450": {"id": 37811, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟链 (会心 破招) 12450": {"id": 37810, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂链 (会心 破招) 12450": {"id": 37809, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞链 (会心 无双) 12450": {"id": 37702, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃链 (会心 无双) 12450": {"id": 37701, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡链 (会心 无双) 12450": {"id": 37700, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华链 (会心 无双) 12450": {"id": 37699, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野链 (破防 无双) 12450": {"id": 37684, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿链 (破防 无双) 12450": {"id": 37683, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微链 (破防 无双) 12450": {"id": 37682, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓链 (破防 无双) 12450": {"id": 37681, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临越链 (破防 破招) 12400": {"id": 34190, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临邦链 (破防 破招) 12400": {"id": 34189, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临溪链 (破防 破招) 12400": {"id": 34188, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "magical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临黎链 (破防 破招) 12400": {"id": 34187, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念链 (会心 破招) 12300": {"id": 34262, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江链 (会心 破招) 12300": {"id": 34261, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦链 (会心 破招) 12300": {"id": 34260, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰链 (会心 破招) 12300": {"id": 34259, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱链 (会心 无双) 12300": {"id": 34244, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌链 (会心 无双) 12300": {"id": 34243, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳链 (会心 无双) 12300": {"id": 34242, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐链 (会心 无双) 12300": {"id": 34241, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱链 (破防 破招) 12300": {"id": 34226, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦链 (破防 破招) 12300": {"id": 34225, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭链 (破防 破招) 12300": {"id": 34224, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南链 (破防 破招) 12300": {"id": 34223, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱链 (加速 无双) 12300": {"id": 34208, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双链 (加速 无双) 12300": {"id": 34207, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜链 (加速 无双) 12300": {"id": 34206, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云链 (加速 无双) 12300": {"id": 34205, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁链 (破防 无双) 12300": {"id": 34118, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬链 (破防 无双) 12300": {"id": 34117, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜链 (破防 无双) 12300": {"id": 34116, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安链 (破防 无双) 12300": {"id": 34115, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝链 (会心 破招) 12300": {"id": 34100, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰链 (会心 破招) 12300": {"id": 34099, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔链 (会心 破招) 12300": {"id": 34098, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨链 (会心 破招) 12300": {"id": 34097, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳链 (破招 无双) 12300": {"id": 34082, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关链 (破招 无双) 12300": {"id": 34081, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐链 (破招 无双) 12300": {"id": 34080, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄链 (破招 无双) 12300": {"id": 34079, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 12100": {"id": 37802, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus_base": 1295, "physical_critical_strike_base": 2237, "physical_critical_power_base": 1178}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破招 无双) 12100": {"id": 37801, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus_base": 2414, "strain_base": 2414}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心) 12100": {"id": 37800, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_critical_strike_base": 4181}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心 会效 破招) 12100": {"id": 37799, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus_base": 1295, "all_critical_strike_base": 2237, "all_critical_power_base": 1178}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (破招 无双) 12100": {"id": 37798, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus_base": 2414, "strain_base": 2414}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封项链 (会心) 12100": {"id": 37797, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "all_critical_strike_base": 4181}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"无者链#39909(破防 破招) 15800": {"id": 39909, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链#39908(破防 破招) 15800": {"id": 39908, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链#39907(破防 破招) 15800": {"id": 39907, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 552, "magical_attack_power_base": 1074, "magical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链#39906(破防 破招) 15800": {"id": 39906, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 552, "magical_attack_power_base": 1074, "magical_overcome_base": 2768, "surplus_base": 2460}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困链#39837(会心 无双) 15600": {"id": 39837, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落链#39836(会心 无双) 15600": {"id": 39836, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安链#39835(会心 无双) 15600": {"id": 39835, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义链#39834(会心 无双) 15600": {"id": 39834, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀链#39819(破防 无双) 15600": {"id": 39819, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪链#39818(破防 无双) 15600": {"id": 39818, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙链#39817(破防 无双) 15600": {"id": 39817, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城链#39816(破防 无双) 15600": {"id": 39816, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39941(破防 破招 无双) 15200": {"id": 39941, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 2071, "physical_overcome_base": 2515, "strain_base": 1479}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39940(会心 破招) 15200": {"id": 39940, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 3107, "physical_critical_strike_base": 2959}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39939(破防) 15200": {"id": 39939, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "physical_overcome_base": 5252}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39938(破防 破招 无双) 15200": {"id": 39938, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 2071, "magical_overcome_base": 2515, "strain_base": 1479}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39937(会心 破招) 15200": {"id": 39937, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 3107, "all_critical_strike_base": 2959}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39936(破防) 15200": {"id": 39936, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2702, "magical_overcome_base": 5252}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链#39897(破防 破招) 14800": {"id": 39897, "school": "通用", "kind": "身法", "level": 14800, "max_strength": 6, "base": {}, "magic": {"agility_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链#39896(破防 破招) 14800": {"id": 39896, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链#39895(破防 破招) 14800": {"id": 39895, "school": "通用", "kind": "元气", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 517, "magical_attack_power_base": 1006, "magical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链#39894(破防 破招) 14800": {"id": 39894, "school": "通用", "kind": "根骨", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 517, "magical_attack_power_base": 1006, "magical_overcome_base": 2593, "surplus_base": 2305}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39929(会心 会效 破招) 14350": {"id": 39929, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus_base": 1536, "physical_critical_strike_base": 2654, "physical_critical_power_base": 1397}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39928(破招 无双) 14350": {"id": 39928, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus_base": 2863, "strain_base": 2863}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39927(会心) 14350": {"id": 39927, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_critical_strike_base": 4958}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39926(会心 会效 破招) 14350": {"id": 39926, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "surplus_base": 1536, "all_critical_strike_base": 2654, "all_critical_power_base": 1397}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39925(破招 无双) 14350": {"id": 39925, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "surplus_base": 2863, "strain_base": 2863}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#39924(会心) 14350": {"id": 39924, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2551, "all_critical_strike_base": 4958}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链#38845(破防 破招) 14150": {"id": 38845, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链#38844(破防 破招) 14150": {"id": 38844, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链#38843(破防 破招) 14150": {"id": 38843, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链#38842(破防 破招) 14150": {"id": 38842, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus_base": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光链#39807(破防 无双) 13950": {"id": 39807, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨链#39806(破防 无双) 13950": {"id": 39806, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影链#39805(破防 无双) 13950": {"id": 39805, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音链#39804(破防 无双) 13950": {"id": 39804, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁链#38773(会心 无双) 13950": {"id": 38773, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦链#38772(会心 无双) 13950": {"id": 38772, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云链#38771(会心 无双) 13950": {"id": 38771, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡链#38770(会心 无双) 13950": {"id": 38770, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣链#38755(破防 无双) 13950": {"id": 38755, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行链#38754(破防 无双) 13950": {"id": 38754, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐链#38753(破防 无双) 13950": {"id": 38753, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英链#38752(破防 无双) 13950": {"id": 38752, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链#39885(破防 破招) 13800": {"id": 39885, "school": "通用", "kind": "身法", "level": 13800, "max_strength": 6, "base": {}, "magic": {"agility_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链#39884(破防 破招) 13800": {"id": 39884, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链#39883(破防 破招) 13800": {"id": 39883, "school": "通用", "kind": "元气", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链#39882(破防 破招) 13800": {"id": 39882, "school": "通用", "kind": "根骨", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus_base": 2149}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38881(会心 破招 无双) 13550": {"id": 38881, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "surplus_base": 1451, "physical_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38880(破防 无双) 13550": {"id": 38880, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38879(无双) 13550": {"id": 38879, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "strain_base": 4681}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38878(会心 破招 无双) 13550": {"id": 38878, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "surplus_base": 1451, "all_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38877(破防 无双) 13550": {"id": 38877, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38876(无双) 13550": {"id": 38876, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "strain_base": 4681}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链#38833(破防 破招) 13300": {"id": 38833, "school": "通用", "kind": "身法", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链#38832(破防 破招) 13300": {"id": 38832, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链#38831(破防 破招) 13300": {"id": 38831, "school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链#38830(破防 破招) 13300": {"id": 38830, "school": "通用", "kind": "根骨", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus_base": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者链#39873(破防 破招) 12800": {"id": 39873, "school": "通用", "kind": "身法", "level": 12800, "max_strength": 6, "base": {}, "magic": {"agility_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链#39872(破防 破招) 12800": {"id": 39872, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动链#39871(破防 破招) 12800": {"id": 39871, "school": "通用", "kind": "元气", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 447, "magical_attack_power_base": 870, "magical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通链#39870(破防 破招) 12800": {"id": 39870, "school": "通用", "kind": "根骨", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 447, "magical_attack_power_base": 870, "magical_overcome_base": 2242, "surplus_base": 1993}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38865(破防 破招 无双) 12800": {"id": 38865, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 1744, "physical_overcome_base": 2118, "strain_base": 1246}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38864(会心 破招) 12800": {"id": 38864, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 2616, "physical_critical_strike_base": 2491}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38863(破防) 12800": {"id": 38863, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "physical_overcome_base": 4422}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38862(破防 破招 无双) 12800": {"id": 38862, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 1744, "magical_overcome_base": 2118, "strain_base": 1246}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38861(会心 破招) 12800": {"id": 38861, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 2616, "all_critical_strike_base": 2491}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#38860(破防) 12800": {"id": 38860, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "magical_overcome_base": 4422}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林链#37770(破防 破招) 12600": {"id": 37770, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣链#37769(破防 破招) 12600": {"id": 37769, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "畅光链#37768(破防 破招) 12600": {"id": 37768, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游零链#37767(破防 破招) 12600": {"id": 37767, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus_base": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·风行链#39683(破防 无双) 12450": {"id": 39683, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地链#39682(破防 无双) 12450": {"id": 39682, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·未判链#39681(破防 无双) 12450": {"id": 39681, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·心斋链#39680(破防 无双) 12450": {"id": 39680, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链#38821(破防 破招) 12450": {"id": 38821, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链#38820(破防 破招) 12450": {"id": 38820, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾链#38819(破防 破招) 12450": {"id": 38819, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖链#38818(破防 破招) 12450": {"id": 38818, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月链#37812(会心 破招) 12450": {"id": 37812, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静链#37811(会心 破招) 12450": {"id": 37811, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟链#37810(会心 破招) 12450": {"id": 37810, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂链#37809(会心 破招) 12450": {"id": 37809, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞链#37702(会心 无双) 12450": {"id": 37702, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃链#37701(会心 无双) 12450": {"id": 37701, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡链#37700(会心 无双) 12450": {"id": 37700, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华链#37699(会心 无双) 12450": {"id": 37699, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野链#37684(破防 无双) 12450": {"id": 37684, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿链#37683(破防 无双) 12450": {"id": 37683, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微链#37682(破防 无双) 12450": {"id": 37682, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓链#37681(破防 无双) 12450": {"id": 37681, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临越链#34190(破防 破招) 12400": {"id": 34190, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临邦链#34189(破防 破招) 12400": {"id": 34189, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临溪链#34188(破防 破招) 12400": {"id": 34188, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "magical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临黎链#34187(破防 破招) 12400": {"id": 34187, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_overcome_base": 2172, "surplus_base": 1931}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念链#34262(会心 破招) 12300": {"id": 34262, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江链#34261(会心 破招) 12300": {"id": 34261, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦链#34260(会心 破招) 12300": {"id": 34260, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰链#34259(会心 破招) 12300": {"id": 34259, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱链#34244(会心 无双) 12300": {"id": 34244, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌链#34243(会心 无双) 12300": {"id": 34243, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳链#34242(会心 无双) 12300": {"id": 34242, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐链#34241(会心 无双) 12300": {"id": 34241, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱链#34226(破防 破招) 12300": {"id": 34226, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦链#34225(破防 破招) 12300": {"id": 34225, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭链#34224(破防 破招) 12300": {"id": 34224, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南链#34223(破防 破招) 12300": {"id": 34223, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱链#34208(加速 无双) 12300": {"id": 34208, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双链#34207(加速 无双) 12300": {"id": 34207, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜链#34206(加速 无双) 12300": {"id": 34206, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云链#34205(加速 无双) 12300": {"id": 34205, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁链#34118(破防 无双) 12300": {"id": 34118, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬链#34117(破防 无双) 12300": {"id": 34117, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜链#34116(破防 无双) 12300": {"id": 34116, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安链#34115(破防 无双) 12300": {"id": 34115, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝链#34100(会心 破招) 12300": {"id": 34100, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰链#34099(会心 破招) 12300": {"id": 34099, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔链#34098(会心 破招) 12300": {"id": 34098, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨链#34097(会心 破招) 12300": {"id": 34097, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳链#34082(破招 无双) 12300": {"id": 34082, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关链#34081(破招 无双) 12300": {"id": 34081, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐链#34080(破招 无双) 12300": {"id": 34080, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄链#34079(破招 无双) 12300": {"id": 34079, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37802(会心 会效 破招) 12100": {"id": 37802, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus_base": 1295, "physical_critical_strike_base": 2237, "physical_critical_power_base": 1178}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37801(破招 无双) 12100": {"id": 37801, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus_base": 2414, "strain_base": 2414}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37800(会心) 12100": {"id": 37800, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_critical_strike_base": 4181}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37799(会心 会效 破招) 12100": {"id": 37799, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus_base": 1295, "all_critical_strike_base": 2237, "all_critical_power_base": 1178}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37798(破招 无双) 12100": {"id": 37798, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus_base": 2414, "strain_base": 2414}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封项链#37797(会心) 12100": {"id": 37797, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "all_critical_strike_base": 4181}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/pendant b/qt/assets/equipments/pendant index ff1d2558086ec04b20deedc97bf591afffcfea22..0d42e08a9c931c754f1aeb87ebd80c585921dfc1 100644 --- a/qt/assets/equipments/pendant +++ b/qt/assets/equipments/pendant @@ -1 +1 @@ -{"无者坠 (会心 无双) 15800": {"id": 39915, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 15800": {"id": 39914, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠 (会心 无双) 15800": {"id": 39913, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 552, "magical_attack_power_base": 1074, "all_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠 (会心 无双) 15800": {"id": 39912, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 552, "magical_attack_power_base": 1074, "magical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天地间 (破防 无双) 15600": {"id": 39855, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 4, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西窗意 (破防 无双) 15600": {"id": 39854, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 4, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧桐影 (破防 无双) 15600": {"id": 39853, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 4, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 122]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "秋风韵 (破防 无双) 15600": {"id": 39852, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 4, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 122]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困坠 (会心 破招) 15600": {"id": 39843, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落坠 (会心 破招) 15600": {"id": 39842, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安坠 (会心 破招) 15600": {"id": 39841, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义坠 (会心 破招) 15600": {"id": 39840, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀坠 (破防 破招) 15600": {"id": 39825, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪坠 (破防 破招) 15600": {"id": 39824, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙坠 (破防 破招) 15600": {"id": 39823, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城坠 (破防 破招) 15600": {"id": 39822, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 15200": {"id": 39947, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "physical_critical_strike_base": 2811, "physical_critical_power_base": 1479, "strain_base": 1627}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 破招) 15200": {"id": 39946, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 2959, "physical_overcome_base": 3107}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (无双) 15200": {"id": 39945, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "strain_base": 5252}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (会心 会效 无双) 15200": {"id": 39944, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "all_critical_strike_base": 2811, "all_critical_power_base": 1479, "strain_base": 1627}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 破招) 15200": {"id": 39943, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 2959, "magical_overcome_base": 3107}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (无双) 15200": {"id": 39942, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2702, "strain_base": 5252}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠 (会心 无双) 14800": {"id": 39903, "school": "通用", "kind": "身法", "level": 14800, "max_strength": 6, "base": {}, "magic": {"agility_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 14800": {"id": 39902, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠 (会心 无双) 14800": {"id": 39901, "school": "通用", "kind": "元气", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 517, "magical_attack_power_base": 1006, "all_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠 (会心 无双) 14800": {"id": 39900, "school": "通用", "kind": "根骨", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 517, "magical_attack_power_base": 1006, "magical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 14350": {"id": 39935, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_overcome_base": 1955, "physical_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 无双) 14350": {"id": 39934, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防) 14350": {"id": 39933, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 4958}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 会心 无双) 14350": {"id": 39932, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "magical_overcome_base": 1955, "all_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (会心 无双) 14350": {"id": 39931, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "all_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防) 14350": {"id": 39930, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2551, "magical_overcome_base": 4958}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 14150": {"id": 38851, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 14150": {"id": 38850, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠 (会心 无双) 14150": {"id": 38849, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "all_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 14150": {"id": 38848, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光坠 (破防 无双) 13950": {"id": 39813, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨坠 (破防 无双) 13950": {"id": 39812, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影坠 (破防 无双) 13950": {"id": 39811, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音坠 (破防 无双) 13950": {"id": 39810, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "变星霜 (破防 无双) 13950": {"id": 38791, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 4, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枕槐安 (破防 无双) 13950": {"id": 38790, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 4, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "吹香雪 (破防 无双) 13950": {"id": 38789, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池上雨 (破防 无双) 13950": {"id": 38788, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁坠 (会心 破招) 13950": {"id": 38779, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦坠 (会心 破招) 13950": {"id": 38778, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云坠 (会心 破招) 13950": {"id": 38777, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡坠 (会心 破招) 13950": {"id": 38776, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣坠 (破防 破招) 13950": {"id": 38761, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行坠 (破防 破招) 13950": {"id": 38760, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐坠 (破防 破招) 13950": {"id": 38759, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英坠 (破防 破招) 13950": {"id": 38758, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠 (会心 无双) 13800": {"id": 39891, "school": "通用", "kind": "身法", "level": 13800, "max_strength": 6, "base": {}, "magic": {"agility_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 13800": {"id": 39890, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠 (会心 无双) 13800": {"id": 39889, "school": "通用", "kind": "元气", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 482, "magical_attack_power_base": 938, "all_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠 (会心 无双) 13800": {"id": 39888, "school": "通用", "kind": "根骨", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "magical_attack_power_base": 938, "magical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 会效) 13550": {"id": 38887, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 1912, "physical_critical_strike_base": 2044, "physical_critical_power_base": 1319}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心) 13550": {"id": 38886, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_critical_strike_base": 2703, "physical_overcome_base": 2703}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心) 13550": {"id": 38885, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "physical_critical_strike_base": 4681}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 会心 会效) 13550": {"id": 38884, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 1912, "all_critical_strike_base": 2044, "all_critical_power_base": 1319}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 会心) 13550": {"id": 38883, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "all_critical_strike_base": 2703, "magical_overcome_base": 2703}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (会心) 13550": {"id": 38882, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "all_critical_strike_base": 4681}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 13300": {"id": 38839, "school": "通用", "kind": "身法", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 13300": {"id": 38838, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠 (会心 无双) 13300": {"id": 38837, "school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "all_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 13300": {"id": 38836, "school": "通用", "kind": "根骨", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠 (会心 无双) 12800": {"id": 39879, "school": "通用", "kind": "身法", "level": 12800, "max_strength": 6, "base": {}, "magic": {"agility_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 12800": {"id": 39878, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠 (会心 无双) 12800": {"id": 39877, "school": "通用", "kind": "元气", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 447, "magical_attack_power_base": 870, "all_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠 (会心 无双) 12800": {"id": 39876, "school": "通用", "kind": "根骨", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 447, "magical_attack_power_base": 870, "magical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 12800": {"id": 38873, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "physical_critical_strike_base": 2367, "physical_critical_power_base": 1246, "strain_base": 1370}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 破招) 12800": {"id": 38872, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 2491, "physical_overcome_base": 2616}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (无双) 12800": {"id": 38871, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "strain_base": 4422}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (会心 会效 无双) 12800": {"id": 38870, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "all_critical_strike_base": 2367, "all_critical_power_base": 1246, "strain_base": 1370}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 破招) 12800": {"id": 38869, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 2491, "magical_overcome_base": 2616}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (无双) 12800": {"id": 38868, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "strain_base": 4422}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林坠 (会心 无双) 12600": {"id": 37776, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣坠 (会心 无双) 12600": {"id": 37775, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "畅光坠 (会心 无双) 12600": {"id": 37774, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "all_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游零坠 (会心 无双) 12600": {"id": 37773, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·风行坠 (会心 无双) 12450": {"id": 39689, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地坠 (会心 无双) 12450": {"id": 39688, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·未判坠 (会心 无双) 12450": {"id": 39687, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·心斋坠 (会心 无双) 12450": {"id": 39686, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 12450": {"id": 38827, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 12450": {"id": 38826, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠 (会心 无双) 12450": {"id": 38825, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 12450": {"id": 38824, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月坠 (会心 破招) 12450": {"id": 37818, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静坠 (会心 破招) 12450": {"id": 37817, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟坠 (会心 破招) 12450": {"id": 37816, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂坠 (会心 破招) 12450": {"id": 37815, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雁无意 (破防 无双) 12450": {"id": 37720, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 4, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "恸黄沙 (破防 无双) 12450": {"id": 37719, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 4, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪上尘 (破防 无双) 12450": {"id": 37718, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮天阳 (破防 无双) 12450": {"id": 37717, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞坠 (会心 破招) 12450": {"id": 37708, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃坠 (会心 破招) 12450": {"id": 37707, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡坠 (会心 破招) 12450": {"id": 37706, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华坠 (会心 破招) 12450": {"id": 37705, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野坠 (破防 破招) 12450": {"id": 37690, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿坠 (破防 破招) 12450": {"id": 37689, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微坠 (破防 破招) 12450": {"id": 37688, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓坠 (破防 破招) 12450": {"id": 37687, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临苑坠 (会心 破招) 12400": {"id": 34196, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临梧坠 (会心 破招) 12400": {"id": 34195, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临典坠 (会心 破招) 12400": {"id": 34194, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "all_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临乐坠 (会心 破招) 12400": {"id": 34193, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念坠 (会心 无双) 12300": {"id": 34268, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江坠 (会心 无双) 12300": {"id": 34267, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦坠 (会心 无双) 12300": {"id": 34266, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰坠 (会心 无双) 12300": {"id": 34265, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱坠 (破防 无双) 12300": {"id": 34250, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌坠 (破防 无双) 12300": {"id": 34249, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳坠 (破防 无双) 12300": {"id": 34248, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐坠 (破防 无双) 12300": {"id": 34247, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱坠 (会心 破招) 12300": {"id": 34232, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦坠 (会心 破招) 12300": {"id": 34231, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭坠 (会心 破招) 12300": {"id": 34230, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南坠 (会心 破招) 12300": {"id": 34229, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱坠 (加速 无双) 12300": {"id": 34214, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双坠 (加速 无双) 12300": {"id": 34213, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜坠 (加速 无双) 12300": {"id": 34212, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云坠 (加速 无双) 12300": {"id": 34211, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁坠 (会心 无双) 12300": {"id": 34124, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬坠 (会心 无双) 12300": {"id": 34123, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜坠 (会心 无双) 12300": {"id": 34122, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安坠 (会心 无双) 12300": {"id": 34121, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝佩 (加速 破招) 12300": {"id": 34106, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰佩 (加速 破招) 12300": {"id": 34105, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔佩 (加速 破招) 12300": {"id": 34104, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨佩 (加速 破招) 12300": {"id": 34103, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳佩 (破招 无双) 12300": {"id": 34088, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关佩 (破招 无双) 12300": {"id": 34087, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐佩 (破招 无双) 12300": {"id": 34086, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄佩 (破招 无双) 12300": {"id": 34085, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 12100": {"id": 37808, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_overcome_base": 1649, "physical_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 无双) 12100": {"id": 37807, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防) 12100": {"id": 37806, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_overcome_base": 4181}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防 会心 无双) 12100": {"id": 37805, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "magical_overcome_base": 1649, "all_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (会心 无双) 12100": {"id": 37804, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "all_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封腰坠 (破防) 12100": {"id": 37803, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "magical_overcome_base": 4181}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "歌月坠 (破防 无双) 12000": {"id": 38737, "school": "通用", "kind": "身法", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "齐月坠 (破防 无双) 12000": {"id": 38736, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "濯月坠 (破防 无双) 12000": {"id": 38735, "school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淡月坠 (破防 无双) 12000": {"id": 38734, "school": "通用", "kind": "根骨", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"无者坠#39915(会心 无双) 15800": {"id": 39915, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠#39914(会心 无双) 15800": {"id": 39914, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠#39913(会心 无双) 15800": {"id": 39913, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 552, "magical_attack_power_base": 1074, "all_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠#39912(会心 无双) 15800": {"id": 39912, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 552, "magical_attack_power_base": 1074, "magical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天地间#39855(破防 无双) 15600": {"id": 39855, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 4, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西窗意#39854(破防 无双) 15600": {"id": 39854, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 4, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧桐影#39853(破防 无双) 15600": {"id": 39853, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 4, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 122]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "秋风韵#39852(破防 无双) 15600": {"id": 39852, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 4, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 122]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困坠#39843(会心 破招) 15600": {"id": 39843, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落坠#39842(会心 破招) 15600": {"id": 39842, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安坠#39841(会心 破招) 15600": {"id": 39841, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义坠#39840(会心 破招) 15600": {"id": 39840, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "surplus_base": 2429}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀坠#39825(破防 破招) 15600": {"id": 39825, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪坠#39824(破防 破招) 15600": {"id": 39824, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙坠#39823(破防 破招) 15600": {"id": 39823, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城坠#39822(破防 破招) 15600": {"id": 39822, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39947(会心 会效 无双) 15200": {"id": 39947, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "physical_critical_strike_base": 2811, "physical_critical_power_base": 1479, "strain_base": 1627}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39946(破防 破招) 15200": {"id": 39946, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus_base": 2959, "physical_overcome_base": 3107}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39945(无双) 15200": {"id": 39945, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "strain_base": 5252}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39944(会心 会效 无双) 15200": {"id": 39944, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "all_critical_strike_base": 2811, "all_critical_power_base": 1479, "strain_base": 1627}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39943(破防 破招) 15200": {"id": 39943, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2305, "surplus_base": 2959, "magical_overcome_base": 3107}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39942(无双) 15200": {"id": 39942, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2702, "strain_base": 5252}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠#39903(会心 无双) 14800": {"id": 39903, "school": "通用", "kind": "身法", "level": 14800, "max_strength": 6, "base": {}, "magic": {"agility_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠#39902(会心 无双) 14800": {"id": 39902, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠#39901(会心 无双) 14800": {"id": 39901, "school": "通用", "kind": "元气", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 517, "magical_attack_power_base": 1006, "all_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠#39900(会心 无双) 14800": {"id": 39900, "school": "通用", "kind": "根骨", "level": 14800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 517, "magical_attack_power_base": 1006, "magical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39935(破防 会心 无双) 14350": {"id": 39935, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_overcome_base": 1955, "physical_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39934(会心 无双) 14350": {"id": 39934, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39933(破防) 14350": {"id": 39933, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 4958}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39932(破防 会心 无双) 14350": {"id": 39932, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "magical_overcome_base": 1955, "all_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39931(会心 无双) 14350": {"id": 39931, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2176, "all_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#39930(破防) 14350": {"id": 39930, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2551, "magical_overcome_base": 4958}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠#38851(会心 无双) 14150": {"id": 38851, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠#38850(会心 无双) 14150": {"id": 38850, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠#38849(会心 无双) 14150": {"id": 38849, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "all_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠#38848(会心 无双) 14150": {"id": 38848, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光坠#39813(破防 无双) 13950": {"id": 39813, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨坠#39812(破防 无双) 13950": {"id": 39812, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影坠#39811(破防 无双) 13950": {"id": 39811, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音坠#39810(破防 无双) 13950": {"id": 39810, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "变星霜#38791(破防 无双) 13950": {"id": 38791, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 4, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枕槐安#38790(破防 无双) 13950": {"id": 38790, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 4, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "吹香雪#38789(破防 无双) 13950": {"id": 38789, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池上雨#38788(破防 无双) 13950": {"id": 38788, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁坠#38779(会心 破招) 13950": {"id": 38779, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦坠#38778(会心 破招) 13950": {"id": 38778, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云坠#38777(会心 破招) 13950": {"id": 38777, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡坠#38776(会心 破招) 13950": {"id": 38776, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "surplus_base": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣坠#38761(破防 破招) 13950": {"id": 38761, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行坠#38760(破防 破招) 13950": {"id": 38760, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐坠#38759(破防 破招) 13950": {"id": 38759, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英坠#38758(破防 破招) 13950": {"id": 38758, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠#39891(会心 无双) 13800": {"id": 39891, "school": "通用", "kind": "身法", "level": 13800, "max_strength": 6, "base": {}, "magic": {"agility_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠#39890(会心 无双) 13800": {"id": 39890, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠#39889(会心 无双) 13800": {"id": 39889, "school": "通用", "kind": "元气", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 482, "magical_attack_power_base": 938, "all_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠#39888(会心 无双) 13800": {"id": 39888, "school": "通用", "kind": "根骨", "level": 13800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "magical_attack_power_base": 938, "magical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38887(破防 会心 会效) 13550": {"id": 38887, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 1912, "physical_critical_strike_base": 2044, "physical_critical_power_base": 1319}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38886(破防 会心) 13550": {"id": 38886, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_critical_strike_base": 2703, "physical_overcome_base": 2703}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38885(会心) 13550": {"id": 38885, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "physical_critical_strike_base": 4681}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38884(破防 会心 会效) 13550": {"id": 38884, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 1912, "all_critical_strike_base": 2044, "all_critical_power_base": 1319}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38883(破防 会心) 13550": {"id": 38883, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "all_critical_strike_base": 2703, "magical_overcome_base": 2703}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38882(会心) 13550": {"id": 38882, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "all_critical_strike_base": 4681}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠#38839(会心 无双) 13300": {"id": 38839, "school": "通用", "kind": "身法", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠#38838(会心 无双) 13300": {"id": 38838, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠#38837(会心 无双) 13300": {"id": 38837, "school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "all_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠#38836(会心 无双) 13300": {"id": 38836, "school": "通用", "kind": "根骨", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无者坠#39879(会心 无双) 12800": {"id": 39879, "school": "通用", "kind": "身法", "level": 12800, "max_strength": 6, "base": {}, "magic": {"agility_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠#39878(会心 无双) 12800": {"id": 39878, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "爪动坠#39877(会心 无双) 12800": {"id": 39877, "school": "通用", "kind": "元气", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 447, "magical_attack_power_base": 870, "all_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "文通坠#39876(会心 无双) 12800": {"id": 39876, "school": "通用", "kind": "根骨", "level": 12800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 447, "magical_attack_power_base": 870, "magical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38873(会心 会效 无双) 12800": {"id": 38873, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "physical_critical_strike_base": 2367, "physical_critical_power_base": 1246, "strain_base": 1370}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38872(破防 破招) 12800": {"id": 38872, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus_base": 2491, "physical_overcome_base": 2616}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38871(无双) 12800": {"id": 38871, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "strain_base": 4422}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38870(会心 会效 无双) 12800": {"id": 38870, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "all_critical_strike_base": 2367, "all_critical_power_base": 1246, "strain_base": 1370}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38869(破防 破招) 12800": {"id": 38869, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus_base": 2491, "magical_overcome_base": 2616}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#38868(无双) 12800": {"id": 38868, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "strain_base": 4422}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林坠#37776(会心 无双) 12600": {"id": 37776, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣坠#37775(会心 无双) 12600": {"id": 37775, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "畅光坠#37774(会心 无双) 12600": {"id": 37774, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "all_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游零坠#37773(会心 无双) 12600": {"id": 37773, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·风行坠#39689(会心 无双) 12450": {"id": 39689, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地坠#39688(会心 无双) 12450": {"id": 39688, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·未判坠#39687(会心 无双) 12450": {"id": 39687, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·心斋坠#39686(会心 无双) 12450": {"id": 39686, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠#38827(会心 无双) 12450": {"id": 38827, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠#38826(会心 无双) 12450": {"id": 38826, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "日倾坠#38825(会心 无双) 12450": {"id": 38825, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠#38824(会心 无双) 12450": {"id": 38824, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月坠#37818(会心 破招) 12450": {"id": 37818, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静坠#37817(会心 破招) 12450": {"id": 37817, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟坠#37816(会心 破招) 12450": {"id": 37816, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂坠#37815(会心 破招) 12450": {"id": 37815, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雁无意#37720(破防 无双) 12450": {"id": 37720, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 4, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "恸黄沙#37719(破防 无双) 12450": {"id": 37719, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 4, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪上尘#37718(破防 无双) 12450": {"id": 37718, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮天阳#37717(破防 无双) 12450": {"id": 37717, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞坠#37708(会心 破招) 12450": {"id": 37708, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃坠#37707(会心 破招) 12450": {"id": 37707, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡坠#37706(会心 破招) 12450": {"id": 37706, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华坠#37705(会心 破招) 12450": {"id": 37705, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野坠#37690(破防 破招) 12450": {"id": 37690, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿坠#37689(破防 破招) 12450": {"id": 37689, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微坠#37688(破防 破招) 12450": {"id": 37688, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓坠#37687(破防 破招) 12450": {"id": 37687, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临苑坠#34196(会心 破招) 12400": {"id": 34196, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临梧坠#34195(会心 破招) 12400": {"id": 34195, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临典坠#34194(会心 破招) 12400": {"id": 34194, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "all_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临乐坠#34193(会心 破招) 12400": {"id": 34193, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_critical_strike_base": 2172, "surplus_base": 1931}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念坠#34268(会心 无双) 12300": {"id": 34268, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江坠#34267(会心 无双) 12300": {"id": 34267, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦坠#34266(会心 无双) 12300": {"id": 34266, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰坠#34265(会心 无双) 12300": {"id": 34265, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱坠#34250(破防 无双) 12300": {"id": 34250, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌坠#34249(破防 无双) 12300": {"id": 34249, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳坠#34248(破防 无双) 12300": {"id": 34248, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐坠#34247(破防 无双) 12300": {"id": 34247, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "strain_base": 1915}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱坠#34232(会心 破招) 12300": {"id": 34232, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦坠#34231(会心 破招) 12300": {"id": 34231, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭坠#34230(会心 破招) 12300": {"id": 34230, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南坠#34229(会心 破招) 12300": {"id": 34229, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱坠#34214(加速 无双) 12300": {"id": 34214, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双坠#34213(加速 无双) 12300": {"id": 34213, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜坠#34212(加速 无双) 12300": {"id": 34212, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云坠#34211(加速 无双) 12300": {"id": 34211, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁坠#34124(会心 无双) 12300": {"id": 34124, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬坠#34123(会心 无双) 12300": {"id": 34123, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜坠#34122(会心 无双) 12300": {"id": 34122, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安坠#34121(会心 无双) 12300": {"id": 34121, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝佩#34106(加速 破招) 12300": {"id": 34106, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰佩#34105(加速 破招) 12300": {"id": 34105, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔佩#34104(加速 破招) 12300": {"id": 34104, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨佩#34103(加速 破招) 12300": {"id": 34103, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳佩#34088(破招 无双) 12300": {"id": 34088, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关佩#34087(破招 无双) 12300": {"id": 34087, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐佩#34086(破招 无双) 12300": {"id": 34086, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄佩#34085(破招 无双) 12300": {"id": 34085, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {"magical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37808(破防 会心 无双) 12100": {"id": 37808, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_overcome_base": 1649, "physical_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37807(会心 无双) 12100": {"id": 37807, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37806(破防) 12100": {"id": 37806, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_overcome_base": 4181}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37805(破防 会心 无双) 12100": {"id": 37805, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "magical_overcome_base": 1649, "all_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37804(会心 无双) 12100": {"id": 37804, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "all_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封腰坠#37803(破防) 12100": {"id": 37803, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "magical_overcome_base": 4181}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "歌月坠#38737(破防 无双) 12000": {"id": 38737, "school": "通用", "kind": "身法", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "齐月坠#38736(破防 无双) 12000": {"id": 38736, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "濯月坠#38735(破防 无双) 12000": {"id": 38735, "school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淡月坠#38734(破防 无双) 12000": {"id": 38734, "school": "通用", "kind": "根骨", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/primary_weapon b/qt/assets/equipments/primary_weapon index 847194cf2d2b008714b11bba90584455e413a0e3..723beaca06b15115c6051a1c68abbe280ad2f0d0 100644 --- a/qt/assets/equipments/primary_weapon +++ b/qt/assets/equipments/primary_weapon @@ -1 +1 @@ -{"大风吟 (会心 破招) 15800": {"id": 37291, "school": "万灵", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未试风霜 (会心 破招) 15800": {"id": 37290, "school": "刀宗", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云深路杳 (会心 破招) 15800": {"id": 37288, "school": "药宗", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "相逢人间 (会心 破招) 15800": {"id": 37285, "school": "蓬莱", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "世事浮云 (会心 破招) 15800": {"id": 37284, "school": "霸刀", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "向天涯 (会心 破招) 15800": {"id": 37282, "school": "长歌", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1225, "weapon_damage_rand": 817}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "何问名 (会心 破招) 15800": {"id": 37274, "school": "唐门", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "竹风清 (会心 破招) 15800": {"id": 37273, "school": "唐门", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清如洗 (会心 破招) 15800": {"id": 37269, "school": "七秀", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1593, "weapon_damage_rand": 1062}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "入尘寰 (会心 破招) 15800": {"id": 37268, "school": "纯阳", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3185, "weapon_damage_rand": 2123}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "仙人来路 (会心 破招) 15800": {"id": 37267, "school": "纯阳", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1593, "weapon_damage_rand": 1062}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自笑痴 (会心 破招) 15800": {"id": 37263, "school": "万花", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1225, "weapon_damage_rand": 817}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寂灭身心 (会心 破招) 15800": {"id": 37261, "school": "少林", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 4165, "weapon_damage_rand": 2777}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山灵语 (破防 破招) 15600": {"id": 37340, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问刀 (破防 破招) 15600": {"id": 37339, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "吹落苍耳 (破防 破招) 15600": {"id": 37337, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "横分青云 (破防 破招) 15600": {"id": 37334, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒云漠 (破防 破招) 15600": {"id": 37333, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浸琉岚 (破防 破招) 15600": {"id": 37331, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "窗间絮 (破防 破招) 15600": {"id": 37323, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万缕牵 (破防 破招) 15600": {"id": 37322, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "幽香暗逐 (破防 破招) 15600": {"id": 37318, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风露夜萧 (破防 破招) 15600": {"id": 37317, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清寒细逐 (破防 破招) 15600": {"id": 37316, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "与风遥 (破防 破招) 15600": {"id": 37312, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自在妙法 (破防 破招) 15600": {"id": 37310, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山有神通 (破防 无双) 15600": {"id": 37252, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临渊问境 (破防 无双) 15600": {"id": 37251, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "好春光 (破防 无双) 15600": {"id": 37249, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "俯望尘世 (破防 无双) 15600": {"id": 37246, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里长空 (破防 无双) 15600": {"id": 37245, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "古来知音 (破防 无双) 15600": {"id": 37243, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "掠空 (破防 无双) 15600": {"id": 37235, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风过竹林 (破防 无双) 15600": {"id": 37234, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "前尘旧事 (破防 无双) 15600": {"id": 37230, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乘梦十洲 (破防 无双) 15600": {"id": 37229, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "仙家楼阁 (破防 无双) 15600": {"id": 37228, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曰皆可 (破防 无双) 15600": {"id": 37224, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "尘劫 (破防 无双) 15600": {"id": 37222, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪无弓 (会心 无双) 15600": {"id": 37221, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烈希刀 (会心 无双) 15600": {"id": 37220, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "何疏卷 (会心 无双) 15600": {"id": 37218, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "书空伞 (会心 无双) 15600": {"id": 37215, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "念真刀 (会心 无双) 15600": {"id": 37214, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "倾杯琴 (会心 无双) 15600": {"id": 37212, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千回弩 (会心 无双) 15600": {"id": 37204, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月英弩 (会心 无双) 15600": {"id": 37203, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "柔情双剑 (会心 无双) 15600": {"id": 37199, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雨弦剑 (会心 无双) 15600": {"id": 37198, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "两情剑 (会心 无双) 15600": {"id": 37197, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云儿笔 (会心 无双) 15600": {"id": 37193, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "镜台杖 (会心 无双) 15600": {"id": 37191, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞虹 (会心 破招) 14150": {"id": 35820, "school": "万灵", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟雨寒舟 (会心 破招) 14150": {"id": 35819, "school": "刀宗", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "晴翠 (会心 破招) 14150": {"id": 35817, "school": "药宗", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鲸歌海雾 (会心 破招) 14150": {"id": 35814, "school": "蓬莱", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重霜 (会心 破招) 14150": {"id": 35813, "school": "霸刀", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "笙歌沸 (会心 破招) 14150": {"id": 35811, "school": "长歌", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1097, "weapon_damage_rand": 731}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "杀机隐 (会心 破招) 14150": {"id": 35803, "school": "唐门", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "茂林 (会心 破招) 14150": {"id": 35802, "school": "唐门", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "倾杯邀月 (会心 破招) 14150": {"id": 35798, "school": "七秀", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1426, "weapon_damage_rand": 951}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宵星 (会心 破招) 14150": {"id": 35797, "school": "纯阳", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2852, "weapon_damage_rand": 1902}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自化乾坤 (会心 破招) 14150": {"id": 35796, "school": "纯阳", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1426, "weapon_damage_rand": 951}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知晚 (会心 破招) 14150": {"id": 35792, "school": "万花", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1097, "weapon_damage_rand": 731}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无痴 (会心 破招) 14150": {"id": 35790, "school": "少林", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3730, "weapon_damage_rand": 2487}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·欲明 (破防 无双) 13950": {"id": 37441, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·山中仙 (破防 无双) 13950": {"id": 37440, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·征帆 (破防 无双) 13950": {"id": 37438, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海底石 (破防 无双) 13950": {"id": 37435, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·觅安期 (破防 无双) 13950": {"id": 37434, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·梅梢 (破防 无双) 13950": {"id": 37432, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·雁边 (破防 无双) 13950": {"id": 37424, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·何纵横 (破防 无双) 13950": {"id": 37423, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·升平 (破防 无双) 13950": {"id": 37419, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·云霄行 (破防 无双) 13950": {"id": 37418, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·流晶 (破防 无双) 13950": {"id": 37417, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·三生梦 (破防 无双) 13950": {"id": 37413, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·沙行 (破防 无双) 13950": {"id": 37411, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危辞弓 (会心 无双) 13950": {"id": 37178, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危皓刀 (会心 无双) 13950": {"id": 37177, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危明卷 (会心 无双) 13950": {"id": 37175, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危潮伞 (会心 无双) 13950": {"id": 37172, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危魂刀 (会心 无双) 13950": {"id": 37171, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危韵琴 (会心 无双) 13950": {"id": 37169, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危森弩 (会心 无双) 13950": {"id": 37161, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危壑弩 (会心 无双) 13950": {"id": 37160, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危霜双剑 (会心 无双) 13950": {"id": 37156, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雪剑 (会心 无双) 13950": {"id": 37155, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危崖剑 (会心 无双) 13950": {"id": 37154, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危枝笔 (会心 无双) 13950": {"id": 37150, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危莲棍 (会心 无双) 13950": {"id": 37148, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闲观日月 (破防 破招) 13950": {"id": 35871, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里风 (破防 破招) 13950": {"id": 35870, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧云幽处 (破防 破招) 13950": {"id": 35868, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万古云 (破防 破招) 13950": {"id": 35865, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒 (破防 破招) 13950": {"id": 35864, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "皓魄流连 (破防 破招) 13950": {"id": 35862, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "入云平 (破防 破招) 13950": {"id": 35854, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千仞峡 (破防 破招) 13950": {"id": 35853, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月半明 (破防 破招) 13950": {"id": 35849, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "琼楼仙踪 (破防 破招) 13950": {"id": 35848, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "松风吹雨 (破防 破招) 13950": {"id": 35847, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "荡波行 (破防 破招) 13950": {"id": 35843, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缘法三千 (破防 破招) 13950": {"id": 35841, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "穿叶雨 (破防 无双) 13950": {"id": 35781, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾浪远 (破防 无双) 13950": {"id": 35780, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "跃灵春 (破防 无双) 13950": {"id": 35778, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清秋海 (破防 无双) 13950": {"id": 35775, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风柳绪 (破防 无双) 13950": {"id": 35774, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疏弦意 (破防 无双) 13950": {"id": 35772, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒夜隐 (破防 无双) 13950": {"id": 35764, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雾行客 (破防 无双) 13950": {"id": 35763, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "含月霜 (破防 无双) 13950": {"id": 35759, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "留枝鹤 (破防 无双) 13950": {"id": 35758, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "伴雪声 (破防 无双) 13950": {"id": 35757, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "览墨书 (破防 无双) 13950": {"id": 35753, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "静己身 (破防 无双) 13950": {"id": 35751, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金虹弓 (会心 无双) 13950": {"id": 35750, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "火云刀 (会心 无双) 13950": {"id": 35749, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桃风卷 (会心 无双) 13950": {"id": 35747, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "萦回伞 (会心 无双) 13950": {"id": 35744, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千雷刀 (会心 无双) 13950": {"id": 35743, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "华韵琴 (会心 无双) 13950": {"id": 35741, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "掠远弩 (会心 无双) 13950": {"id": 35733, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "弑心弩 (会心 无双) 13950": {"id": 35732, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "映川双剑 (会心 无双) 13950": {"id": 35728, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悠行剑 (会心 无双) 13950": {"id": 35727, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "明然剑 (会心 无双) 13950": {"id": 35726, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山寂笔 (会心 无双) 13950": {"id": 35722, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "空悟法杖 (会心 无双) 13950": {"id": 35720, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·紫竹弓 (会心 破招) 13750": {"id": 37141, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碧晨刀 (会心 破招) 13750": {"id": 37140, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·芳菲卷 (会心 破招) 13750": {"id": 37138, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飘零伞 (会心 破招) 13750": {"id": 37135, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐虎刀 (会心 破招) 13750": {"id": 37134, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞鸿琴 (会心 破招) 13750": {"id": 37132, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1066, "weapon_damage_rand": 711}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·冰焰弩 (会心 破招) 13750": {"id": 37124, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·烈寒弩 (会心 破招) 13750": {"id": 37123, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·翔天双剑 (会心 破招) 13750": {"id": 37119, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1386, "weapon_damage_rand": 924}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·寒星剑 (会心 破招) 13750": {"id": 37118, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2772, "weapon_damage_rand": 1848}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·明月剑 (会心 破招) 13750": {"id": 37117, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1386, "weapon_damage_rand": 924}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·枫岩笔 (会心 破招) 13750": {"id": 37113, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1066, "weapon_damage_rand": 711}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·禅心棍 (会心 破招) 13750": {"id": 37111, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3625, "weapon_damage_rand": 2416}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "裂风破天弓 (破防 破招) 13200": {"id": 36911, "school": "万灵", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "四绝分海刀 (破防 破招) 13200": {"id": 36910, "school": "刀宗", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "传薪百草卷·尊道 (破防 破招) 13200": {"id": 36908, "school": "药宗", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪不归伞 (破防 破招) 13200": {"id": 36905, "school": "蓬莱", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百炼环首刀 (破防 破招) 13200": {"id": 36904, "school": "霸刀", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "国士无双·天乐 (破防 破招) 13200": {"id": 36902, "school": "长歌", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浪子穿心弩·杀心 (破防 破招) 13200": {"id": 36894, "school": "唐门", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浪子穿心弩·无情 (破防 破招) 13200": {"id": 36893, "school": "唐门", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淬血霜花剑·金莲 (破防 破招) 13200": {"id": 36889, "school": "七秀", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 887}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悲风悯月剑·分野 (破防 破招) 13200": {"id": 36888, "school": "纯阳", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2661, "weapon_damage_rand": 1774}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悲风悯月剑·星辰 (破防 破招) 13200": {"id": 36887, "school": "纯阳", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 887}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "哭佛点睛笔·山水 (破防 破招) 13200": {"id": 36883, "school": "万花", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "裂叶齐眉棍·禅 (破防 破招) 13200": {"id": 36881, "school": "少林", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3480, "weapon_damage_rand": 2320}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "弯弓弦月 (会心 破招) 12600": {"id": 36661, "school": "万灵", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凌云天 (会心 破招) 12600": {"id": 34803, "school": "刀宗", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自清 (会心 破招) 12600": {"id": 34801, "school": "药宗", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵台御风 (会心 破招) 12600": {"id": 34798, "school": "蓬莱", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "田野苍茫 (会心 破招) 12600": {"id": 34797, "school": "霸刀", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "荡人心 (会心 破招) 12600": {"id": 34795, "school": "长歌", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 977, "weapon_damage_rand": 651}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百影成空 (会心 破招) 12600": {"id": 34787, "school": "唐门", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如梦 (会心 破招) 12600": {"id": 34786, "school": "唐门", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乐无边 (会心 破招) 12600": {"id": 34782, "school": "七秀", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1270, "weapon_damage_rand": 847}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "彩云开 (会心 破招) 12600": {"id": 34781, "school": "纯阳", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2540, "weapon_damage_rand": 1693}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照金沙 (会心 破招) 12600": {"id": 34780, "school": "纯阳", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1270, "weapon_damage_rand": 847}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愁绪难尽 (会心 破招) 12600": {"id": 34776, "school": "万花", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 977, "weapon_damage_rand": 651}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涤净红尘 (会心 破招) 12600": {"id": 34774, "school": "少林", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 3321, "weapon_damage_rand": 2214}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 12500": {"id": 38077, "school": "万灵", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5633, "physical_critical_strike_base": 5880, "physical_overcome_base": 5880, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 12500": {"id": 38076, "school": "刀宗", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5543, "physical_critical_strike_base": 5880, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 12500": {"id": 38074, "school": "药宗", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6651, "magical_critical_strike_base": 5474, "magical_overcome_base": 6488, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 12500": {"id": 38071, "school": "蓬莱", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 6083, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 12500": {"id": 38070, "school": "霸刀", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 5677, "physical_overcome_base": 6488, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 12500": {"id": 38068, "school": "长歌", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1346, "weapon_damage_rand": 897}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6542, "magical_critical_strike_base": 5677, "magical_overcome_base": 6285, "haste_base": 2230}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 12500": {"id": 38060, "school": "唐门", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5270, "physical_critical_strike_base": 5880, "physical_overcome_base": 6691, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 12500": {"id": 38059, "school": "唐门", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6542, "physical_critical_strike_base": 5474, "magical_overcome_base": 6691, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 12500": {"id": 38055, "school": "七秀", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1750, "weapon_damage_rand": 1167}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6760, "magical_critical_strike_base": 5474, "magical_overcome_base": 6083, "haste_base": 2230}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 12500": {"id": 38054, "school": "纯阳", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 3500, "weapon_damage_rand": 2333}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5361, "physical_critical_strike_base": 6285, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 12500": {"id": 38053, "school": "纯阳", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1750, "weapon_damage_rand": 1167}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6542, "magical_critical_strike_base": 6285, "magical_overcome_base": 5880, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 12500": {"id": 38049, "school": "万花", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1346, "weapon_damage_rand": 897}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6760, "magical_critical_strike_base": 5474, "magical_overcome_base": 6285, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 12500": {"id": 38047, "school": "少林", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4576, "weapon_damage_rand": 3051}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6978, "magical_critical_strike_base": 5272, "magical_overcome_base": 6083, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "划长虹 (破防 无双) 12450": {"id": 36660, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "势相和 (会心 无双) 12450": {"id": 36659, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·林野 (破防 无双) 12450": {"id": 35972, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·流湍 (破防 无双) 12450": {"id": 35971, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·翠团 (破防 无双) 12450": {"id": 35969, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·照清池 (破防 无双) 12450": {"id": 35966, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·雾掣 (破防 无双) 12450": {"id": 35965, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·归闲 (破防 无双) 12450": {"id": 35963, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·尘羁 (破防 无双) 12450": {"id": 35955, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·暮鸦 (破防 无双) 12450": {"id": 35954, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·渺眠 (破防 无双) 12450": {"id": 35950, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·愚贤 (破防 无双) 12450": {"id": 35949, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·希夷 (破防 无双) 12450": {"id": 35948, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·倦意 (破防 无双) 12450": {"id": 35944, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·夜灯 (破防 无双) 12450": {"id": 35942, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不变情 (破防 破招) 12450": {"id": 34851, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百味千秋 (破防 破招) 12450": {"id": 34849, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "送君行 (破防 破招) 12450": {"id": 34846, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪中迹 (破防 破招) 12450": {"id": 34845, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故人何处 (破防 破招) 12450": {"id": 34843, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "茫茫竹影 (破防 破招) 12450": {"id": 34835, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "野趣横生 (破防 破招) 12450": {"id": 34834, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "永沐清风 (破防 破招) 12450": {"id": 34830, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "任逍遥 (破防 破招) 12450": {"id": 34829, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "道无尽 (破防 破招) 12450": {"id": 34828, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如龙 (破防 破招) 12450": {"id": 34824, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迷程 (破防 破招) 12450": {"id": 34822, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏刀行 (破防 无双) 12450": {"id": 34765, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浮玉池 (破防 无双) 12450": {"id": 34763, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水色天 (破防 无双) 12450": {"id": 34760, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宝器光 (破防 无双) 12450": {"id": 34759, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不胜愁 (破防 无双) 12450": {"id": 34757, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风杀 (破防 无双) 12450": {"id": 34749, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夜狂游 (破防 无双) 12450": {"id": 34748, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云微澄 (破防 无双) 12450": {"id": 34744, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "转尘寰 (破防 无双) 12450": {"id": 34743, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "岁载空 (破防 无双) 12450": {"id": 34742, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东风债 (破防 无双) 12450": {"id": 34738, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "修菩提 (破防 无双) 12450": {"id": 34736, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧玉锋 (会心 无双) 12450": {"id": 34735, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "流碧落 (会心 无双) 12450": {"id": 34733, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "连山岳 (会心 无双) 12450": {"id": 34730, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "红尘苦 (会心 无双) 12450": {"id": 34729, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "落英风 (会心 无双) 12450": {"id": 34727, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "映梨花 (会心 无双) 12450": {"id": 34719, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悬长夜 (会心 无双) 12450": {"id": 34718, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飒然吟 (会心 无双) 12450": {"id": 34714, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "白雪孤 (会心 无双) 12450": {"id": 34713, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浮尘世 (会心 无双) 12450": {"id": 34712, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叠翠幽 (会心 无双) 12450": {"id": 34708, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万法空 (会心 无双) 12450": {"id": 34706, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风棉棉钩·刀功 (破防 无双) 12300": {"id": 36859, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰海坚鱼·刀功 (破防 无双) 12300": {"id": 36858, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新春饼·火候 (破防 无双) 12300": {"id": 36856, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波渔网架·刀功 (破防 无双) 12300": {"id": 36853, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒绛腊厨装·刀功 (破防 无双) 12300": {"id": 36852, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意调味匣·火候 (破防 无双) 12300": {"id": 36850, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月竹筒饭·刀功 (破防 无双) 12300": {"id": 36842, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月竹筒饭·火候 (破防 无双) 12300": {"id": 36841, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳玉女勺·火候 (破防 无双) 12300": {"id": 36837, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚大菜刀·刀功 (破防 无双) 12300": {"id": 36836, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚大菜刀·火候 (破防 无双) 12300": {"id": 36835, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠玲珑筷·火候 (破防 无双) 12300": {"id": 36831, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提擀面杖·火候 (破防 无双) 12300": {"id": 36829, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "横素弓 (破防 破招) 12300": {"id": 36653, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "独雁弓 (会心 破招) 12300": {"id": 36652, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宿秋弓 (加速 破招) 12300": {"id": 36651, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涧寒弓 (破防 无双) 12300": {"id": 36650, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "戢羽 (会心 破招) 12300": {"id": 36649, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "有触即发 (加速 破招) 12300": {"id": 36648, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "控角弓 (破防 无双) 12300": {"id": 36647, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·姮娥弓箭 (会心 破招) 12300": {"id": 35707, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·裂锦刀 (会心 破招) 12300": {"id": 35706, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·寻丹卷 (会心 破招) 12300": {"id": 35704, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·醉缬伞 (会心 破招) 12300": {"id": 35701, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·长楚刀 (会心 破招) 12300": {"id": 35700, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐空琴 (会心 破招) 12300": {"id": 35698, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·鸣鸢弩 (会心 破招) 12300": {"id": 35690, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·辞金弩 (会心 破招) 12300": {"id": 35689, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·明河双兵 (会心 破招) 12300": {"id": 35685, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·清泉剑 (会心 破招) 12300": {"id": 35684, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·新蝉剑 (会心 破招) 12300": {"id": 35683, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·沅湘笔 (会心 破招) 12300": {"id": 35679, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·同悲棍 (会心 破招) 12300": {"id": 35677, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "复影刀 (破防 破招) 12300": {"id": 32693, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "冰漱卷 (破防 破招) 12300": {"id": 32691, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泽荣伞 (破防 破招) 12300": {"id": 32688, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡辰刀 (破防 破招) 12300": {"id": 32687, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "元懿琴 (破防 破招) 12300": {"id": 32685, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闻熙弩 (破防 破招) 12300": {"id": 32677, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夏持弩 (破防 破招) 12300": {"id": 32676, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "空翎双剑 (破防 破招) 12300": {"id": 32672, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "歌陶剑 (破防 破招) 12300": {"id": 32671, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "肆语剑 (破防 破招) 12300": {"id": 32670, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐波笔 (破防 破招) 12300": {"id": 32666, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "持空棍 (破防 破招) 12300": {"id": 32664, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "戏涛刀 (会心 破招) 12300": {"id": 32657, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淳语卷 (会心 破招) 12300": {"id": 32655, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "觅时伞 (会心 破招) 12300": {"id": 32652, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知溪刀 (会心 破招) 12300": {"id": 32651, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云疏琴 (会心 破招) 12300": {"id": 32649, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "栖芷弩 (会心 破招) 12300": {"id": 32641, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水漓弩 (会心 破招) 12300": {"id": 32640, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬月双剑 (会心 破招) 12300": {"id": 32636, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淮意剑 (会心 破招) 12300": {"id": 32635, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问筠剑 (会心 破招) 12300": {"id": 32634, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "诺枫笔 (会心 破招) 12300": {"id": 32630, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "越空棍 (会心 破招) 12300": {"id": 32628, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重行刀 (加速 破招) 12300": {"id": 32621, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "辞玥卷 (加速 破招) 12300": {"id": 32619, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "虞风伞 (加速 破招) 12300": {"id": 32616, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叙砚刀 (加速 破招) 12300": {"id": 32615, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谷泠琴 (加速 破招) 12300": {"id": 32613, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夜劫弩 (加速 破招) 12300": {"id": 32605, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "燕寒弩 (加速 破招) 12300": {"id": 32604, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潇颜双剑 (加速 破招) 12300": {"id": 32600, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清丛剑 (加速 破招) 12300": {"id": 32599, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 4597}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "瀚邱剑 (加速 破招) 12300": {"id": 32598, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "捧露笔 (加速 破招) 12300": {"id": 32594, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天飏棍 (加速 破招) 12300": {"id": 32592, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "双横刀 (破防 无双) 12300": {"id": 32585, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "引湖卷 (破防 无双) 12300": {"id": 32583, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "洛语伞 (破防 无双) 12300": {"id": 32580, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪陵刀 (破防 无双) 12300": {"id": 32579, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西染琴 (破防 无双) 12300": {"id": 32577, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疏叶弩 (破防 无双) 12300": {"id": 32569, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "末商弩 (破防 无双) 12300": {"id": 32568, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "江夕双剑 (破防 无双) 12300": {"id": 32564, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈雪剑 (破防 无双) 12300": {"id": 32563, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "陌尘剑 (破防 无双) 12300": {"id": 32562, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "棠月笔 (破防 无双) 12300": {"id": 32558, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "尽归棍 (破防 无双) 12300": {"id": 32556, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "断扰 (会心 破招) 12300": {"id": 32525, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枯群 (会心 破招) 12300": {"id": 32523, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "笙潮 (会心 破招) 12300": {"id": 32520, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾劲 (会心 破招) 12300": {"id": 32519, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "菰影 (会心 破招) 12300": {"id": 32517, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "纵意 (会心 破招) 12300": {"id": 32509, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐形 (会心 破招) 12300": {"id": 32508, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未阑 (会心 破招) 12300": {"id": 32504, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "随云 (会心 破招) 12300": {"id": 32503, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂月 (会心 破招) 12300": {"id": 32502, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧江 (会心 破招) 12300": {"id": 32498, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "释梵 (会心 破招) 12300": {"id": 32496, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "刃风 (加速 破招) 12300": {"id": 32489, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寄心 (加速 破招) 12300": {"id": 32487, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "醉天仙 (加速 破招) 12300": {"id": 32484, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云雨未消 (加速 破招) 12300": {"id": 32483, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "音犹 (加速 破招) 12300": {"id": 32481, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "一枕愁 (加速 破招) 12300": {"id": 32473, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒山转 (加速 破招) 12300": {"id": 32472, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谁诉 (加速 破招) 12300": {"id": 32468, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂烟尘 (加速 破招) 12300": {"id": 32467, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮钓青云 (加速 破招) 12300": {"id": 32466, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "野老心 (加速 破招) 12300": {"id": 32462, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "僧不欺 (加速 破招) 12300": {"id": 32460, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐锋破 (破防 无双) 12300": {"id": 32453, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重卷空闻 (破防 无双) 12300": {"id": 32451, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水流云 (破防 无双) 12300": {"id": 32448, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山川形胜 (破防 无双) 12300": {"id": 32447, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无意风絮 (破防 无双) 12300": {"id": 32445, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "半篙雨 (破防 无双) 12300": {"id": 32437, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "催晚疾 (破防 无双) 12300": {"id": 32436, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清镜晓 (破防 无双) 12300": {"id": 32432, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涧东游 (破防 无双) 12300": {"id": 32431, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "影照霞飞 (破防 无双) 12300": {"id": 32430, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "意非畴 (破防 无双) 12300": {"id": 32426, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "因灯舍 (破防 无双) 12300": {"id": 32424, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 11900": {"id": 38046, "school": "万灵", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5363, "physical_critical_strike_base": 5598, "physical_overcome_base": 5598, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 11900": {"id": 38045, "school": "刀宗", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5277, "physical_critical_strike_base": 5598, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 11900": {"id": 38043, "school": "药宗", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6332, "magical_critical_strike_base": 5212, "magical_overcome_base": 6177, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 11900": {"id": 38040, "school": "蓬莱", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5791, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11900": {"id": 38039, "school": "霸刀", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5405, "physical_overcome_base": 6177, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 11900": {"id": 38037, "school": "长歌", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1281, "weapon_damage_rand": 854}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6228, "magical_critical_strike_base": 5405, "magical_overcome_base": 5984, "haste_base": 2123}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 11900": {"id": 38029, "school": "唐门", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5017, "physical_critical_strike_base": 5598, "physical_overcome_base": 6370, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 11900": {"id": 38028, "school": "唐门", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6228, "physical_critical_strike_base": 5212, "magical_overcome_base": 6370, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 11900": {"id": 38024, "school": "七秀", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1666, "weapon_damage_rand": 1111}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6436, "magical_critical_strike_base": 5212, "magical_overcome_base": 5791, "haste_base": 2123}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 11900": {"id": 38023, "school": "纯阳", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3332, "weapon_damage_rand": 2221}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5104, "physical_critical_strike_base": 5984, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 11900": {"id": 38022, "school": "纯阳", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1666, "weapon_damage_rand": 1111}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6228, "magical_critical_strike_base": 5984, "magical_overcome_base": 5598, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 11900": {"id": 38018, "school": "万花", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1281, "weapon_damage_rand": 854}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6436, "magical_critical_strike_base": 5212, "magical_overcome_base": 5984, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 11900": {"id": 38016, "school": "少林", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 4357, "weapon_damage_rand": 2904}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6643, "magical_critical_strike_base": 5019, "magical_overcome_base": 5791, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏 (破防 会心 加速) 11650": {"id": 37104, "school": "万灵", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5250, "physical_critical_strike_base": 5480, "physical_overcome_base": 5480, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5463, 17471], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣 (破防 会心 加速) 11650": {"id": 37103, "school": "刀宗", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5166, "physical_critical_strike_base": 5480, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3185, 17359], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌 (破防 会心 加速) 11650": {"id": 37101, "school": "药宗", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6199, "magical_critical_strike_base": 5102, "magical_overcome_base": 6047, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2841, 17459], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星 (破防 会心 加速) 11650": {"id": 37098, "school": "蓬莱", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5669, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4820, 4821, 17410], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 11650": {"id": 37097, "school": "霸刀", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5291, "physical_overcome_base": 6047, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂 (破防 会心 加速) 11650": {"id": 37095, "school": "长歌", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1254, "weapon_damage_rand": 836}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6097, "magical_critical_strike_base": 5291, "magical_overcome_base": 5858, "haste_base": 2079}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 17314], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦 (破防 会心 加速) 11650": {"id": 37087, "school": "唐门", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"strength_base": 1356, "physical_attack_power_base": 4912, "physical_critical_strike_base": 5480, "physical_overcome_base": 6236, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1145, 1978, 17436], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋 (破防 会心 加速) 11650": {"id": 37086, "school": "唐门", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6097, "physical_critical_strike_base": 5102, "magical_overcome_base": 6236, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1146, 1978, 17430], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷 (破防 会心 加速) 11650": {"id": 37082, "school": "七秀", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1631, "weapon_damage_rand": 1087}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6300, "magical_critical_strike_base": 5102, "magical_overcome_base": 5669, "haste_base": 2079}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1137, 1977, 17381], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎 (破防 会心 加速) 11650": {"id": 37081, "school": "纯阳", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3262, "weapon_damage_rand": 2174}, "magic": {"agility_base": 1356, "physical_attack_power_base": 4997, "physical_critical_strike_base": 5858, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1135, 17313], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉 (破防 会心 加速) 11650": {"id": 37080, "school": "纯阳", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1631, "weapon_damage_rand": 1087}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6097, "magical_critical_strike_base": 5858, "magical_overcome_base": 5480, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1136, 17312], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕 (破防 会心 加速) 11650": {"id": 37076, "school": "万花", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1254, "weapon_damage_rand": 836}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6300, "magical_critical_strike_base": 5102, "magical_overcome_base": 5858, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1131, 1979, 17400], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照 (破防 会心 加速) 11650": {"id": 37074, "school": "少林", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 4265, "weapon_damage_rand": 2843}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6503, "magical_critical_strike_base": 4913, "magical_overcome_base": 5669, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1139, 17352], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 11300": {"id": 36797, "school": "万灵", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"agility_base": 1315, "physical_attack_power_base": 5093, "physical_critical_strike_base": 5315, "physical_overcome_base": 5315, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 11300": {"id": 36598, "school": "刀宗", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 5011, "physical_critical_strike_base": 5315, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 11300": {"id": 36596, "school": "药宗", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 6013, "magical_critical_strike_base": 4949, "magical_overcome_base": 5865, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 11300": {"id": 36593, "school": "蓬莱", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"agility_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5499, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11300": {"id": 36592, "school": "霸刀", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5132, "physical_overcome_base": 5865, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 11300": {"id": 36590, "school": "长歌", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1217, "weapon_damage_rand": 811}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 5914, "magical_critical_strike_base": 5132, "magical_overcome_base": 5682, "haste_base": 2016}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 11300": {"id": 36582, "school": "唐门", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4764, "physical_critical_strike_base": 5315, "physical_overcome_base": 6049, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 11300": {"id": 36581, "school": "唐门", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 5914, "physical_critical_strike_base": 4949, "magical_overcome_base": 6049, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 11300": {"id": 36577, "school": "七秀", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1582, "weapon_damage_rand": 1055}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 6111, "magical_critical_strike_base": 4949, "magical_overcome_base": 5499, "haste_base": 2016}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 11300": {"id": 36576, "school": "纯阳", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3164, "weapon_damage_rand": 2109}, "magic": {"agility_base": 1315, "physical_attack_power_base": 4846, "physical_critical_strike_base": 5682, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 11300": {"id": 36575, "school": "纯阳", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1582, "weapon_damage_rand": 1055}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 5914, "magical_critical_strike_base": 5682, "magical_overcome_base": 5315, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 11300": {"id": 36571, "school": "万花", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1217, "weapon_damage_rand": 811}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 6111, "magical_critical_strike_base": 4949, "magical_overcome_base": 5682, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 11300": {"id": 36569, "school": "少林", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 4137, "weapon_damage_rand": 2758}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 6308, "magical_critical_strike_base": 4766, "magical_overcome_base": 5499, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣 (破防 会心 加速) 10900": {"id": 37072, "school": "刀宗", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4833, "physical_critical_strike_base": 5127, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3185, 17359], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏 (破防 会心 加速) 10900": {"id": 37073, "school": "万灵", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4912, "physical_critical_strike_base": 5127, "physical_overcome_base": 5127, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5463, 17471], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌 (破防 会心 加速) 10900": {"id": 37070, "school": "药宗", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5800, "magical_critical_strike_base": 4774, "magical_overcome_base": 5658, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2841, 17459], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照 (破防 会心 加速) 10900": {"id": 37043, "school": "少林", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3990, "weapon_damage_rand": 2660}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 6085, "magical_critical_strike_base": 4597, "magical_overcome_base": 5304, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1139, 17352], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕 (破防 会心 加速) 10900": {"id": 37045, "school": "万花", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1174, "weapon_damage_rand": 782}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 5895, "magical_critical_strike_base": 4774, "magical_overcome_base": 5481, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1131, 1979, 17400], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉 (破防 会心 加速) 10900": {"id": 37049, "school": "纯阳", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1526, "weapon_damage_rand": 1017}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5705, "magical_critical_strike_base": 5481, "magical_overcome_base": 5127, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1136, 17312], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎 (破防 会心 加速) 10900": {"id": 37050, "school": "纯阳", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3052, "weapon_damage_rand": 2034}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4675, "physical_critical_strike_base": 5481, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1135, 17313], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷 (破防 会心 加速) 10900": {"id": 37051, "school": "七秀", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1526, "weapon_damage_rand": 1017}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5895, "magical_critical_strike_base": 4774, "magical_overcome_base": 5304, "haste_base": 1945}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1137, 1977, 17381], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋 (破防 会心 加速) 10900": {"id": 37055, "school": "唐门", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 5705, "physical_critical_strike_base": 4774, "magical_overcome_base": 5834, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1146, 1978, 17430], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦 (破防 会心 加速) 10900": {"id": 37056, "school": "唐门", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4596, "physical_critical_strike_base": 5127, "physical_overcome_base": 5834, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1145, 1978, 17436], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂 (破防 会心 加速) 10900": {"id": 37064, "school": "长歌", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1174, "weapon_damage_rand": 782}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5705, "magical_critical_strike_base": 4950, "magical_overcome_base": 5481, "haste_base": 1945}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 17314], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10900": {"id": 37066, "school": "霸刀", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 4950, "physical_overcome_base": 5658, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星 (破防 会心 加速) 10900": {"id": 37067, "school": "蓬莱", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 5304, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4820, 4821, 17410], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 10800": {"id": 36796, "school": "万灵", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4867, "physical_critical_strike_base": 5080, "physical_overcome_base": 5080, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 10800": {"id": 36568, "school": "刀宗", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4789, "physical_critical_strike_base": 5080, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 10800": {"id": 36566, "school": "药宗", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5747, "magical_critical_strike_base": 4730, "magical_overcome_base": 5606, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 10800": {"id": 36563, "school": "蓬莱", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 5255, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10800": {"id": 36562, "school": "霸刀", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 4905, "physical_overcome_base": 5606, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 10800": {"id": 36560, "school": "长歌", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1163, "weapon_damage_rand": 775}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5653, "magical_critical_strike_base": 4905, "magical_overcome_base": 5431, "haste_base": 1927}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 10800": {"id": 36552, "school": "唐门", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4554, "physical_critical_strike_base": 5080, "physical_overcome_base": 5781, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 10800": {"id": 36551, "school": "唐门", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 5653, "physical_critical_strike_base": 4730, "magical_overcome_base": 5781, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 10800": {"id": 36547, "school": "七秀", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1512, "weapon_damage_rand": 1008}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5841, "magical_critical_strike_base": 4730, "magical_overcome_base": 5255, "haste_base": 1927}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 10800": {"id": 36546, "school": "纯阳", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3024, "weapon_damage_rand": 2016}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4632, "physical_critical_strike_base": 5431, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 10800": {"id": 36545, "school": "纯阳", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1512, "weapon_damage_rand": 1008}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5653, "magical_critical_strike_base": 5431, "magical_overcome_base": 5080, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 10800": {"id": 36541, "school": "万花", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1163, "weapon_damage_rand": 775}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 5841, "magical_critical_strike_base": 4730, "magical_overcome_base": 5431, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 10800": {"id": 36539, "school": "少林", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3954, "weapon_damage_rand": 2636}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 6029, "magical_critical_strike_base": 4555, "magical_overcome_base": 5255, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 10300": {"id": 35598, "school": "少林", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3771, "weapon_damage_rand": 2514}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5750, "magical_critical_strike_base": 4344, "magical_overcome_base": 5012, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 10300": {"id": 35600, "school": "万花", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5179, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 10300": {"id": 35604, "school": "纯阳", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 5179, "magical_overcome_base": 4845, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 10300": {"id": 35605, "school": "纯阳", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2884, "weapon_damage_rand": 1922}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4418, "physical_critical_strike_base": 5179, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 10300": {"id": 35606, "school": "七秀", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5012, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 10300": {"id": 35610, "school": "唐门", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5391, "physical_critical_strike_base": 4511, "magical_overcome_base": 5513, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 10300": {"id": 35611, "school": "唐门", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4343, "physical_critical_strike_base": 4845, "physical_overcome_base": 5513, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 10300": {"id": 35619, "school": "长歌", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 4678, "magical_overcome_base": 5179, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10300": {"id": 35621, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 10300": {"id": 35622, "school": "蓬莱", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5012, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 10300": {"id": 35625, "school": "药宗", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5481, "magical_critical_strike_base": 4511, "magical_overcome_base": 5346, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 10300": {"id": 35627, "school": "刀宗", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4567, "physical_critical_strike_base": 4845, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10300": {"id": 37035, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 10300": {"id": 36795, "school": "万灵", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4642, "physical_critical_strike_base": 4845, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏 (破防 会心 加速) 10300": {"id": 37042, "school": "万灵", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4642, "physical_critical_strike_base": 4845, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣 (破防 会心 加速) 10300": {"id": 37041, "school": "刀宗", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4567, "physical_critical_strike_base": 4845, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌 (破防 会心 加速) 10300": {"id": 37039, "school": "药宗", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5481, "magical_critical_strike_base": 4511, "magical_overcome_base": 5346, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星 (破防 会心 加速) 10300": {"id": 37036, "school": "蓬莱", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5012, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照 (破防 会心 加速) 10300": {"id": 37012, "school": "少林", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3771, "weapon_damage_rand": 2514}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5750, "magical_critical_strike_base": 4344, "magical_overcome_base": 5012, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕 (破防 会心 加速) 10300": {"id": 37014, "school": "万花", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5179, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉 (破防 会心 加速) 10300": {"id": 37018, "school": "纯阳", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 5179, "magical_overcome_base": 4845, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎 (破防 会心 加速) 10300": {"id": 37019, "school": "纯阳", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2884, "weapon_damage_rand": 1922}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4418, "physical_critical_strike_base": 5179, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷 (破防 会心 加速) 10300": {"id": 37020, "school": "七秀", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5012, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋 (破防 会心 加速) 10300": {"id": 37024, "school": "唐门", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5391, "physical_critical_strike_base": 4511, "magical_overcome_base": 5513, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦 (破防 会心 加速) 10300": {"id": 37025, "school": "唐门", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4343, "physical_critical_strike_base": 4845, "physical_overcome_base": 5513, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂 (破防 会心 加速) 10300": {"id": 37033, "school": "长歌", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 4678, "magical_overcome_base": 5179, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器 (破防 会心 加速) 10100": {"id": 38273, "school": "刀宗", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"strength_base": 1175, "physical_attack_power_base": 4479, "physical_critical_strike_base": 4751, "physical_overcome_base": 4915, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 9800": {"id": 35589, "school": "长歌", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1055, "weapon_damage_rand": 703}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5129, "magical_critical_strike_base": 4451, "magical_overcome_base": 4928, "haste_base": 1749}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 9800": {"id": 35581, "school": "唐门", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4132, "physical_critical_strike_base": 4610, "physical_overcome_base": 5246, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 9800": {"id": 35580, "school": "唐门", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5129, "physical_critical_strike_base": 4292, "magical_overcome_base": 5246, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 9800": {"id": 35576, "school": "七秀", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1372, "weapon_damage_rand": 914}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5300, "magical_critical_strike_base": 4292, "magical_overcome_base": 4769, "haste_base": 1749}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 9800": {"id": 35575, "school": "纯阳", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2743, "weapon_damage_rand": 1829}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4203, "physical_critical_strike_base": 4928, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 9800": {"id": 35574, "school": "纯阳", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1372, "weapon_damage_rand": 914}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5129, "magical_critical_strike_base": 4928, "magical_overcome_base": 4610, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9800": {"id": 35591, "school": "霸刀", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4451, "physical_overcome_base": 5087, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 9800": {"id": 35592, "school": "蓬莱", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4769, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 9800": {"id": 35595, "school": "药宗", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5215, "magical_critical_strike_base": 4292, "magical_overcome_base": 5087, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 9800": {"id": 35597, "school": "刀宗", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4345, "physical_critical_strike_base": 4610, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 9800": {"id": 36794, "school": "万灵", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4417, "physical_critical_strike_base": 4610, "physical_overcome_base": 4610, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 9800": {"id": 35570, "school": "万花", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1055, "weapon_damage_rand": 703}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5300, "magical_critical_strike_base": 4292, "magical_overcome_base": 4928, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 9800": {"id": 35568, "school": "少林", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3588, "weapon_damage_rand": 2392}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5471, "magical_critical_strike_base": 4133, "magical_overcome_base": 4769, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣 (破防 会心 加速) 9700": {"id": 37010, "school": "刀宗", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4301, "physical_critical_strike_base": 4563, "physical_overcome_base": 4720, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌 (破防 会心 加速) 9700": {"id": 37008, "school": "药宗", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"spirit_base": 1129, "magical_attack_power_base": 5161, "magical_critical_strike_base": 4248, "magical_overcome_base": 5035, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏 (破防 会心 加速) 9700": {"id": 37011, "school": "万灵", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4372, "physical_critical_strike_base": 4563, "physical_overcome_base": 4563, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星 (破防 会心 加速) 9700": {"id": 37005, "school": "蓬莱", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4720, "physical_overcome_base": 4720, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9700": {"id": 37004, "school": "霸刀", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4405, "physical_overcome_base": 5035, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂 (破防 会心 加速) 9700": {"id": 37002, "school": "长歌", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 1044, "weapon_damage_rand": 696}, "magic": {"spirit_base": 1129, "magical_attack_power_base": 5077, "magical_critical_strike_base": 4405, "magical_overcome_base": 4877, "haste_base": 1731}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕 (破防 会心 加速) 9700": {"id": 36983, "school": "万花", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 1044, "weapon_damage_rand": 696}, "magic": {"spunk_base": 1129, "magical_attack_power_base": 5246, "magical_critical_strike_base": 4248, "magical_overcome_base": 4877, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋 (破防 会心 加速) 9700": {"id": 36993, "school": "唐门", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"spunk_base": 1129, "magical_attack_power_base": 5077, "physical_critical_strike_base": 4248, "magical_overcome_base": 5192, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦 (破防 会心 加速) 9700": {"id": 36994, "school": "唐门", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4090, "physical_critical_strike_base": 4563, "physical_overcome_base": 5192, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器 (破防 会心 加速) 9500": {"id": 38219, "school": "纯阳", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 886}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 4972, "magical_critical_strike_base": 4777, "magical_overcome_base": 4469, "haste_base": 1541}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦 (破防 会心 加速) 9300": {"id": 36793, "school": "万灵", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4191, "physical_critical_strike_base": 4375, "physical_overcome_base": 4375, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀 (破防 会心 加速) 9300": {"id": 34433, "school": "刀宗", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4124, "physical_critical_strike_base": 4375, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生 (破防 会心 加速) 9300": {"id": 34431, "school": "药宗", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4949, "magical_critical_strike_base": 4073, "magical_overcome_base": 4827, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯 (破防 会心 加速) 9300": {"id": 34428, "school": "蓬莱", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4526, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9300": {"id": 34427, "school": "霸刀", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4224, "physical_overcome_base": 4827, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今 (破防 会心 加速) 9300": {"id": 34425, "school": "长歌", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1001, "weapon_damage_rand": 668}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4867, "magical_critical_strike_base": 4224, "magical_overcome_base": 4676, "haste_base": 1659}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜 (破防 会心 加速) 9300": {"id": 34417, "school": "唐门", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"strength_base": 1082, "physical_attack_power_base": 3921, "physical_critical_strike_base": 4375, "physical_overcome_base": 4978, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠 (破防 会心 加速) 9300": {"id": 34416, "school": "唐门", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 4867, "physical_critical_strike_base": 4073, "magical_overcome_base": 4978, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露 (破防 会心 加速) 9300": {"id": 34412, "school": "七秀", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1302, "weapon_damage_rand": 868}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 5030, "magical_critical_strike_base": 4073, "magical_overcome_base": 4526, "haste_base": 1659}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃 (破防 会心 加速) 9300": {"id": 34411, "school": "纯阳", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2603, "weapon_damage_rand": 1736}, "magic": {"agility_base": 1082, "physical_attack_power_base": 3989, "physical_critical_strike_base": 4676, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游 (破防 会心 加速) 9300": {"id": 34410, "school": "纯阳", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1302, "weapon_damage_rand": 868}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4867, "magical_critical_strike_base": 4676, "magical_overcome_base": 4375, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远 (破防 会心 加速) 9300": {"id": 34406, "school": "万花", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1001, "weapon_damage_rand": 668}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 5030, "magical_critical_strike_base": 4073, "magical_overcome_base": 4676, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境 (破防 会心 加速) 9300": {"id": 34404, "school": "少林", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3405, "weapon_damage_rand": 2270}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 5192, "magical_critical_strike_base": 3922, "magical_overcome_base": 4526, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕 (破防 会心 加速) 9100": {"id": 36952, "school": "万花", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 980, "weapon_damage_rand": 653}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 4921, "magical_critical_strike_base": 3985, "magical_overcome_base": 4576, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照 (破防 会心 加速) 9100": {"id": 36950, "school": "少林", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 3331, "weapon_damage_rand": 2221}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 5080, "magical_critical_strike_base": 3838, "magical_overcome_base": 4428, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉 (破防 会心 加速) 9100": {"id": 36956, "school": "纯阳", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1274, "weapon_damage_rand": 849}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4763, "magical_critical_strike_base": 4576, "magical_overcome_base": 4281, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎 (破防 会心 加速) 9100": {"id": 36957, "school": "纯阳", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2547, "weapon_damage_rand": 1698}, "magic": {"agility_base": 1059, "physical_attack_power_base": 3903, "physical_critical_strike_base": 4576, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷 (破防 会心 加速) 9100": {"id": 36958, "school": "七秀", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1274, "weapon_damage_rand": 849}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4921, "magical_critical_strike_base": 3985, "magical_overcome_base": 4428, "haste_base": 1624}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋 (破防 会心 加速) 9100": {"id": 36962, "school": "唐门", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 4763, "physical_critical_strike_base": 3985, "magical_overcome_base": 4871, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦 (破防 会心 加速) 9100": {"id": 36963, "school": "唐门", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3837, "physical_critical_strike_base": 4281, "physical_overcome_base": 4871, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂 (破防 会心 加速) 9100": {"id": 36971, "school": "长歌", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 980, "weapon_damage_rand": 653}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4763, "magical_critical_strike_base": 4133, "magical_overcome_base": 4576, "haste_base": 1624}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9100": {"id": 36973, "school": "霸刀", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4133, "physical_overcome_base": 4723, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星 (破防 会心 加速) 9100": {"id": 36974, "school": "蓬莱", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"agility_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4428, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌 (破防 会心 加速) 9100": {"id": 36977, "school": "药宗", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4842, "magical_critical_strike_base": 3985, "magical_overcome_base": 4723, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣 (破防 会心 加速) 9100": {"id": 36979, "school": "刀宗", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 4035, "physical_critical_strike_base": 4281, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏 (破防 会心 加速) 9100": {"id": 36980, "school": "万灵", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"agility_base": 1059, "physical_attack_power_base": 4101, "physical_critical_strike_base": 4281, "physical_overcome_base": 4281, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"大风吟#37291(会心 破招) 15800": {"id": 37291, "school": "万灵", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未试风霜#37290(会心 破招) 15800": {"id": 37290, "school": "刀宗", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云深路杳#37288(会心 破招) 15800": {"id": 37288, "school": "药宗", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "相逢人间#37285(会心 破招) 15800": {"id": 37285, "school": "蓬莱", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "世事浮云#37284(会心 破招) 15800": {"id": 37284, "school": "霸刀", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "向天涯#37282(会心 破招) 15800": {"id": 37282, "school": "长歌", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1225, "weapon_damage_rand": 817}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照夜红#37280(会心 破招) 15800": {"id": 37280, "school": "苍云", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "何问名#37274(会心 破招) 15800": {"id": 37274, "school": "唐门", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "竹风清#37273(会心 破招) 15800": {"id": 37273, "school": "唐门", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 2450, "weapon_damage_rand": 1633}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清如洗#37269(会心 破招) 15800": {"id": 37269, "school": "七秀", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1593, "weapon_damage_rand": 1062}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "入尘寰#37268(会心 破招) 15800": {"id": 37268, "school": "纯阳", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3185, "weapon_damage_rand": 2123}, "magic": {"agility_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "仙人来路#37267(会心 破招) 15800": {"id": 37267, "school": "纯阳", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1593, "weapon_damage_rand": 1062}, "magic": {"spirit_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自笑痴#37263(会心 破招) 15800": {"id": 37263, "school": "万花", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 1225, "weapon_damage_rand": 817}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寂灭身心#37261(会心 破招) 15800": {"id": 37261, "school": "少林", "kind": "内功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 4165, "weapon_damage_rand": 2777}, "magic": {"spunk_base": 1324, "magical_attack_power_base": 6152, "magical_critical_strike_base": 6643, "surplus_base": 7086}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山灵语#37340(破防 破招) 15600": {"id": 37340, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问刀#37339(破防 破招) 15600": {"id": 37339, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "吹落苍耳#37337(破防 破招) 15600": {"id": 37337, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "横分青云#37334(破防 破招) 15600": {"id": 37334, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒云漠#37333(破防 破招) 15600": {"id": 37333, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浸琉岚#37331(破防 破招) 15600": {"id": 37331, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拥天横#37329(破防 破招) 15600": {"id": 37329, "school": "苍云", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "窗间絮#37323(破防 破招) 15600": {"id": 37323, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万缕牵#37322(破防 破招) 15600": {"id": 37322, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "幽香暗逐#37318(破防 破招) 15600": {"id": 37318, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风露夜萧#37317(破防 破招) 15600": {"id": 37317, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清寒细逐#37316(破防 破招) 15600": {"id": 37316, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "与风遥#37312(破防 破招) 15600": {"id": 37312, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自在妙法#37310(破防 破招) 15600": {"id": 37310, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "surplus_base": 6996}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山有神通#37252(破防 无双) 15600": {"id": 37252, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临渊问境#37251(破防 无双) 15600": {"id": 37251, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "好春光#37249(破防 无双) 15600": {"id": 37249, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "俯望尘世#37246(破防 无双) 15600": {"id": 37246, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里长空#37245(破防 无双) 15600": {"id": 37245, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "古来知音#37243(破防 无双) 15600": {"id": 37243, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乘风破浪#37241(破防 无双) 15600": {"id": 37241, "school": "苍云", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "掠空#37235(破防 无双) 15600": {"id": 37235, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风过竹林#37234(破防 无双) 15600": {"id": 37234, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "前尘旧事#37230(破防 无双) 15600": {"id": 37230, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乘梦十洲#37229(破防 无双) 15600": {"id": 37229, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "仙家楼阁#37228(破防 无双) 15600": {"id": 37228, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曰皆可#37224(破防 无双) 15600": {"id": 37224, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "尘劫#37222(破防 无双) 15600": {"id": 37222, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_overcome_base": 6559, "strain_base": 6996}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2604], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪无弓#37221(会心 无双) 15600": {"id": 37221, "school": "万灵", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烈希刀#37220(会心 无双) 15600": {"id": 37220, "school": "刀宗", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "何疏卷#37218(会心 无双) 15600": {"id": 37218, "school": "药宗", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "书空伞#37215(会心 无双) 15600": {"id": 37215, "school": "蓬莱", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "念真刀#37214(会心 无双) 15600": {"id": 37214, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "倾杯琴#37212(会心 无双) 15600": {"id": 37212, "school": "长歌", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "所愿盾刀#37210(会心 无双) 15600": {"id": 37210, "school": "苍云", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千回弩#37204(会心 无双) 15600": {"id": 37204, "school": "唐门", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月英弩#37203(会心 无双) 15600": {"id": 37203, "school": "唐门", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 2419, "weapon_damage_rand": 1613}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "柔情双剑#37199(会心 无双) 15600": {"id": 37199, "school": "七秀", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雨弦剑#37198(会心 无双) 15600": {"id": 37198, "school": "纯阳", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3145, "weapon_damage_rand": 2097}, "magic": {"agility_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "两情剑#37197(会心 无双) 15600": {"id": 37197, "school": "纯阳", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1572, "weapon_damage_rand": 1048}, "magic": {"spirit_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云儿笔#37193(会心 无双) 15600": {"id": 37193, "school": "万花", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 1210, "weapon_damage_rand": 806}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "镜台杖#37191(会心 无双) 15600": {"id": 37191, "school": "少林", "kind": "内功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 4112, "weapon_damage_rand": 2742}, "magic": {"spunk_base": 1307, "magical_attack_power_base": 6074, "magical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞虹#35820(会心 破招) 14150": {"id": 35820, "school": "万灵", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟雨寒舟#35819(会心 破招) 14150": {"id": 35819, "school": "刀宗", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "晴翠#35817(会心 破招) 14150": {"id": 35817, "school": "药宗", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鲸歌海雾#35814(会心 破招) 14150": {"id": 35814, "school": "蓬莱", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重霜#35813(会心 破招) 14150": {"id": 35813, "school": "霸刀", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "笙歌沸#35811(会心 破招) 14150": {"id": 35811, "school": "长歌", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1097, "weapon_damage_rand": 731}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "征戍万里#35809(会心 破招) 14150": {"id": 35809, "school": "苍云", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "杀机隐#35803(会心 破招) 14150": {"id": 35803, "school": "唐门", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "茂林#35802(会心 破招) 14150": {"id": 35802, "school": "唐门", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2194, "weapon_damage_rand": 1463}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "倾杯邀月#35798(会心 破招) 14150": {"id": 35798, "school": "七秀", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1426, "weapon_damage_rand": 951}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宵星#35797(会心 破招) 14150": {"id": 35797, "school": "纯阳", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 2852, "weapon_damage_rand": 1902}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自化乾坤#35796(会心 破招) 14150": {"id": 35796, "school": "纯阳", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1426, "weapon_damage_rand": 951}, "magic": {"spirit_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知晚#35792(会心 破招) 14150": {"id": 35792, "school": "万花", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 1097, "weapon_damage_rand": 731}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无痴#35790(会心 破招) 14150": {"id": 35790, "school": "少林", "kind": "内功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3730, "weapon_damage_rand": 2487}, "magic": {"spunk_base": 1186, "magical_attack_power_base": 5510, "magical_critical_strike_base": 5949, "surplus_base": 6346}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·欲明#37441(破防 无双) 13950": {"id": 37441, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·山中仙#37440(破防 无双) 13950": {"id": 37440, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·征帆#37438(破防 无双) 13950": {"id": 37438, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海底石#37435(破防 无双) 13950": {"id": 37435, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·觅安期#37434(破防 无双) 13950": {"id": 37434, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·梅梢#37432(破防 无双) 13950": {"id": 37432, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·空回首#37430(破防 无双) 13950": {"id": 37430, "school": "苍云", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·雁边#37424(破防 无双) 13950": {"id": 37424, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·何纵横#37423(破防 无双) 13950": {"id": 37423, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·升平#37419(破防 无双) 13950": {"id": 37419, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·云霄行#37418(破防 无双) 13950": {"id": 37418, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·流晶#37417(破防 无双) 13950": {"id": 37417, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·三生梦#37413(破防 无双) 13950": {"id": 37413, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·沙行#37411(破防 无双) 13950": {"id": 37411, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危辞弓#37178(会心 无双) 13950": {"id": 37178, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危皓刀#37177(会心 无双) 13950": {"id": 37177, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危明卷#37175(会心 无双) 13950": {"id": 37175, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危潮伞#37172(会心 无双) 13950": {"id": 37172, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危魂刀#37171(会心 无双) 13950": {"id": 37171, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危韵琴#37169(会心 无双) 13950": {"id": 37169, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危屿刀盾#37167(会心 无双) 13950": {"id": 37167, "school": "苍云", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危森弩#37161(会心 无双) 13950": {"id": 37161, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危壑弩#37160(会心 无双) 13950": {"id": 37160, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危霜双剑#37156(会心 无双) 13950": {"id": 37156, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雪剑#37155(会心 无双) 13950": {"id": 37155, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危崖剑#37154(会心 无双) 13950": {"id": 37154, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危枝笔#37150(会心 无双) 13950": {"id": 37150, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危莲棍#37148(会心 无双) 13950": {"id": 37148, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闲观日月#35871(破防 破招) 13950": {"id": 35871, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里风#35870(破防 破招) 13950": {"id": 35870, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧云幽处#35868(破防 破招) 13950": {"id": 35868, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万古云#35865(破防 破招) 13950": {"id": 35865, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒#35864(破防 破招) 13950": {"id": 35864, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "皓魄流连#35862(破防 破招) 13950": {"id": 35862, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万重暮雪#35860(破防 破招) 13950": {"id": 35860, "school": "苍云", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "入云平#35854(破防 破招) 13950": {"id": 35854, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千仞峡#35853(破防 破招) 13950": {"id": 35853, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月半明#35849(破防 破招) 13950": {"id": 35849, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "琼楼仙踪#35848(破防 破招) 13950": {"id": 35848, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "松风吹雨#35847(破防 破招) 13950": {"id": 35847, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "荡波行#35843(破防 破招) 13950": {"id": 35843, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缘法三千#35841(破防 破招) 13950": {"id": 35841, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "surplus_base": 6256}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "穿叶雨#35781(破防 无双) 13950": {"id": 35781, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾浪远#35780(破防 无双) 13950": {"id": 35780, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "跃灵春#35778(破防 无双) 13950": {"id": 35778, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清秋海#35775(破防 无双) 13950": {"id": 35775, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风柳绪#35774(破防 无双) 13950": {"id": 35774, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疏弦意#35772(破防 无双) 13950": {"id": 35772, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "聆神愿#35770(破防 无双) 13950": {"id": 35770, "school": "苍云", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒夜隐#35764(破防 无双) 13950": {"id": 35764, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雾行客#35763(破防 无双) 13950": {"id": 35763, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "含月霜#35759(破防 无双) 13950": {"id": 35759, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "留枝鹤#35758(破防 无双) 13950": {"id": 35758, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "伴雪声#35757(破防 无双) 13950": {"id": 35757, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "览墨书#35753(破防 无双) 13950": {"id": 35753, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "静己身#35751(破防 无双) 13950": {"id": 35751, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_overcome_base": 5865, "strain_base": 6256}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2539], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金虹弓#35750(会心 无双) 13950": {"id": 35750, "school": "万灵", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "火云刀#35749(会心 无双) 13950": {"id": 35749, "school": "刀宗", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桃风卷#35747(会心 无双) 13950": {"id": 35747, "school": "药宗", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "萦回伞#35744(会心 无双) 13950": {"id": 35744, "school": "蓬莱", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千雷刀#35743(会心 无双) 13950": {"id": 35743, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "华韵琴#35741(会心 无双) 13950": {"id": 35741, "school": "长歌", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "破天盾刀#35739(会心 无双) 13950": {"id": 35739, "school": "苍云", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "掠远弩#35733(会心 无双) 13950": {"id": 35733, "school": "唐门", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "弑心弩#35732(会心 无双) 13950": {"id": 35732, "school": "唐门", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2163, "weapon_damage_rand": 1442}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "映川双剑#35728(会心 无双) 13950": {"id": 35728, "school": "七秀", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悠行剑#35727(会心 无双) 13950": {"id": 35727, "school": "纯阳", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 2812, "weapon_damage_rand": 1875}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "明然剑#35726(会心 无双) 13950": {"id": 35726, "school": "纯阳", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1406, "weapon_damage_rand": 937}, "magic": {"spirit_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山寂笔#35722(会心 无双) 13950": {"id": 35722, "school": "万花", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 1082, "weapon_damage_rand": 721}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "空悟法杖#35720(会心 无双) 13950": {"id": 35720, "school": "少林", "kind": "内功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3677, "weapon_damage_rand": 2452}, "magic": {"spunk_base": 1169, "magical_attack_power_base": 5432, "magical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·紫竹弓#37141(会心 破招) 13750": {"id": 37141, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碧晨刀#37140(会心 破招) 13750": {"id": 37140, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·芳菲卷#37138(会心 破招) 13750": {"id": 37138, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飘零伞#37135(会心 破招) 13750": {"id": 37135, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐虎刀#37134(会心 破招) 13750": {"id": 37134, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞鸿琴#37132(会心 破招) 13750": {"id": 37132, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1066, "weapon_damage_rand": 711}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·狂澜刀盾#37130(会心 破招) 13750": {"id": 37130, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·冰焰弩#37124(会心 破招) 13750": {"id": 37124, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·烈寒弩#37123(会心 破招) 13750": {"id": 37123, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2132, "weapon_damage_rand": 1421}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·翔天双剑#37119(会心 破招) 13750": {"id": 37119, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1386, "weapon_damage_rand": 924}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·寒星剑#37118(会心 破招) 13750": {"id": 37118, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 2772, "weapon_damage_rand": 1848}, "magic": {"agility_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·明月剑#37117(会心 破招) 13750": {"id": 37117, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1386, "weapon_damage_rand": 924}, "magic": {"spirit_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·枫岩笔#37113(会心 破招) 13750": {"id": 37113, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 1066, "weapon_damage_rand": 711}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·禅心棍#37111(会心 破招) 13750": {"id": 37111, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3625, "weapon_damage_rand": 2416}, "magic": {"spunk_base": 1152, "magical_attack_power_base": 5354, "magical_critical_strike_base": 5781, "surplus_base": 6166}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "裂风破天弓#36911(破防 破招) 13200": {"id": 36911, "school": "万灵", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "四绝分海刀#36910(破防 破招) 13200": {"id": 36910, "school": "刀宗", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "传薪百草卷·尊道#36908(破防 破招) 13200": {"id": 36908, "school": "药宗", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪不归伞#36905(破防 破招) 13200": {"id": 36905, "school": "蓬莱", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百炼环首刀#36904(破防 破招) 13200": {"id": 36904, "school": "霸刀", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "国士无双·天乐#36902(破防 破招) 13200": {"id": 36902, "school": "长歌", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "双虎遮日·雁门如铁#36900(破防 破招) 13200": {"id": 36900, "school": "苍云", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浪子穿心弩·杀心#36894(破防 破招) 13200": {"id": 36894, "school": "唐门", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浪子穿心弩·无情#36893(破防 破招) 13200": {"id": 36893, "school": "唐门", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2047, "weapon_damage_rand": 1365}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淬血霜花剑·金莲#36889(破防 破招) 13200": {"id": 36889, "school": "七秀", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 887}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悲风悯月剑·分野#36888(破防 破招) 13200": {"id": 36888, "school": "纯阳", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 2661, "weapon_damage_rand": 1774}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悲风悯月剑·星辰#36887(破防 破招) 13200": {"id": 36887, "school": "纯阳", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 887}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "哭佛点睛笔·山水#36883(破防 破招) 13200": {"id": 36883, "school": "万花", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "裂叶齐眉棍·禅#36881(破防 破招) 13200": {"id": 36881, "school": "少林", "kind": "内功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3480, "weapon_damage_rand": 2320}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5140, "magical_overcome_base": 5550, "surplus_base": 5920}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "弯弓弦月#36661(会心 破招) 12600": {"id": 36661, "school": "万灵", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凌云天#34803(会心 破招) 12600": {"id": 34803, "school": "刀宗", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "自清#34801(会心 破招) 12600": {"id": 34801, "school": "药宗", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵台御风#34798(会心 破招) 12600": {"id": 34798, "school": "蓬莱", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "田野苍茫#34797(会心 破招) 12600": {"id": 34797, "school": "霸刀", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "荡人心#34795(会心 破招) 12600": {"id": 34795, "school": "长歌", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 977, "weapon_damage_rand": 651}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百岁不移#34793(会心 破招) 12600": {"id": 34793, "school": "苍云", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百影成空#34787(会心 破招) 12600": {"id": 34787, "school": "唐门", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如梦#34786(会心 破招) 12600": {"id": 34786, "school": "唐门", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1954, "weapon_damage_rand": 1303}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乐无边#34782(会心 破招) 12600": {"id": 34782, "school": "七秀", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1270, "weapon_damage_rand": 847}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "彩云开#34781(会心 破招) 12600": {"id": 34781, "school": "纯阳", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2540, "weapon_damage_rand": 1693}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照金沙#34780(会心 破招) 12600": {"id": 34780, "school": "纯阳", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 1270, "weapon_damage_rand": 847}, "magic": {"spirit_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愁绪难尽#34776(会心 破招) 12600": {"id": 34776, "school": "万花", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 977, "weapon_damage_rand": 651}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涤净红尘#34774(会心 破招) 12600": {"id": 34774, "school": "少林", "kind": "内功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 3321, "weapon_damage_rand": 2214}, "magic": {"spunk_base": 1056, "magical_attack_power_base": 4906, "magical_critical_strike_base": 5297, "surplus_base": 5651}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#38077(破防 会心 加速) 12500": {"id": 38077, "school": "万灵", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5633, "physical_critical_strike_base": 5880, "physical_overcome_base": 5880, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#38076(破防 会心 加速) 12500": {"id": 38076, "school": "刀宗", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5543, "physical_critical_strike_base": 5880, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#38074(破防 会心 加速) 12500": {"id": 38074, "school": "药宗", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6651, "magical_critical_strike_base": 5474, "magical_overcome_base": 6488, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#38071(破防 会心 加速) 12500": {"id": 38071, "school": "蓬莱", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 6083, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#38070(破防 会心 加速) 12500": {"id": 38070, "school": "霸刀", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 5677, "physical_overcome_base": 6488, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#38068(破防 会心 加速) 12500": {"id": 38068, "school": "长歌", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1346, "weapon_damage_rand": 897}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6542, "magical_critical_strike_base": 5677, "magical_overcome_base": 6285, "haste_base": 2230}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#38066(破防 会心 加速) 12500": {"id": 38066, "school": "苍云", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5815, "physical_critical_strike_base": 5474, "physical_overcome_base": 5880, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#38060(破防 会心 加速) 12500": {"id": 38060, "school": "唐门", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5270, "physical_critical_strike_base": 5880, "physical_overcome_base": 6691, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#38059(破防 会心 加速) 12500": {"id": 38059, "school": "唐门", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 2692, "weapon_damage_rand": 1795}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6542, "physical_critical_strike_base": 5474, "magical_overcome_base": 6691, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#38055(破防 会心 加速) 12500": {"id": 38055, "school": "七秀", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1750, "weapon_damage_rand": 1167}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6760, "magical_critical_strike_base": 5474, "magical_overcome_base": 6083, "haste_base": 2230}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#38054(破防 会心 加速) 12500": {"id": 38054, "school": "纯阳", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 3500, "weapon_damage_rand": 2333}, "magic": {"agility_base": 1455, "physical_attack_power_base": 5361, "physical_critical_strike_base": 6285, "physical_overcome_base": 6083, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#38053(破防 会心 加速) 12500": {"id": 38053, "school": "纯阳", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1750, "weapon_damage_rand": 1167}, "magic": {"spirit_base": 1455, "magical_attack_power_base": 6542, "magical_critical_strike_base": 6285, "magical_overcome_base": 5880, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#38049(破防 会心 加速) 12500": {"id": 38049, "school": "万花", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 1346, "weapon_damage_rand": 897}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6760, "magical_critical_strike_base": 5474, "magical_overcome_base": 6285, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#38047(破防 会心 加速) 12500": {"id": 38047, "school": "少林", "kind": "内功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4576, "weapon_damage_rand": 3051}, "magic": {"spunk_base": 1455, "magical_attack_power_base": 6978, "magical_critical_strike_base": 5272, "magical_overcome_base": 6083, "haste_base": 2028}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "划长虹#36660(破防 无双) 12450": {"id": 36660, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "势相和#36659(会心 无双) 12450": {"id": 36659, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·林野#35972(破防 无双) 12450": {"id": 35972, "school": "万灵", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·流湍#35971(破防 无双) 12450": {"id": 35971, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·翠团#35969(破防 无双) 12450": {"id": 35969, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·照清池#35966(破防 无双) 12450": {"id": 35966, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·雾掣#35965(破防 无双) 12450": {"id": 35965, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·归闲#35963(破防 无双) 12450": {"id": 35963, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·青嶂合#35961(破防 无双) 12450": {"id": 35961, "school": "苍云", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·尘羁#35955(破防 无双) 12450": {"id": 35955, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·暮鸦#35954(破防 无双) 12450": {"id": 35954, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·渺眠#35950(破防 无双) 12450": {"id": 35950, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·愚贤#35949(破防 无双) 12450": {"id": 35949, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·希夷#35948(破防 无双) 12450": {"id": 35948, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·倦意#35944(破防 无双) 12450": {"id": 35944, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·夜灯#35942(破防 无双) 12450": {"id": 35942, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不变情#34851(破防 破招) 12450": {"id": 34851, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百味千秋#34849(破防 破招) 12450": {"id": 34849, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "送君行#34846(破防 破招) 12450": {"id": 34846, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪中迹#34845(破防 破招) 12450": {"id": 34845, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故人何处#34843(破防 破招) 12450": {"id": 34843, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雨劫#34841(破防 破招) 12450": {"id": 34841, "school": "苍云", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "茫茫竹影#34835(破防 破招) 12450": {"id": 34835, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "野趣横生#34834(破防 破招) 12450": {"id": 34834, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "永沐清风#34830(破防 破招) 12450": {"id": 34830, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "任逍遥#34829(破防 破招) 12450": {"id": 34829, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "道无尽#34828(破防 破招) 12450": {"id": 34828, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如龙#34824(破防 破招) 12450": {"id": 34824, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迷程#34822(破防 破招) 12450": {"id": 34822, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "surplus_base": 5583}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏刀行#34765(破防 无双) 12450": {"id": 34765, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浮玉池#34763(破防 无双) 12450": {"id": 34763, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水色天#34760(破防 无双) 12450": {"id": 34760, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宝器光#34759(破防 无双) 12450": {"id": 34759, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不胜愁#34757(破防 无双) 12450": {"id": 34757, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "霁月侵#34755(破防 无双) 12450": {"id": 34755, "school": "苍云", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风杀#34749(破防 无双) 12450": {"id": 34749, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夜狂游#34748(破防 无双) 12450": {"id": 34748, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云微澄#34744(破防 无双) 12450": {"id": 34744, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "转尘寰#34743(破防 无双) 12450": {"id": 34743, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "岁载空#34742(破防 无双) 12450": {"id": 34742, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东风债#34738(破防 无双) 12450": {"id": 34738, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "修菩提#34736(破防 无双) 12450": {"id": 34736, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_overcome_base": 5234, "strain_base": 5583}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [2497], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧玉锋#34735(会心 无双) 12450": {"id": 34735, "school": "刀宗", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "流碧落#34733(会心 无双) 12450": {"id": 34733, "school": "药宗", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "连山岳#34730(会心 无双) 12450": {"id": 34730, "school": "蓬莱", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "红尘苦#34729(会心 无双) 12450": {"id": 34729, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "落英风#34727(会心 无双) 12450": {"id": 34727, "school": "长歌", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪满楼#34725(会心 无双) 12450": {"id": 34725, "school": "苍云", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "映梨花#34719(会心 无双) 12450": {"id": 34719, "school": "唐门", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "悬长夜#34718(会心 无双) 12450": {"id": 34718, "school": "唐门", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1931, "weapon_damage_rand": 1287}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飒然吟#34714(会心 无双) 12450": {"id": 34714, "school": "七秀", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "白雪孤#34713(会心 无双) 12450": {"id": 34713, "school": "纯阳", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2510, "weapon_damage_rand": 1673}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "浮尘世#34712(会心 无双) 12450": {"id": 34712, "school": "纯阳", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 1255, "weapon_damage_rand": 837}, "magic": {"spirit_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叠翠幽#34708(会心 无双) 12450": {"id": 34708, "school": "万花", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 965, "weapon_damage_rand": 644}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万法空#34706(会心 无双) 12450": {"id": 34706, "school": "少林", "kind": "内功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3282, "weapon_damage_rand": 2188}, "magic": {"spunk_base": 1043, "magical_attack_power_base": 4848, "magical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风棉棉钩·刀功#36859(破防 无双) 12300": {"id": 36859, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰海坚鱼·刀功#36858(破防 无双) 12300": {"id": 36858, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新春饼·火候#36856(破防 无双) 12300": {"id": 36856, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波渔网架·刀功#36853(破防 无双) 12300": {"id": 36853, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒绛腊厨装·刀功#36852(破防 无双) 12300": {"id": 36852, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意调味匣·火候#36850(破防 无双) 12300": {"id": 36850, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪蒸鱼屉·刀功#36848(破防 无双) 12300": {"id": 36848, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月竹筒饭·刀功#36842(破防 无双) 12300": {"id": 36842, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月竹筒饭·火候#36841(破防 无双) 12300": {"id": 36841, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳玉女勺·火候#36837(破防 无双) 12300": {"id": 36837, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚大菜刀·刀功#36836(破防 无双) 12300": {"id": 36836, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚大菜刀·火候#36835(破防 无双) 12300": {"id": 36835, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠玲珑筷·火候#36831(破防 无双) 12300": {"id": 36831, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提擀面杖·火候#36829(破防 无双) 12300": {"id": 36829, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "横素弓#36653(破防 破招) 12300": {"id": 36653, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "独雁弓#36652(会心 破招) 12300": {"id": 36652, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宿秋弓#36651(加速 破招) 12300": {"id": 36651, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涧寒弓#36650(破防 无双) 12300": {"id": 36650, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "戢羽#36649(会心 破招) 12300": {"id": 36649, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "有触即发#36648(加速 破招) 12300": {"id": 36648, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "控角弓#36647(破防 无双) 12300": {"id": 36647, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·姮娥弓箭#35707(会心 破招) 12300": {"id": 35707, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·裂锦刀#35706(会心 破招) 12300": {"id": 35706, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·寻丹卷#35704(会心 破招) 12300": {"id": 35704, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·醉缬伞#35701(会心 破招) 12300": {"id": 35701, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·长楚刀#35700(会心 破招) 12300": {"id": 35700, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐空琴#35698(会心 破招) 12300": {"id": 35698, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·试锋刀盾#35696(会心 破招) 12300": {"id": 35696, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·鸣鸢弩#35690(会心 破招) 12300": {"id": 35690, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·辞金弩#35689(会心 破招) 12300": {"id": 35689, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·明河双兵#35685(会心 破招) 12300": {"id": 35685, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·清泉剑#35684(会心 破招) 12300": {"id": 35684, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·新蝉剑#35683(会心 破招) 12300": {"id": 35683, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·沅湘笔#35679(会心 破招) 12300": {"id": 35679, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·同悲棍#35677(会心 破招) 12300": {"id": 35677, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "复影刀#32693(破防 破招) 12300": {"id": 32693, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "冰漱卷#32691(破防 破招) 12300": {"id": 32691, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泽荣伞#32688(破防 破招) 12300": {"id": 32688, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡辰刀#32687(破防 破招) 12300": {"id": 32687, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "元懿琴#32685(破防 破招) 12300": {"id": 32685, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拥雪刀盾#32683(破防 破招) 12300": {"id": 32683, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "闻熙弩#32677(破防 破招) 12300": {"id": 32677, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夏持弩#32676(破防 破招) 12300": {"id": 32676, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "空翎双剑#32672(破防 破招) 12300": {"id": 32672, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "歌陶剑#32671(破防 破招) 12300": {"id": 32671, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "肆语剑#32670(破防 破招) 12300": {"id": 32670, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐波笔#32666(破防 破招) 12300": {"id": 32666, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "持空棍#32664(破防 破招) 12300": {"id": 32664, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "戏涛刀#32657(会心 破招) 12300": {"id": 32657, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淳语卷#32655(会心 破招) 12300": {"id": 32655, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "觅时伞#32652(会心 破招) 12300": {"id": 32652, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知溪刀#32651(会心 破招) 12300": {"id": 32651, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云疏琴#32649(会心 破招) 12300": {"id": 32649, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "引昕刀盾#32647(会心 破招) 12300": {"id": 32647, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "栖芷弩#32641(会心 破招) 12300": {"id": 32641, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水漓弩#32640(会心 破招) 12300": {"id": 32640, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬月双剑#32636(会心 破招) 12300": {"id": 32636, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淮意剑#32635(会心 破招) 12300": {"id": 32635, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问筠剑#32634(会心 破招) 12300": {"id": 32634, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "诺枫笔#32630(会心 破招) 12300": {"id": 32630, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "越空棍#32628(会心 破招) 12300": {"id": 32628, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重行刀#32621(加速 破招) 12300": {"id": 32621, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "辞玥卷#32619(加速 破招) 12300": {"id": 32619, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "虞风伞#32616(加速 破招) 12300": {"id": 32616, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叙砚刀#32615(加速 破招) 12300": {"id": 32615, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谷泠琴#32613(加速 破招) 12300": {"id": 32613, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宇渊刀盾#32611(加速 破招) 12300": {"id": 32611, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夜劫弩#32605(加速 破招) 12300": {"id": 32605, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "燕寒弩#32604(加速 破招) 12300": {"id": 32604, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潇颜双剑#32600(加速 破招) 12300": {"id": 32600, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清丛剑#32599(加速 破招) 12300": {"id": 32599, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 4597}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "瀚邱剑#32598(加速 破招) 12300": {"id": 32598, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "捧露笔#32594(加速 破招) 12300": {"id": 32594, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天飏棍#32592(加速 破招) 12300": {"id": 32592, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "双横刀#32585(破防 无双) 12300": {"id": 32585, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "引湖卷#32583(破防 无双) 12300": {"id": 32583, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "洛语伞#32580(破防 无双) 12300": {"id": 32580, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪陵刀#32579(破防 无双) 12300": {"id": 32579, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西染琴#32577(破防 无双) 12300": {"id": 32577, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "黎沉刀盾#32575(破防 无双) 12300": {"id": 32575, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疏叶弩#32569(破防 无双) 12300": {"id": 32569, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "末商弩#32568(破防 无双) 12300": {"id": 32568, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "江夕双剑#32564(破防 无双) 12300": {"id": 32564, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈雪剑#32563(破防 无双) 12300": {"id": 32563, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "陌尘剑#32562(破防 无双) 12300": {"id": 32562, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "棠月笔#32558(破防 无双) 12300": {"id": 32558, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "尽归棍#32556(破防 无双) 12300": {"id": 32556, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "断扰#32525(会心 破招) 12300": {"id": 32525, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枯群#32523(会心 破招) 12300": {"id": 32523, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "笙潮#32520(会心 破招) 12300": {"id": 32520, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾劲#32519(会心 破招) 12300": {"id": 32519, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "菰影#32517(会心 破招) 12300": {"id": 32517, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "征声#32515(会心 破招) 12300": {"id": 32515, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "纵意#32509(会心 破招) 12300": {"id": 32509, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐形#32508(会心 破招) 12300": {"id": 32508, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未阑#32504(会心 破招) 12300": {"id": 32504, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "随云#32503(会心 破招) 12300": {"id": 32503, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂月#32502(会心 破招) 12300": {"id": 32502, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧江#32498(会心 破招) 12300": {"id": 32498, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "释梵#32496(会心 破招) 12300": {"id": 32496, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_critical_strike_base": 5171, "surplus_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "刃风#32489(加速 破招) 12300": {"id": 32489, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寄心#32487(加速 破招) 12300": {"id": 32487, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "醉天仙#32484(加速 破招) 12300": {"id": 32484, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云雨未消#32483(加速 破招) 12300": {"id": 32483, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "音犹#32481(加速 破招) 12300": {"id": 32481, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "白头归#32479(加速 破招) 12300": {"id": 32479, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "一枕愁#32473(加速 破招) 12300": {"id": 32473, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒山转#32472(加速 破招) 12300": {"id": 32472, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谁诉#32468(加速 破招) 12300": {"id": 32468, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂烟尘#32467(加速 破招) 12300": {"id": 32467, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus_base": 5516}, "embed": {"agility_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮钓青云#32466(加速 破招) 12300": {"id": 32466, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "野老心#32462(加速 破招) 12300": {"id": 32462, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "僧不欺#32460(加速 破招) 12300": {"id": 32460, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "haste_base": 5171, "surplus_base": 5516}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逐锋破#32453(破防 无双) 12300": {"id": 32453, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重卷空闻#32451(破防 无双) 12300": {"id": 32451, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水流云#32448(破防 无双) 12300": {"id": 32448, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山川形胜#32447(破防 无双) 12300": {"id": 32447, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无意风絮#32445(破防 无双) 12300": {"id": 32445, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欲还休#32443(破防 无双) 12300": {"id": 32443, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "半篙雨#32437(破防 无双) 12300": {"id": 32437, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "催晚疾#32436(破防 无双) 12300": {"id": 32436, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1907, "weapon_damage_rand": 1271}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清镜晓#32432(破防 无双) 12300": {"id": 32432, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "涧东游#32431(破防 无双) 12300": {"id": 32431, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2479, "weapon_damage_rand": 1653}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "影照霞飞#32430(破防 无双) 12300": {"id": 32430, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 1240, "weapon_damage_rand": 826}, "magic": {"spirit_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "意非畴#32426(破防 无双) 12300": {"id": 32426, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 954, "weapon_damage_rand": 636}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "因灯舍#32424(破防 无双) 12300": {"id": 32424, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3242, "weapon_damage_rand": 2162}, "magic": {"spunk_base": 1031, "magical_attack_power_base": 4789, "magical_overcome_base": 5171, "strain_base": 5516}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#38046(破防 会心 加速) 11900": {"id": 38046, "school": "万灵", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5363, "physical_critical_strike_base": 5598, "physical_overcome_base": 5598, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#38045(破防 会心 加速) 11900": {"id": 38045, "school": "刀宗", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5277, "physical_critical_strike_base": 5598, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#38043(破防 会心 加速) 11900": {"id": 38043, "school": "药宗", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6332, "magical_critical_strike_base": 5212, "magical_overcome_base": 6177, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#38040(破防 会心 加速) 11900": {"id": 38040, "school": "蓬莱", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5791, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#38039(破防 会心 加速) 11900": {"id": 38039, "school": "霸刀", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5405, "physical_overcome_base": 6177, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#38037(破防 会心 加速) 11900": {"id": 38037, "school": "长歌", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1281, "weapon_damage_rand": 854}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6228, "magical_critical_strike_base": 5405, "magical_overcome_base": 5984, "haste_base": 2123}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#38035(破防 会心 加速) 11900": {"id": 38035, "school": "苍云", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5536, "physical_critical_strike_base": 5212, "physical_overcome_base": 5598, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#38029(破防 会心 加速) 11900": {"id": 38029, "school": "唐门", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5017, "physical_critical_strike_base": 5598, "physical_overcome_base": 6370, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#38028(破防 会心 加速) 11900": {"id": 38028, "school": "唐门", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 2563, "weapon_damage_rand": 1709}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6228, "physical_critical_strike_base": 5212, "magical_overcome_base": 6370, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#38024(破防 会心 加速) 11900": {"id": 38024, "school": "七秀", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1666, "weapon_damage_rand": 1111}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6436, "magical_critical_strike_base": 5212, "magical_overcome_base": 5791, "haste_base": 2123}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#38023(破防 会心 加速) 11900": {"id": 38023, "school": "纯阳", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3332, "weapon_damage_rand": 2221}, "magic": {"agility_base": 1385, "physical_attack_power_base": 5104, "physical_critical_strike_base": 5984, "physical_overcome_base": 5791, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#38022(破防 会心 加速) 11900": {"id": 38022, "school": "纯阳", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1666, "weapon_damage_rand": 1111}, "magic": {"spirit_base": 1385, "magical_attack_power_base": 6228, "magical_critical_strike_base": 5984, "magical_overcome_base": 5598, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#38018(破防 会心 加速) 11900": {"id": 38018, "school": "万花", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 1281, "weapon_damage_rand": 854}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6436, "magical_critical_strike_base": 5212, "magical_overcome_base": 5984, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#38016(破防 会心 加速) 11900": {"id": 38016, "school": "少林", "kind": "内功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 4357, "weapon_damage_rand": 2904}, "magic": {"spunk_base": 1385, "magical_attack_power_base": 6643, "magical_critical_strike_base": 5019, "magical_overcome_base": 5791, "haste_base": 1930}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏#37104(破防 会心 加速) 11650": {"id": 37104, "school": "万灵", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5250, "physical_critical_strike_base": 5480, "physical_overcome_base": 5480, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5463, 17471], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣#37103(破防 会心 加速) 11650": {"id": 37103, "school": "刀宗", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5166, "physical_critical_strike_base": 5480, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3185, 17359], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌#37101(破防 会心 加速) 11650": {"id": 37101, "school": "药宗", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6199, "magical_critical_strike_base": 5102, "magical_overcome_base": 6047, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2841, 17459], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星#37098(破防 会心 加速) 11650": {"id": 37098, "school": "蓬莱", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5669, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4820, 4821, 17410], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊#37097(破防 会心 加速) 11650": {"id": 37097, "school": "霸刀", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5291, "physical_overcome_base": 6047, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂#37095(破防 会心 加速) 11650": {"id": 37095, "school": "长歌", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1254, "weapon_damage_rand": 836}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6097, "magical_critical_strike_base": 5291, "magical_overcome_base": 5858, "haste_base": 2079}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 17314], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凤鸣岐山·衔书#37093(破防 会心 加速) 11650": {"id": 37093, "school": "苍云", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5420, "physical_critical_strike_base": 5102, "physical_overcome_base": 5480, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1934, 1936, 17448], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦#37087(破防 会心 加速) 11650": {"id": 37087, "school": "唐门", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"strength_base": 1356, "physical_attack_power_base": 4912, "physical_critical_strike_base": 5480, "physical_overcome_base": 6236, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1145, 1978, 17436], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋#37086(破防 会心 加速) 11650": {"id": 37086, "school": "唐门", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 2509, "weapon_damage_rand": 1673}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6097, "physical_critical_strike_base": 5102, "magical_overcome_base": 6236, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1146, 1978, 17430], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷#37082(破防 会心 加速) 11650": {"id": 37082, "school": "七秀", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1631, "weapon_damage_rand": 1087}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6300, "magical_critical_strike_base": 5102, "magical_overcome_base": 5669, "haste_base": 2079}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1137, 1977, 17381], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎#37081(破防 会心 加速) 11650": {"id": 37081, "school": "纯阳", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3262, "weapon_damage_rand": 2174}, "magic": {"agility_base": 1356, "physical_attack_power_base": 4997, "physical_critical_strike_base": 5858, "physical_overcome_base": 5669, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1135, 17313], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉#37080(破防 会心 加速) 11650": {"id": 37080, "school": "纯阳", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1631, "weapon_damage_rand": 1087}, "magic": {"spirit_base": 1356, "magical_attack_power_base": 6097, "magical_critical_strike_base": 5858, "magical_overcome_base": 5480, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1136, 17312], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕#37076(破防 会心 加速) 11650": {"id": 37076, "school": "万花", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 1254, "weapon_damage_rand": 836}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6300, "magical_critical_strike_base": 5102, "magical_overcome_base": 5858, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1131, 1979, 17400], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照#37074(破防 会心 加速) 11650": {"id": 37074, "school": "少林", "kind": "内功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 4265, "weapon_damage_rand": 2843}, "magic": {"spunk_base": 1356, "magical_attack_power_base": 6503, "magical_critical_strike_base": 4913, "magical_overcome_base": 5669, "haste_base": 1890}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1139, 17352], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#36797(破防 会心 加速) 11300": {"id": 36797, "school": "万灵", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"agility_base": 1315, "physical_attack_power_base": 5093, "physical_critical_strike_base": 5315, "physical_overcome_base": 5315, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#36598(破防 会心 加速) 11300": {"id": 36598, "school": "刀宗", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 5011, "physical_critical_strike_base": 5315, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#36596(破防 会心 加速) 11300": {"id": 36596, "school": "药宗", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 6013, "magical_critical_strike_base": 4949, "magical_overcome_base": 5865, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#36593(破防 会心 加速) 11300": {"id": 36593, "school": "蓬莱", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"agility_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5499, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#36592(破防 会心 加速) 11300": {"id": 36592, "school": "霸刀", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5132, "physical_overcome_base": 5865, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#36590(破防 会心 加速) 11300": {"id": 36590, "school": "长歌", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1217, "weapon_damage_rand": 811}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 5914, "magical_critical_strike_base": 5132, "magical_overcome_base": 5682, "haste_base": 2016}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#36588(破防 会心 加速) 11300": {"id": 36588, "school": "苍云", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"agility_base": 1315, "physical_attack_power_base": 5257, "physical_critical_strike_base": 4949, "physical_overcome_base": 5315, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#36582(破防 会心 加速) 11300": {"id": 36582, "school": "唐门", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4764, "physical_critical_strike_base": 5315, "physical_overcome_base": 6049, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#36581(破防 会心 加速) 11300": {"id": 36581, "school": "唐门", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 2434, "weapon_damage_rand": 1622}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 5914, "physical_critical_strike_base": 4949, "magical_overcome_base": 6049, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#36577(破防 会心 加速) 11300": {"id": 36577, "school": "七秀", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1582, "weapon_damage_rand": 1055}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 6111, "magical_critical_strike_base": 4949, "magical_overcome_base": 5499, "haste_base": 2016}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#36576(破防 会心 加速) 11300": {"id": 36576, "school": "纯阳", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3164, "weapon_damage_rand": 2109}, "magic": {"agility_base": 1315, "physical_attack_power_base": 4846, "physical_critical_strike_base": 5682, "physical_overcome_base": 5499, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#36575(破防 会心 加速) 11300": {"id": 36575, "school": "纯阳", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1582, "weapon_damage_rand": 1055}, "magic": {"spirit_base": 1315, "magical_attack_power_base": 5914, "magical_critical_strike_base": 5682, "magical_overcome_base": 5315, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#36571(破防 会心 加速) 11300": {"id": 36571, "school": "万花", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 1217, "weapon_damage_rand": 811}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 6111, "magical_critical_strike_base": 4949, "magical_overcome_base": 5682, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#36569(破防 会心 加速) 11300": {"id": 36569, "school": "少林", "kind": "内功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 4137, "weapon_damage_rand": 2758}, "magic": {"spunk_base": 1315, "magical_attack_power_base": 6308, "magical_critical_strike_base": 4766, "magical_overcome_base": 5499, "haste_base": 1833}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣#37072(破防 会心 加速) 10900": {"id": 37072, "school": "刀宗", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4833, "physical_critical_strike_base": 5127, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3185, 17359], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏#37073(破防 会心 加速) 10900": {"id": 37073, "school": "万灵", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4912, "physical_critical_strike_base": 5127, "physical_overcome_base": 5127, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5463, 17471], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌#37070(破防 会心 加速) 10900": {"id": 37070, "school": "药宗", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5800, "magical_critical_strike_base": 4774, "magical_overcome_base": 5658, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2841, 17459], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照#37043(破防 会心 加速) 10900": {"id": 37043, "school": "少林", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3990, "weapon_damage_rand": 2660}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 6085, "magical_critical_strike_base": 4597, "magical_overcome_base": 5304, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1139, 17352], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕#37045(破防 会心 加速) 10900": {"id": 37045, "school": "万花", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1174, "weapon_damage_rand": 782}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 5895, "magical_critical_strike_base": 4774, "magical_overcome_base": 5481, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1131, 1979, 17400], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉#37049(破防 会心 加速) 10900": {"id": 37049, "school": "纯阳", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1526, "weapon_damage_rand": 1017}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5705, "magical_critical_strike_base": 5481, "magical_overcome_base": 5127, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1136, 17312], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎#37050(破防 会心 加速) 10900": {"id": 37050, "school": "纯阳", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3052, "weapon_damage_rand": 2034}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4675, "physical_critical_strike_base": 5481, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1135, 17313], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷#37051(破防 会心 加速) 10900": {"id": 37051, "school": "七秀", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1526, "weapon_damage_rand": 1017}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5895, "magical_critical_strike_base": 4774, "magical_overcome_base": 5304, "haste_base": 1945}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1137, 1977, 17381], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋#37055(破防 会心 加速) 10900": {"id": 37055, "school": "唐门", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"spunk_base": 1269, "magical_attack_power_base": 5705, "physical_critical_strike_base": 4774, "magical_overcome_base": 5834, "haste_base": 1768}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1146, 1978, 17430], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦#37056(破防 会心 加速) 10900": {"id": 37056, "school": "唐门", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 2347, "weapon_damage_rand": 1565}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4596, "physical_critical_strike_base": 5127, "physical_overcome_base": 5834, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1145, 1978, 17436], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凤鸣岐山·衔书#37062(破防 会心 加速) 10900": {"id": 37062, "school": "苍云", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"agility_base": 1269, "physical_attack_power_base": 5071, "physical_critical_strike_base": 4774, "physical_overcome_base": 5127, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1934, 1936, 17448], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂#37064(破防 会心 加速) 10900": {"id": 37064, "school": "长歌", "kind": "内功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 1174, "weapon_damage_rand": 782}, "magic": {"spirit_base": 1269, "magical_attack_power_base": 5705, "magical_critical_strike_base": 4950, "magical_overcome_base": 5481, "haste_base": 1945}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 17314], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊#37066(破防 会心 加速) 10900": {"id": 37066, "school": "霸刀", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 4950, "physical_overcome_base": 5658, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星#37067(破防 会心 加速) 10900": {"id": 37067, "school": "蓬莱", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 5304, "physical_overcome_base": 5304, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4820, 4821, 17410], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#36796(破防 会心 加速) 10800": {"id": 36796, "school": "万灵", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4867, "physical_critical_strike_base": 5080, "physical_overcome_base": 5080, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#36568(破防 会心 加速) 10800": {"id": 36568, "school": "刀宗", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4789, "physical_critical_strike_base": 5080, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#36566(破防 会心 加速) 10800": {"id": 36566, "school": "药宗", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5747, "magical_critical_strike_base": 4730, "magical_overcome_base": 5606, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#36563(破防 会心 加速) 10800": {"id": 36563, "school": "蓬莱", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 5255, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#36562(破防 会心 加速) 10800": {"id": 36562, "school": "霸刀", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 4905, "physical_overcome_base": 5606, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#36560(破防 会心 加速) 10800": {"id": 36560, "school": "长歌", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1163, "weapon_damage_rand": 775}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5653, "magical_critical_strike_base": 4905, "magical_overcome_base": 5431, "haste_base": 1927}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#36558(破防 会心 加速) 10800": {"id": 36558, "school": "苍云", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"agility_base": 1257, "physical_attack_power_base": 5024, "physical_critical_strike_base": 4730, "physical_overcome_base": 5080, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#36552(破防 会心 加速) 10800": {"id": 36552, "school": "唐门", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4554, "physical_critical_strike_base": 5080, "physical_overcome_base": 5781, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#36551(破防 会心 加速) 10800": {"id": 36551, "school": "唐门", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 2326, "weapon_damage_rand": 1551}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 5653, "physical_critical_strike_base": 4730, "magical_overcome_base": 5781, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#36547(破防 会心 加速) 10800": {"id": 36547, "school": "七秀", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1512, "weapon_damage_rand": 1008}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5841, "magical_critical_strike_base": 4730, "magical_overcome_base": 5255, "haste_base": 1927}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#36546(破防 会心 加速) 10800": {"id": 36546, "school": "纯阳", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3024, "weapon_damage_rand": 2016}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4632, "physical_critical_strike_base": 5431, "physical_overcome_base": 5255, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#36545(破防 会心 加速) 10800": {"id": 36545, "school": "纯阳", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1512, "weapon_damage_rand": 1008}, "magic": {"spirit_base": 1257, "magical_attack_power_base": 5653, "magical_critical_strike_base": 5431, "magical_overcome_base": 5080, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#36541(破防 会心 加速) 10800": {"id": 36541, "school": "万花", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 1163, "weapon_damage_rand": 775}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 5841, "magical_critical_strike_base": 4730, "magical_overcome_base": 5431, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#36539(破防 会心 加速) 10800": {"id": 36539, "school": "少林", "kind": "内功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3954, "weapon_damage_rand": 2636}, "magic": {"spunk_base": 1257, "magical_attack_power_base": 6029, "magical_critical_strike_base": 4555, "magical_overcome_base": 5255, "haste_base": 1752}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#35598(破防 会心 加速) 10300": {"id": 35598, "school": "少林", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3771, "weapon_damage_rand": 2514}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5750, "magical_critical_strike_base": 4344, "magical_overcome_base": 5012, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#35600(破防 会心 加速) 10300": {"id": 35600, "school": "万花", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5179, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#35604(破防 会心 加速) 10300": {"id": 35604, "school": "纯阳", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 5179, "magical_overcome_base": 4845, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#35605(破防 会心 加速) 10300": {"id": 35605, "school": "纯阳", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2884, "weapon_damage_rand": 1922}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4418, "physical_critical_strike_base": 5179, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#35606(破防 会心 加速) 10300": {"id": 35606, "school": "七秀", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5012, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#35610(破防 会心 加速) 10300": {"id": 35610, "school": "唐门", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5391, "physical_critical_strike_base": 4511, "magical_overcome_base": 5513, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#35611(破防 会心 加速) 10300": {"id": 35611, "school": "唐门", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4343, "physical_critical_strike_base": 4845, "physical_overcome_base": 5513, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#35617(破防 会心 加速) 10300": {"id": 35617, "school": "苍云", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4792, "physical_critical_strike_base": 4511, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#35619(破防 会心 加速) 10300": {"id": 35619, "school": "长歌", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 4678, "magical_overcome_base": 5179, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#35621(破防 会心 加速) 10300": {"id": 35621, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#35622(破防 会心 加速) 10300": {"id": 35622, "school": "蓬莱", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5012, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#35625(破防 会心 加速) 10300": {"id": 35625, "school": "药宗", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5481, "magical_critical_strike_base": 4511, "magical_overcome_base": 5346, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#35627(破防 会心 加速) 10300": {"id": 35627, "school": "刀宗", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4567, "physical_critical_strike_base": 4845, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊#37035(破防 会心 加速) 10300": {"id": 37035, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#36795(破防 会心 加速) 10300": {"id": 36795, "school": "万灵", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4642, "physical_critical_strike_base": 4845, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏#37042(破防 会心 加速) 10300": {"id": 37042, "school": "万灵", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4642, "physical_critical_strike_base": 4845, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣#37041(破防 会心 加速) 10300": {"id": 37041, "school": "刀宗", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4567, "physical_critical_strike_base": 4845, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌#37039(破防 会心 加速) 10300": {"id": 37039, "school": "药宗", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5481, "magical_critical_strike_base": 4511, "magical_overcome_base": 5346, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星#37036(破防 会心 加速) 10300": {"id": 37036, "school": "蓬莱", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5012, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照#37012(破防 会心 加速) 10300": {"id": 37012, "school": "少林", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3771, "weapon_damage_rand": 2514}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5750, "magical_critical_strike_base": 4344, "magical_overcome_base": 5012, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕#37014(破防 会心 加速) 10300": {"id": 37014, "school": "万花", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5179, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉#37018(破防 会心 加速) 10300": {"id": 37018, "school": "纯阳", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 5179, "magical_overcome_base": 4845, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎#37019(破防 会心 加速) 10300": {"id": 37019, "school": "纯阳", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2884, "weapon_damage_rand": 1922}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4418, "physical_critical_strike_base": 5179, "physical_overcome_base": 5012, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷#37020(破防 会心 加速) 10300": {"id": 37020, "school": "七秀", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1442, "weapon_damage_rand": 961}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5570, "magical_critical_strike_base": 4511, "magical_overcome_base": 5012, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋#37024(破防 会心 加速) 10300": {"id": 37024, "school": "唐门", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"spunk_base": 1199, "magical_attack_power_base": 5391, "physical_critical_strike_base": 4511, "magical_overcome_base": 5513, "haste_base": 1671}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦#37025(破防 会心 加速) 10300": {"id": 37025, "school": "唐门", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 2218, "weapon_damage_rand": 1479}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4343, "physical_critical_strike_base": 4845, "physical_overcome_base": 5513, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凤鸣岐山·衔书#37031(破防 会心 加速) 10300": {"id": 37031, "school": "苍云", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4792, "physical_critical_strike_base": 4511, "physical_overcome_base": 4845, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂#37033(破防 会心 加速) 10300": {"id": 37033, "school": "长歌", "kind": "内功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 1109, "weapon_damage_rand": 739}, "magic": {"spirit_base": 1199, "magical_attack_power_base": 5391, "magical_critical_strike_base": 4678, "magical_overcome_base": 5179, "haste_base": 1838}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38271(破防 会心 加速) 10100": {"id": 38271, "school": "药宗", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 2175, "weapon_damage_rand": 1450}, "magic": {"spirit_base": 1175, "magical_attack_power_base": 5374, "magical_critical_strike_base": 4423, "magical_overcome_base": 5242, "haste_base": 1638}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38268(破防 会心 加速) 10100": {"id": 38268, "school": "蓬莱", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"agility_base": 1175, "physical_attack_power_base": 4405, "physical_critical_strike_base": 4915, "physical_overcome_base": 4915, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38267(破防 会心 加速) 10100": {"id": 38267, "school": "霸刀", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"strength_base": 1175, "physical_attack_power_base": 4405, "physical_critical_strike_base": 4587, "physical_overcome_base": 5242, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38265(破防 会心 加速) 10100": {"id": 38265, "school": "长歌", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 1088, "weapon_damage_rand": 725}, "magic": {"spirit_base": 1175, "magical_attack_power_base": 5286, "magical_critical_strike_base": 4587, "magical_overcome_base": 5079, "haste_base": 1802}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38263(破防 会心 加速) 10100": {"id": 38263, "school": "苍云", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"agility_base": 1175, "physical_attack_power_base": 4699, "physical_critical_strike_base": 4423, "physical_overcome_base": 4751, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38257(破防 会心 加速) 10100": {"id": 38257, "school": "唐门", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 2175, "weapon_damage_rand": 1450}, "magic": {"strength_base": 1175, "physical_attack_power_base": 4258, "physical_critical_strike_base": 4751, "physical_overcome_base": 5406, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38256(破防 会心 加速) 10100": {"id": 38256, "school": "唐门", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 2175, "weapon_damage_rand": 1450}, "magic": {"spunk_base": 1175, "magical_attack_power_base": 5286, "physical_critical_strike_base": 4423, "magical_overcome_base": 5406, "haste_base": 1638}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38274(破防 会心 加速) 10100": {"id": 38274, "school": "万灵", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"agility_base": 1175, "physical_attack_power_base": 4552, "physical_critical_strike_base": 4751, "physical_overcome_base": 4751, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38252(破防 会心 加速) 10100": {"id": 38252, "school": "七秀", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 1414, "weapon_damage_rand": 943}, "magic": {"spirit_base": 1175, "magical_attack_power_base": 5462, "magical_critical_strike_base": 4423, "magical_overcome_base": 4915, "haste_base": 1802}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38251(破防 会心 加速) 10100": {"id": 38251, "school": "纯阳", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 2828, "weapon_damage_rand": 1885}, "magic": {"agility_base": 1175, "physical_attack_power_base": 4332, "physical_critical_strike_base": 5079, "physical_overcome_base": 4915, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38250(破防 会心 加速) 10100": {"id": 38250, "school": "纯阳", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 1414, "weapon_damage_rand": 943}, "magic": {"spirit_base": 1175, "magical_attack_power_base": 5286, "magical_critical_strike_base": 5079, "magical_overcome_base": 4751, "haste_base": 1638}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38246(破防 会心 加速) 10100": {"id": 38246, "school": "万花", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 1088, "weapon_damage_rand": 725}, "magic": {"spunk_base": 1175, "magical_attack_power_base": 5462, "magical_critical_strike_base": 4423, "magical_overcome_base": 5079, "haste_base": 1638}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38244(破防 会心 加速) 10100": {"id": 38244, "school": "少林", "kind": "内功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3698, "weapon_damage_rand": 2465}, "magic": {"spunk_base": 1175, "magical_attack_power_base": 5638, "magical_critical_strike_base": 4259, "magical_overcome_base": 4915, "haste_base": 1638}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38273(破防 会心 加速) 10100": {"id": 38273, "school": "刀宗", "kind": "外功", "level": 10100, "max_strength": 8, "base": {"weapon_damage_base": 3263, "weapon_damage_rand": 2175}, "magic": {"strength_base": 1175, "physical_attack_power_base": 4479, "physical_critical_strike_base": 4751, "physical_overcome_base": 4915, "haste_base": 1638}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#35589(破防 会心 加速) 9800": {"id": 35589, "school": "长歌", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1055, "weapon_damage_rand": 703}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5129, "magical_critical_strike_base": 4451, "magical_overcome_base": 4928, "haste_base": 1749}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#35587(破防 会心 加速) 9800": {"id": 35587, "school": "苍云", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4559, "physical_critical_strike_base": 4292, "physical_overcome_base": 4610, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#35581(破防 会心 加速) 9800": {"id": 35581, "school": "唐门", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4132, "physical_critical_strike_base": 4610, "physical_overcome_base": 5246, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#35580(破防 会心 加速) 9800": {"id": 35580, "school": "唐门", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5129, "physical_critical_strike_base": 4292, "magical_overcome_base": 5246, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#35576(破防 会心 加速) 9800": {"id": 35576, "school": "七秀", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1372, "weapon_damage_rand": 914}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5300, "magical_critical_strike_base": 4292, "magical_overcome_base": 4769, "haste_base": 1749}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#35575(破防 会心 加速) 9800": {"id": 35575, "school": "纯阳", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2743, "weapon_damage_rand": 1829}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4203, "physical_critical_strike_base": 4928, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#35574(破防 会心 加速) 9800": {"id": 35574, "school": "纯阳", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1372, "weapon_damage_rand": 914}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5129, "magical_critical_strike_base": 4928, "magical_overcome_base": 4610, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#35591(破防 会心 加速) 9800": {"id": 35591, "school": "霸刀", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4451, "physical_overcome_base": 5087, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#35592(破防 会心 加速) 9800": {"id": 35592, "school": "蓬莱", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4769, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#35595(破防 会心 加速) 9800": {"id": 35595, "school": "药宗", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 2110, "weapon_damage_rand": 1407}, "magic": {"spirit_base": 1141, "magical_attack_power_base": 5215, "magical_critical_strike_base": 4292, "magical_overcome_base": 5087, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#35597(破防 会心 加速) 9800": {"id": 35597, "school": "刀宗", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4345, "physical_critical_strike_base": 4610, "physical_overcome_base": 4769, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#36794(破防 会心 加速) 9800": {"id": 36794, "school": "万灵", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4417, "physical_critical_strike_base": 4610, "physical_overcome_base": 4610, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#35570(破防 会心 加速) 9800": {"id": 35570, "school": "万花", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 1055, "weapon_damage_rand": 703}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5300, "magical_critical_strike_base": 4292, "magical_overcome_base": 4928, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#35568(破防 会心 加速) 9800": {"id": 35568, "school": "少林", "kind": "内功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3588, "weapon_damage_rand": 2392}, "magic": {"spunk_base": 1141, "magical_attack_power_base": 5471, "magical_critical_strike_base": 4133, "magical_overcome_base": 4769, "haste_base": 1590}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣#37010(破防 会心 加速) 9700": {"id": 37010, "school": "刀宗", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4301, "physical_critical_strike_base": 4563, "physical_overcome_base": 4720, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌#37008(破防 会心 加速) 9700": {"id": 37008, "school": "药宗", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"spirit_base": 1129, "magical_attack_power_base": 5161, "magical_critical_strike_base": 4248, "magical_overcome_base": 5035, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏#37011(破防 会心 加速) 9700": {"id": 37011, "school": "万灵", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4372, "physical_critical_strike_base": 4563, "physical_overcome_base": 4563, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星#37005(破防 会心 加速) 9700": {"id": 37005, "school": "蓬莱", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4720, "physical_overcome_base": 4720, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊#37004(破防 会心 加速) 9700": {"id": 37004, "school": "霸刀", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4405, "physical_overcome_base": 5035, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂#37002(破防 会心 加速) 9700": {"id": 37002, "school": "长歌", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 1044, "weapon_damage_rand": 696}, "magic": {"spirit_base": 1129, "magical_attack_power_base": 5077, "magical_critical_strike_base": 4405, "magical_overcome_base": 4877, "haste_base": 1731}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凤鸣岐山·衔书#37000(破防 会心 加速) 9700": {"id": 37000, "school": "苍云", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4512, "physical_critical_strike_base": 4248, "physical_overcome_base": 4563, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕#36983(破防 会心 加速) 9700": {"id": 36983, "school": "万花", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 1044, "weapon_damage_rand": 696}, "magic": {"spunk_base": 1129, "magical_attack_power_base": 5246, "magical_critical_strike_base": 4248, "magical_overcome_base": 4877, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋#36993(破防 会心 加速) 9700": {"id": 36993, "school": "唐门", "kind": "内功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"spunk_base": 1129, "magical_attack_power_base": 5077, "physical_critical_strike_base": 4248, "magical_overcome_base": 5192, "haste_base": 1573}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦#36994(破防 会心 加速) 9700": {"id": 36994, "school": "唐门", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 2089, "weapon_damage_rand": 1393}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4090, "physical_critical_strike_base": 4563, "physical_overcome_base": 5192, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38213(破防 会心 加速) 9500": {"id": 38213, "school": "少林", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 3478, "weapon_damage_rand": 2319}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5303, "magical_critical_strike_base": 4006, "magical_overcome_base": 4623, "haste_base": 1541}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38215(破防 会心 加速) 9500": {"id": 38215, "school": "万花", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 5138, "magical_critical_strike_base": 4161, "magical_overcome_base": 4777, "haste_base": 1541}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38219(破防 会心 加速) 9500": {"id": 38219, "school": "纯阳", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 886}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 4972, "magical_critical_strike_base": 4777, "magical_overcome_base": 4469, "haste_base": 1541}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38220(破防 会心 加速) 9500": {"id": 38220, "school": "纯阳", "kind": "外功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 2659, "weapon_damage_rand": 1773}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4074, "physical_critical_strike_base": 4777, "physical_overcome_base": 4623, "haste_base": 1541}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38221(破防 会心 加速) 9500": {"id": 38221, "school": "七秀", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 1330, "weapon_damage_rand": 886}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 5138, "magical_critical_strike_base": 4161, "magical_overcome_base": 4623, "haste_base": 1695}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38225(破防 会心 加速) 9500": {"id": 38225, "school": "唐门", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 2046, "weapon_damage_rand": 1364}, "magic": {"spunk_base": 1106, "magical_attack_power_base": 4972, "physical_critical_strike_base": 4161, "magical_overcome_base": 5085, "haste_base": 1541}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38226(破防 会心 加速) 9500": {"id": 38226, "school": "唐门", "kind": "外功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 2046, "weapon_damage_rand": 1364}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4006, "physical_critical_strike_base": 4469, "physical_overcome_base": 5085, "haste_base": 1541}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38232(破防 会心 加速) 9500": {"id": 38232, "school": "苍云", "kind": "外功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 3069, "weapon_damage_rand": 2046}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4419, "physical_critical_strike_base": 4161, "physical_overcome_base": 4469, "haste_base": 1541}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38234(破防 会心 加速) 9500": {"id": 38234, "school": "长歌", "kind": "内功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 1023, "weapon_damage_rand": 682}, "magic": {"spirit_base": 1106, "magical_attack_power_base": 4972, "magical_critical_strike_base": 4315, "magical_overcome_base": 4777, "haste_base": 1695}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38236(破防 会心 加速) 9500": {"id": 38236, "school": "霸刀", "kind": "外功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 3069, "weapon_damage_rand": 2046}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4143, "physical_critical_strike_base": 4315, "physical_overcome_base": 4931, "haste_base": 1541}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#38237(破防 会心 加速) 9500": {"id": 38237, "school": "蓬莱", "kind": "外功", "level": 9500, "max_strength": 8, "base": {"weapon_damage_base": 3069, "weapon_damage_rand": 2046}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4143, "physical_critical_strike_base": 4623, "physical_overcome_base": 4623, "haste_base": 1541}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庄生晓梦#36793(破防 会心 加速) 9300": {"id": 36793, "school": "万灵", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4191, "physical_critical_strike_base": 4375, "physical_overcome_base": 4375, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [5461, 5462, 2572, 2571, 17470, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绝地天通刀#34433(破防 会心 加速) 9300": {"id": 34433, "school": "刀宗", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4124, "physical_critical_strike_base": 4375, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [3186, 3187, 2391, 2392, 17358, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鹿王本生#34431(破防 会心 加速) 9300": {"id": 34431, "school": "药宗", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4949, "magical_critical_strike_base": 4073, "magical_overcome_base": 4827, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2842, 2843, 2414, 2138, 17458, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山海云涯#34428(破防 会心 加速) 9300": {"id": 34428, "school": "蓬莱", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4526, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [4818, 4819, 2423, 1943, 17409, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪#34427(破防 会心 加速) 9300": {"id": 34427, "school": "霸刀", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4224, "physical_overcome_base": 4827, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "抚今#34425(破防 会心 加速) 9300": {"id": 34425, "school": "长歌", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1001, "weapon_damage_rand": 668}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4867, "magical_critical_strike_base": 4224, "magical_overcome_base": 4676, "haste_base": 1659}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [2401, 2402, 2415, 1941, 17306, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "孤焰#34423(破防 会心 加速) 9300": {"id": 34423, "school": "苍云", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4326, "physical_critical_strike_base": 4073, "physical_overcome_base": 4375, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1937, 1938, 2408, 1940, 17447, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "摧霜#34417(破防 会心 加速) 9300": {"id": 34417, "school": "唐门", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"strength_base": 1082, "physical_attack_power_base": 3921, "physical_critical_strike_base": 4375, "physical_overcome_base": 4978, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1534, 1535, 2411, 1936, 17435, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罪骨浮屠#34416(破防 会心 加速) 9300": {"id": 34416, "school": "唐门", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2003, "weapon_damage_rand": 1335}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 4867, "physical_critical_strike_base": 4073, "magical_overcome_base": 4978, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1532, 1533, 2412, 1935, 17429, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飞霜绛露#34412(破防 会心 加速) 9300": {"id": 34412, "school": "七秀", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1302, "weapon_damage_rand": 868}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 5030, "magical_critical_strike_base": 4073, "magical_overcome_base": 4526, "haste_base": 1659}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1524, 1525, 2416, 1930, 17380, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风霆肃#34411(破防 会心 加速) 9300": {"id": 34411, "school": "纯阳", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 2603, "weapon_damage_rand": 1736}, "magic": {"agility_base": 1082, "physical_attack_power_base": 3989, "physical_critical_strike_base": 4676, "physical_overcome_base": 4526, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [1522, 1523, 2419, 1932, 17301, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍冥游#34410(破防 会心 加速) 9300": {"id": 34410, "school": "纯阳", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1302, "weapon_damage_rand": 868}, "magic": {"spirit_base": 1082, "magical_attack_power_base": 4867, "magical_critical_strike_base": 4676, "magical_overcome_base": 4375, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [1520, 1521, 2418, 1931, 17300, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璃光浮远#34406(破防 会心 加速) 9300": {"id": 34406, "school": "万花", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 1001, "weapon_damage_rand": 668}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 5030, "magical_critical_strike_base": 4073, "magical_overcome_base": 4676, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1516, 1517, 2417, 1929, 17399, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "桑莲妙境#34404(破防 会心 加速) 9300": {"id": 34404, "school": "少林", "kind": "内功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3405, "weapon_damage_rand": 2270}, "magic": {"spunk_base": 1082, "magical_attack_power_base": 5192, "magical_critical_strike_base": 3922, "magical_overcome_base": 4526, "haste_base": 1509}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [1512, 1513, 2410, 1928, 17351, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "衔羽还·今夕#36952(破防 会心 加速) 9100": {"id": 36952, "school": "万花", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 980, "weapon_damage_rand": 653}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 4921, "magical_critical_strike_base": 3985, "magical_overcome_base": 4576, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "慈悲音·观照#36950(破防 会心 加速) 9100": {"id": 36950, "school": "少林", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 3331, "weapon_damage_rand": 2221}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 5080, "magical_critical_strike_base": 3838, "magical_overcome_base": 4428, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·珠沉#36956(破防 会心 加速) 9100": {"id": 36956, "school": "纯阳", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1274, "weapon_damage_rand": 849}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4763, "magical_critical_strike_base": 4576, "magical_overcome_base": 4281, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "愧琼瑰·玉碎#36957(破防 会心 加速) 9100": {"id": 36957, "school": "纯阳", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2547, "weapon_damage_rand": 1698}, "magic": {"agility_base": 1059, "physical_attack_power_base": 3903, "physical_critical_strike_base": 4576, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "鳞海人间·水穷#36958(破防 会心 加速) 9100": {"id": 36958, "school": "七秀", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1274, "weapon_damage_rand": 849}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4921, "magical_critical_strike_base": 3985, "magical_overcome_base": 4428, "haste_base": 1624}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·霜锋#36962(破防 会心 加速) 9100": {"id": 36962, "school": "唐门", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"spunk_base": 1059, "magical_attack_power_base": 4763, "physical_critical_strike_base": 3985, "magical_overcome_base": 4871, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清渊玉骨·寒弦#36963(破防 会心 加速) 9100": {"id": 36963, "school": "唐门", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3837, "physical_critical_strike_base": 4281, "physical_overcome_base": 4871, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凤鸣岐山·衔书#36969(破防 会心 加速) 9100": {"id": 36969, "school": "苍云", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"agility_base": 1059, "physical_attack_power_base": 4233, "physical_critical_strike_base": 3985, "physical_overcome_base": 4281, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "飘铃语·月寂#36971(破防 会心 加速) 9100": {"id": 36971, "school": "长歌", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 980, "weapon_damage_rand": 653}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4763, "magical_critical_strike_base": 4133, "magical_overcome_base": 4576, "haste_base": 1624}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊#36973(破防 会心 加速) 9100": {"id": 36973, "school": "霸刀", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4133, "physical_overcome_base": 4723, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "槎舟渡星#36974(破防 会心 加速) 9100": {"id": 36974, "school": "蓬莱", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"agility_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4428, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "迟莲·旧歌#36977(破防 会心 加速) 9100": {"id": 36977, "school": "药宗", "kind": "内功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 1960, "weapon_damage_rand": 1306}, "magic": {"spirit_base": 1059, "magical_attack_power_base": 4842, "magical_critical_strike_base": 3985, "magical_overcome_base": 4723, "haste_base": 1476}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊鸣#36979(破防 会心 加速) 9100": {"id": 36979, "school": "刀宗", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 4035, "physical_critical_strike_base": 4281, "physical_overcome_base": 4428, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "未央之夏#36980(破防 会心 加速) 9100": {"id": 36980, "school": "万灵", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"agility_base": 1059, "physical_attack_power_base": 4101, "physical_critical_strike_base": 4281, "physical_overcome_base": 4281, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/ring b/qt/assets/equipments/ring index f63474ccf97a60d7321f5f96b9adbefd7a42a171..a4851f7bc993cad0c3843f2aea398d06817333b6 100644 --- a/qt/assets/equipments/ring +++ b/qt/assets/equipments/ring @@ -1 +1 @@ -{"客行江湖·纵巧戒 (破防 无双) 15600": {"id": 39921, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远戒 (破防 无双) 15600": {"id": 39920, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气戒 (破防 无双) 15600": {"id": 39919, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎戒 (破防 无双) 15600": {"id": 39918, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "似窈戒 (破防 破招) 15600": {"id": 39869, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1903, "surplus_base": 3188, "physical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓然戒 (会心 无双) 15600": {"id": 39868, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1631, "physical_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乃书戒 (破防 破招) 15600": {"id": 39867, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2284, "surplus_base": 3188, "magical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "广萤戒 (会心 无双) 15600": {"id": 39866, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1957, "all_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赤树戒 (破防 无双) 15600": {"id": 39865, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东倾戒 (破防 无双) 15600": {"id": 39864, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "magical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "望若戒 (会心 会效 破招) 15600": {"id": 39863, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "surplus_base": 1670, "physical_critical_strike_base": 2885, "physical_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "姑引戒 (破防 会心) 15600": {"id": 39862, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_critical_strike_base": 3112, "physical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "勤俭戒 (无双) 15600": {"id": 39861, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2311, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庆本戒 (会心 会效 破招) 15600": {"id": 39860, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "surplus_base": 1670, "all_critical_strike_base": 2885, "all_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "耐歌戒 (破防 会心) 15600": {"id": 39859, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "all_critical_strike_base": 3112, "magical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "萌音戒 (无双) 15600": {"id": 39858, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2773, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困戒 (会心 无双) 15600": {"id": 39849, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落戒 (会心 无双) 15600": {"id": 39848, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安戒 (会心 无双) 15600": {"id": 39847, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义戒 (会心 无双) 15600": {"id": 39846, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀指环 (破防 破招) 15600": {"id": 39831, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪指环 (破防 破招) 15600": {"id": 39830, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙指环 (破防 破招) 15600": {"id": 39829, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城指环 (破防 破招) 15600": {"id": 39828, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·徙 (破防 破招) 13950": {"id": 40869, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·兆 (破防 破招) 13950": {"id": 40868, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·誓 (破防 破招) 13950": {"id": 40867, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·赦 (破防 破招) 13950": {"id": 40866, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叠武戒 (破防 破招) 13950": {"id": 39795, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绘山戒 (破防 破招) 13950": {"id": 39794, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "归朔戒 (破防 破招) 13950": {"id": 39793, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "青乡戒 (破防 破招) 13950": {"id": 39792, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月戒 (破防 无双) 13950": {"id": 38857, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟戒 (破防 无双) 13950": {"id": 38856, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意戒 (破防 无双) 13950": {"id": 38855, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠戒 (破防 无双) 13950": {"id": 38854, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时岑戒 (破防 破招) 13950": {"id": 38805, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1702, "surplus_base": 2851, "physical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游练戒 (会心 无双) 13950": {"id": 38804, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1459, "physical_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璨云戒 (破防 破招) 13950": {"id": 38803, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2042, "surplus_base": 2851, "magical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "丰冉戒 (会心 无双) 13950": {"id": 38802, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1750, "all_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问年戒 (破防 无双) 13950": {"id": 38801, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "峻水戒 (破防 无双) 13950": {"id": 38800, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "magical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "光霆戒 (会心 会效 破招) 13950": {"id": 38799, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "surplus_base": 1493, "physical_critical_strike_base": 2580, "physical_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "兰珑戒 (破防 会心) 13950": {"id": 38798, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_critical_strike_base": 2783, "physical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时越戒 (无双) 13950": {"id": 38797, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2066, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "希延戒 (会心 会效 破招) 13950": {"id": 38796, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "surplus_base": 1493, "all_critical_strike_base": 2580, "all_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羽容戒 (破防 会心) 13950": {"id": 38795, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "all_critical_strike_base": 2783, "magical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "丹莲戒 (无双) 13950": {"id": 38794, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2480, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁戒 (会心 无双) 13950": {"id": 38785, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦戒 (会心 无双) 13950": {"id": 38784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云戒 (会心 无双) 13950": {"id": 38783, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡戒 (会心 无双) 13950": {"id": 38782, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣指环 (破防 破招) 13950": {"id": 38767, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行指环 (破防 破招) 13950": {"id": 38766, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐指环 (破防 破招) 13950": {"id": 38765, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英指环 (破防 破招) 13950": {"id": 38764, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨玉 (会心 无双) 13400": {"id": 39801, "school": "通用", "kind": "身法", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨石 (会心 无双) 13400": {"id": 39800, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨环 (会心 无双) 13400": {"id": 39799, "school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 468, "magical_attack_power_base": 911, "all_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨戒 (会心 无双) 13400": {"id": 39798, "school": "通用", "kind": "根骨", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 468, "magical_attack_power_base": 911, "magical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月戒 (会心 破招) 12450": {"id": 37824, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静戒 (会心 破招) 12450": {"id": 37823, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟戒 (会心 破招) 12450": {"id": 37822, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂戒 (会心 破招) 12450": {"id": 37821, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配戒 (破防 无双) 12450": {"id": 37782, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花戒 (破防 无双) 12450": {"id": 37781, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世戒 (破防 无双) 12450": {"id": 37780, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓戒 (破防 无双) 12450": {"id": 37779, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "催时戒 (破防 无双) 12450": {"id": 37730, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "physical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "解怜戒 (破防 无双) 12450": {"id": 37729, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "magical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "破朝戒 (会心 无双) 12450": {"id": 37728, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1302, "physical_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赫风戒 (破防 破招) 12450": {"id": 37727, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "surplus_base": 2545, "physical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问岐戒 (无双) 12450": {"id": 37726, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1844, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "帘絮戒 (会心 无双) 12450": {"id": 37725, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1562, "all_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清斗戒 (破防 破招) 12450": {"id": 37724, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "surplus_base": 2545, "magical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "昭月戒 (无双) 12450": {"id": 37723, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2213, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞戒 (会心 无双) 12450": {"id": 37714, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃戒 (会心 无双) 12450": {"id": 37713, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡戒 (会心 无双) 12450": {"id": 37712, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华戒 (会心 无双) 12450": {"id": 37711, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野指环 (破防 破招) 12450": {"id": 37696, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿指环 (破防 破招) 12450": {"id": 37695, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微指环 (破防 破招) 12450": {"id": 37694, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓指环 (破防 破招) 12450": {"id": 37693, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临仙戒 (会心 无双) 12400": {"id": 34202, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临尚戒 (会心 无双) 12400": {"id": 34201, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临曦戒 (会心 无双) 12400": {"id": 34200, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "all_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临衣戒 (会心 无双) 12400": {"id": 34199, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨戒指·刀功 (会心 无双) 12300": {"id": 39791, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨戒指·刀功 (会心 无双) 12300": {"id": 39790, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨戒指·火候 (会心 无双) 12300": {"id": 39788, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨戒指·刀功 (会心 无双) 12300": {"id": 39785, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨戒指·刀功 (会心 无双) 12300": {"id": 39784, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨戒指·火候 (会心 无双) 12300": {"id": 39782, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨戒指·刀功 (会心 无双) 12300": {"id": 39775, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨戒指·火候 (会心 无双) 12300": {"id": 39774, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨戒指·火候 (会心 无双) 12300": {"id": 39770, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨戒指·刀功 (会心 无双) 12300": {"id": 39769, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨戒指·火候 (会心 无双) 12300": {"id": 39768, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨戒指·火候 (会心 无双) 12300": {"id": 39764, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨戒指·火候 (会心 无双) 12300": {"id": 39762, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "久念戒 (破防 破招) 12300": {"id": 34274, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江戒 (破防 破招) 12300": {"id": 34273, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦戒 (破防 破招) 12300": {"id": 34272, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰戒 (破防 破招) 12300": {"id": 34271, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱戒 (会心 破招) 12300": {"id": 34256, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌戒 (会心 破招) 12300": {"id": 34255, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳戒 (会心 破招) 12300": {"id": 34254, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐戒 (会心 破招) 12300": {"id": 34253, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱戒 (加速 破招) 12300": {"id": 34238, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦戒 (加速 破招) 12300": {"id": 34237, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭戒 (加速 破招) 12300": {"id": 34236, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南戒 (加速 破招) 12300": {"id": 34235, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱戒 (破招 无双) 12300": {"id": 34220, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双戒 (破招 无双) 12300": {"id": 34219, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜戒 (破招 无双) 12300": {"id": 34218, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云戒 (破招 无双) 12300": {"id": 34217, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁戒 (会心 破招) 12300": {"id": 34130, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬戒 (会心 破招) 12300": {"id": 34129, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜戒 (会心 破招) 12300": {"id": 34128, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安戒 (会心 破招) 12300": {"id": 34127, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝戒 (加速 无双) 12300": {"id": 34112, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰戒 (加速 无双) 12300": {"id": 34111, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔戒 (加速 无双) 12300": {"id": 34110, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨戒 (加速 无双) 12300": {"id": 34109, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳戒 (破防 破招) 12300": {"id": 34094, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关戒 (破防 破招) 12300": {"id": 34093, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐戒 (破防 破招) 12300": {"id": 34092, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄戒 (破防 破招) 12300": {"id": 34091, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"客行江湖·纵巧戒#39921(破防 无双) 15600": {"id": 39921, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远戒#39920(破防 无双) 15600": {"id": 39920, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气戒#39919(破防 无双) 15600": {"id": 39919, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎戒#39918(破防 无双) 15600": {"id": 39918, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "似窈戒#39869(破防 破招) 15600": {"id": 39869, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1903, "surplus_base": 3188, "physical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓然戒#39868(会心 无双) 15600": {"id": 39868, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1631, "physical_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "乃书戒#39867(破防 破招) 15600": {"id": 39867, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2284, "surplus_base": 3188, "magical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "广萤戒#39866(会心 无双) 15600": {"id": 39866, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1957, "all_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赤树戒#39865(破防 无双) 15600": {"id": 39865, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东倾戒#39864(破防 无双) 15600": {"id": 39864, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "magical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "望若戒#39863(会心 会效 破招) 15600": {"id": 39863, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "surplus_base": 1670, "physical_critical_strike_base": 2885, "physical_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "姑引戒#39862(破防 会心) 15600": {"id": 39862, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_critical_strike_base": 3112, "physical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "勤俭戒#39861(无双) 15600": {"id": 39861, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2311, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庆本戒#39860(会心 会效 破招) 15600": {"id": 39860, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "surplus_base": 1670, "all_critical_strike_base": 2885, "all_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "耐歌戒#39859(破防 会心) 15600": {"id": 39859, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2365, "all_critical_strike_base": 3112, "magical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "萌音戒#39858(无双) 15600": {"id": 39858, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2773, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困戒#39849(会心 无双) 15600": {"id": 39849, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落戒#39848(会心 无双) 15600": {"id": 39848, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安戒#39847(会心 无双) 15600": {"id": 39847, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "all_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义戒#39846(会心 无双) 15600": {"id": 39846, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀指环#39831(破防 破招) 15600": {"id": 39831, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪指环#39830(破防 破招) 15600": {"id": 39830, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙指环#39829(破防 破招) 15600": {"id": 39829, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城指环#39828(破防 破招) 15600": {"id": 39828, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 545, "magical_attack_power_base": 1060, "magical_overcome_base": 2733, "surplus_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·徙#40869(破防 破招) 13950": {"id": 40869, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·兆#40868(破防 破招) 13950": {"id": 40868, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·誓#40867(破防 破招) 13950": {"id": 40867, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "行雾中·赦#40866(破防 破招) 13950": {"id": 40866, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叠武戒#39795(破防 破招) 13950": {"id": 39795, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绘山戒#39794(破防 破招) 13950": {"id": 39794, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "归朔戒#39793(破防 破招) 13950": {"id": 39793, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "青乡戒#39792(破防 破招) 13950": {"id": 39792, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月戒#38857(破防 无双) 13950": {"id": 38857, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟戒#38856(破防 无双) 13950": {"id": 38856, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意戒#38855(破防 无双) 13950": {"id": 38855, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠戒#38854(破防 无双) 13950": {"id": 38854, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时岑戒#38805(破防 破招) 13950": {"id": 38805, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1702, "surplus_base": 2851, "physical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游练戒#38804(会心 无双) 13950": {"id": 38804, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1459, "physical_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "璨云戒#38803(破防 破招) 13950": {"id": 38803, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2042, "surplus_base": 2851, "magical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "丰冉戒#38802(会心 无双) 13950": {"id": 38802, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1750, "all_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问年戒#38801(破防 无双) 13950": {"id": 38801, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "峻水戒#38800(破防 无双) 13950": {"id": 38800, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "magical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "光霆戒#38799(会心 会效 破招) 13950": {"id": 38799, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "surplus_base": 1493, "physical_critical_strike_base": 2580, "physical_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "兰珑戒#38798(破防 会心) 13950": {"id": 38798, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_critical_strike_base": 2783, "physical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时越戒#38797(无双) 13950": {"id": 38797, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2066, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "希延戒#38796(会心 会效 破招) 13950": {"id": 38796, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "surplus_base": 1493, "all_critical_strike_base": 2580, "all_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羽容戒#38795(破防 会心) 13950": {"id": 38795, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "all_critical_strike_base": 2783, "magical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "丹莲戒#38794(无双) 13950": {"id": 38794, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2480, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁戒#38785(会心 无双) 13950": {"id": 38785, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦戒#38784(会心 无双) 13950": {"id": 38784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云戒#38783(会心 无双) 13950": {"id": 38783, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡戒#38782(会心 无双) 13950": {"id": 38782, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣指环#38767(破防 破招) 13950": {"id": 38767, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行指环#38766(破防 破招) 13950": {"id": 38766, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐指环#38765(破防 破招) 13950": {"id": 38765, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英指环#38764(破防 破招) 13950": {"id": 38764, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨玉#39801(会心 无双) 13400": {"id": 39801, "school": "通用", "kind": "身法", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨石#39800(会心 无双) 13400": {"id": 39800, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨环#39799(会心 无双) 13400": {"id": 39799, "school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 468, "magical_attack_power_base": 911, "all_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨戒#39798(会心 无双) 13400": {"id": 39798, "school": "通用", "kind": "根骨", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 468, "magical_attack_power_base": 911, "magical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月戒#37824(会心 破招) 12450": {"id": 37824, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静戒#37823(会心 破招) 12450": {"id": 37823, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟戒#37822(会心 破招) 12450": {"id": 37822, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂戒#37821(会心 破招) 12450": {"id": 37821, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配戒#37782(破防 无双) 12450": {"id": 37782, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花戒#37781(破防 无双) 12450": {"id": 37781, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世戒#37780(破防 无双) 12450": {"id": 37780, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓戒#37779(破防 无双) 12450": {"id": 37779, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "催时戒#37730(破防 无双) 12450": {"id": 37730, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "physical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "解怜戒#37729(破防 无双) 12450": {"id": 37729, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "magical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "破朝戒#37728(会心 无双) 12450": {"id": 37728, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1302, "physical_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赫风戒#37727(破防 破招) 12450": {"id": 37727, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "surplus_base": 2545, "physical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问岐戒#37726(无双) 12450": {"id": 37726, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1844, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "帘絮戒#37725(会心 无双) 12450": {"id": 37725, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1562, "all_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "清斗戒#37724(破防 破招) 12450": {"id": 37724, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "surplus_base": 2545, "magical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "昭月戒#37723(无双) 12450": {"id": 37723, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2213, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞戒#37714(会心 无双) 12450": {"id": 37714, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃戒#37713(会心 无双) 12450": {"id": 37713, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡戒#37712(会心 无双) 12450": {"id": 37712, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华戒#37711(会心 无双) 12450": {"id": 37711, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野指环#37696(破防 破招) 12450": {"id": 37696, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿指环#37695(破防 破招) 12450": {"id": 37695, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微指环#37694(破防 破招) 12450": {"id": 37694, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓指环#37693(破防 破招) 12450": {"id": 37693, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临仙戒#34202(会心 无双) 12400": {"id": 34202, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临尚戒#34201(会心 无双) 12400": {"id": 34201, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临曦戒#34200(会心 无双) 12400": {"id": 34200, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 433, "magical_attack_power_base": 843, "all_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临衣戒#34199(会心 无双) 12400": {"id": 34199, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 433, "magical_attack_power_base": 843, "magical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨戒指·刀功#39791(会心 无双) 12300": {"id": 39791, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "岚峰御厨戒指·刀功#39790(会心 无双) 12300": {"id": 39790, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨戒指·火候#39788(会心 无双) 12300": {"id": 39788, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "沧波御厨戒指·刀功 #39785(会心 无双) 12300": {"id": 39785, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "傲寒御厨戒指·刀功 #39784(会心 无双) 12300": {"id": 39784, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨戒指·火候#39782(会心 无双) 12300": {"id": 39782, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨戒指·刀工#39780(会心 无双) 12300": {"id": 39780, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨戒指·刀功#39775(会心 无双) 12300": {"id": 39775, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "蜀月御厨戒指·火候#39774(会心 无双) 12300": {"id": 39774, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨戒指·火候#39770(会心 无双) 12300": {"id": 39770, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨戒指·刀功#39769(会心 无双) 12300": {"id": 39769, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨戒指·火候#39768(会心 无双) 12300": {"id": 39768, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨戒指·火候#39764(会心 无双) 12300": {"id": 39764, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨戒指·火候#39762(会心 无双) 12300": {"id": 39762, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "久念戒#34274(破防 破招) 12300": {"id": 34274, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江戒#34273(破防 破招) 12300": {"id": 34273, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦戒#34272(破防 破招) 12300": {"id": 34272, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰戒#34271(破防 破招) 12300": {"id": 34271, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱戒#34256(会心 破招) 12300": {"id": 34256, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌戒#34255(会心 破招) 12300": {"id": 34255, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳戒#34254(会心 破招) 12300": {"id": 34254, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐戒#34253(会心 破招) 12300": {"id": 34253, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱戒#34238(加速 破招) 12300": {"id": 34238, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦戒#34237(加速 破招) 12300": {"id": 34237, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭戒#34236(加速 破招) 12300": {"id": 34236, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南戒#34235(加速 破招) 12300": {"id": 34235, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱戒#34220(破招 无双) 12300": {"id": 34220, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双戒#34219(破招 无双) 12300": {"id": 34219, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜戒#34218(破招 无双) 12300": {"id": 34218, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云戒#34217(破招 无双) 12300": {"id": 34217, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "surplus_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁戒#34130(会心 破招) 12300": {"id": 34130, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬戒#34129(会心 破招) 12300": {"id": 34129, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜戒#34128(会心 破招) 12300": {"id": 34128, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "all_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安戒#34127(会心 破招) 12300": {"id": 34127, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝戒#34112(加速 无双) 12300": {"id": 34112, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰戒#34111(加速 无双) 12300": {"id": 34111, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔戒#34110(加速 无双) 12300": {"id": 34110, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨戒#34109(加速 无双) 12300": {"id": 34109, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳戒#34094(破防 破招) 12300": {"id": 34094, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关戒#34093(破防 破招) 12300": {"id": 34093, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐戒#34092(破防 破招) 12300": {"id": 34092, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄戒#34091(破防 破招) 12300": {"id": 34091, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_overcome_base": 2155, "surplus_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/shoes b/qt/assets/equipments/shoes index 42f5c487e638184a568b6fd47d05f47028ad9939..1c097f678df26aecdc3fa80769d23efd856594b7 100644 --- a/qt/assets/equipments/shoes +++ b/qt/assets/equipments/shoes @@ -1 +1 @@ -{"水泉靴 (破防 破招) 15800": {"id": 98493, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽靴 (破防 破招) 15800": {"id": 98492, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓靴 (破防 破招) 15800": {"id": 98491, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川靴 (破防 破招) 15800": {"id": 98490, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落靴 (会心 破招) 15600": {"id": 98595, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠靴 (会心 破招) 15600": {"id": 98594, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟靴 (会心 破招) 15600": {"id": 98593, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤靴 (会心 破招) 15600": {"id": 98592, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困靴 (会心 无双) 15600": {"id": 98421, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落靴 (会心 无双) 15600": {"id": 98420, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安靴 (会心 无双) 15600": {"id": 98419, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义靴 (会心 无双) 15600": {"id": 98418, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀靴 (加速 破招) 15600": {"id": 98385, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪靴 (加速 破招) 15600": {"id": 98384, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙靴 (加速 破招) 15600": {"id": 98383, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城靴 (加速 破招) 15600": {"id": 98382, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸靴 (破防 无双) 15400": {"id": 98309, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜靴 (破防 无双) 15400": {"id": 98308, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林靴 (破防 无双) 15400": {"id": 98306, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼靴 (破防 无双) 15400": {"id": 98303, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁靴 (破防 无双) 15400": {"id": 98302, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲靴 (破防 无双) 15400": {"id": 98300, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·雨痕靴 (破防 无双) 15400": {"id": 98293, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江靴 (破防 无双) 15400": {"id": 98292, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦靴 (破防 无双) 15400": {"id": 98288, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛靴 (破防 无双) 15400": {"id": 98287, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬靴 (破防 无双) 15400": {"id": 98286, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧靴 (破防 无双) 15400": {"id": 98282, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法靴 (破防 无双) 15400": {"id": 98280, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封鞋 (会心 破招 无双) 15200": {"id": 98579, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus_base": 2278, "physical_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 无双) 15200": {"id": 98578, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (无双) 15200": {"id": 98577, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "strain_base": 7352}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (会心 破招 无双) 15200": {"id": 98576, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "surplus_base": 2278, "all_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 无双) 15200": {"id": 98575, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "magical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (无双) 15200": {"id": 98574, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3783, "strain_base": 7352}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 14350": {"id": 98555, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus_base": 2737, "physical_overcome_base": 3324, "strain_base": 1955}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 会心) 14350": {"id": 98554, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 4008, "physical_overcome_base": 4008}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心) 14350": {"id": 98553, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "physical_critical_strike_base": 6941}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 破招 无双) 14350": {"id": 98552, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "surplus_base": 2737, "magical_overcome_base": 3324, "strain_base": 1955}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 会心) 14350": {"id": 98551, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "all_critical_strike_base": 4008, "magical_overcome_base": 4008}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (会心) 14350": {"id": 98550, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3571, "all_critical_strike_base": 6941}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风停靴 (破防 破招) 14150": {"id": 96379, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈靴 (破防 破招) 14150": {"id": 96378, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫靴 (破防 破招) 14150": {"id": 96377, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻靴 (破防 破招) 14150": {"id": 96376, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇靴 (会心 无双) 13950": {"id": 98691, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光靴 (会心 无双) 13950": {"id": 98690, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼靴 (会心 无双) 13950": {"id": 98689, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适靴 (会心 无双) 13950": {"id": 98688, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危光靴 (破防 无双) 13950": {"id": 98199, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨靴 (破防 无双) 13950": {"id": 98198, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危影靴 (破防 无双) 13950": {"id": 98197, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危音靴 (破防 无双) 13950": {"id": 98196, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽靴 (会心 破招) 13950": {"id": 96489, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺靴 (会心 破招) 13950": {"id": 96488, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓靴 (会心 破招) 13950": {"id": 96487, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合靴 (会心 破招) 13950": {"id": 96486, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁靴 (会心 无双) 13950": {"id": 96307, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦靴 (会心 无双) 13950": {"id": 96306, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云靴 (会心 无双) 13950": {"id": 96305, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡靴 (会心 无双) 13950": {"id": 96304, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣靴 (加速 破招) 13950": {"id": 96271, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行靴 (加速 破招) 13950": {"id": 96270, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐靴 (加速 破招) 13950": {"id": 96269, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英靴 (加速 破招) 13950": {"id": 96268, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋靴 (会心 无双) 13750": {"id": 98175, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪靴 (会心 无双) 13750": {"id": 98174, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉靴 (会心 无双) 13750": {"id": 98173, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "all_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月靴 (会心 无双) 13750": {"id": 98172, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林靴 (破防 无双) 13750": {"id": 96195, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归靴 (破防 无双) 13750": {"id": 96194, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳靴 (破防 无双) 13750": {"id": 96192, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛靴 (破防 无双) 13750": {"id": 96189, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜靴 (破防 无双) 13750": {"id": 96188, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音靴 (破防 无双) 13750": {"id": 96186, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·闻箫靴 (破防 无双) 13750": {"id": 96179, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿靴 (破防 无双) 13750": {"id": 96178, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪靴 (破防 无双) 13750": {"id": 96174, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿靴 (破防 无双) 13750": {"id": 96173, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐靴 (破防 无双) 13750": {"id": 96172, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧靴 (破防 无双) 13750": {"id": 96168, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行靴 (破防 无双) 13750": {"id": 96166, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封鞋 (会心 会效 无双) 13550": {"id": 96473, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846, "strain_base": 2031}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破招 无双) 13550": {"id": 96472, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus_base": 3785, "strain_base": 3785}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防) 13550": {"id": 96471, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (会心 会效 无双) 13550": {"id": 96470, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "all_critical_strike_base": 3508, "all_critical_power_base": 1846, "strain_base": 2031}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破招 无双) 13550": {"id": 96469, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "surplus_base": 3785, "strain_base": 3785}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防) 13550": {"id": 96468, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3372, "magical_overcome_base": 6554}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心 破招 无双) 12800": {"id": 96447, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "surplus_base": 1918, "physical_critical_strike_base": 3314, "strain_base": 1918}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 无双) 12800": {"id": 96446, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 3488, "strain_base": 3662}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (无双) 12800": {"id": 96445, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "strain_base": 6191}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (会心 破招 无双) 12800": {"id": 96444, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "surplus_base": 1918, "all_critical_strike_base": 3314, "strain_base": 1918}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 无双) 12800": {"id": 96443, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "magical_overcome_base": 3488, "strain_base": 3662}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (无双) 12800": {"id": 96442, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3185, "strain_base": 6191}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫靴 (破防 破招) 12600": {"id": 94476, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞靴 (破防 破招) 12600": {"id": 94475, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁靴 (破防 破招) 12600": {"id": 94474, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满靴 (破防 破招) 12600": {"id": 94473, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒靴 (会心 无双) 12450": {"id": 96585, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠靴 (会心 无双) 12450": {"id": 96584, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声靴 (会心 无双) 12450": {"id": 96583, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书靴 (会心 无双) 12450": {"id": 96582, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月靴 (会心 破招) 12450": {"id": 94578, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静靴 (会心 破招) 12450": {"id": 94577, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟靴 (会心 破招) 12450": {"id": 94576, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂靴 (会心 破招) 12450": {"id": 94575, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞靴 (会心 无双) 12450": {"id": 94416, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃靴 (会心 无双) 12450": {"id": 94415, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡靴 (会心 无双) 12450": {"id": 94414, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华靴 (会心 无双) 12450": {"id": 94413, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野靴 (加速 破招) 12450": {"id": 94380, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿靴 (加速 破招) 12450": {"id": 94379, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微靴 (加速 破招) 12450": {"id": 94378, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓靴 (加速 破招) 12450": {"id": 94377, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临旭鞋 (会心 破招) 12400": {"id": 90522, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临晨鞋 (会心 破招) 12400": {"id": 90521, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临虹鞋 (会心 破招) 12400": {"id": 90520, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "all_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临宇鞋 (会心 破招) 12400": {"id": 90519, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风靴 (破防 无双) 12300": {"id": 97848, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云靴 (会心 无双) 12300": {"id": 96091, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风靴 (会心 无双) 12300": {"id": 96090, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨靴 (会心 无双) 12300": {"id": 96089, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪靴 (会心 无双) 12300": {"id": 96088, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹靴 (破防 无双) 12300": {"id": 94306, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青靴 (破防 无双) 12300": {"id": 94304, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀靴 (破防 无双) 12300": {"id": 94301, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄靴 (破防 无双) 12300": {"id": 94300, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒靴 (破防 无双) 12300": {"id": 94298, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·霜故靴 (破防 无双) 12300": {"id": 94291, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼靴 (破防 无双) 12300": {"id": 94290, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆靴 (破防 无双) 12300": {"id": 94286, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄靴 (破防 无双) 12300": {"id": 94285, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心靴 (破防 无双) 12300": {"id": 94284, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声靴 (破防 无双) 12300": {"id": 94280, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台靴 (破防 无双) 12300": {"id": 94278, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念靴 (加速 无双) 12300": {"id": 90654, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江靴 (加速 无双) 12300": {"id": 90653, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦靴 (加速 无双) 12300": {"id": 90652, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰靴 (加速 无双) 12300": {"id": 90651, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱靴 (破防 破招) 12300": {"id": 90618, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌靴 (破防 破招) 12300": {"id": 90617, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳靴 (破防 破招) 12300": {"id": 90616, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐靴 (破防 破招) 12300": {"id": 90615, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱靴 (加速 破招) 12300": {"id": 90582, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦靴 (加速 破招) 12300": {"id": 90581, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭靴 (加速 破招) 12300": {"id": 90580, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南靴 (加速 破招) 12300": {"id": 90579, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱靴 (会心 无双) 12300": {"id": 90546, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双靴 (会心 无双) 12300": {"id": 90545, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜靴 (会心 无双) 12300": {"id": 90544, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云靴 (会心 无双) 12300": {"id": 90543, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁履 (会心 破招) 12300": {"id": 90414, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬履 (会心 破招) 12300": {"id": 90413, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜履 (会心 破招) 12300": {"id": 90412, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安履 (会心 破招) 12300": {"id": 90411, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝靴 (破防 破招) 12300": {"id": 90378, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰靴 (破防 破招) 12300": {"id": 90377, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔靴 (破防 破招) 12300": {"id": 90376, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨靴 (破防 破招) 12300": {"id": 90375, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳履 (加速 无双) 12300": {"id": 90342, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关履 (加速 无双) 12300": {"id": 90341, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐履 (加速 无双) 12300": {"id": 90340, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄履 (加速 无双) 12300": {"id": 90339, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 12100": {"id": 94562, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus_base": 2308, "physical_overcome_base": 2803, "strain_base": 1649}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 会心) 12100": {"id": 94561, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3380, "physical_overcome_base": 3380}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心) 12100": {"id": 94560, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "physical_critical_strike_base": 5853}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 破招 无双) 12100": {"id": 94559, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "surplus_base": 2308, "magical_overcome_base": 2803, "strain_base": 1649}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (破防 会心) 12100": {"id": 94558, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "all_critical_strike_base": 3380, "magical_overcome_base": 3380}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封鞋 (会心) 12100": {"id": 94557, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3011, "all_critical_strike_base": 5853}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉靴#98493(破防 破招) 15800": {"id": 98493, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽靴#98492(破防 破招) 15800": {"id": 98492, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓靴#98491(破防 破招) 15800": {"id": 98491, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川靴#98490(破防 破招) 15800": {"id": 98490, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落靴#98595(会心 破招) 15600": {"id": 98595, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠靴#98594(会心 破招) 15600": {"id": 98594, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟靴#98593(会心 破招) 15600": {"id": 98593, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤靴#98592(会心 破招) 15600": {"id": 98592, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困靴#98421(会心 无双) 15600": {"id": 98421, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落靴#98420(会心 无双) 15600": {"id": 98420, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安靴#98419(会心 无双) 15600": {"id": 98419, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义靴#98418(会心 无双) 15600": {"id": 98418, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀靴#98385(加速 破招) 15600": {"id": 98385, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪靴#98384(加速 破招) 15600": {"id": 98384, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙靴#98383(加速 破招) 15600": {"id": 98383, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城靴#98382(加速 破招) 15600": {"id": 98382, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸靴#98309(破防 无双) 15400": {"id": 98309, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜靴#98308(破防 无双) 15400": {"id": 98308, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林靴#98306(破防 无双) 15400": {"id": 98306, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼靴#98303(破防 无双) 15400": {"id": 98303, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁靴#98302(破防 无双) 15400": {"id": 98302, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲靴#98300(破防 无双) 15400": {"id": 98300, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·旌声靴#98298(破防 无双) 15400": {"id": 98298, "school": "苍云", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192044", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "鸿辉·雨痕靴#98293(破防 无双) 15400": {"id": 98293, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江靴#98292(破防 无双) 15400": {"id": 98292, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦靴#98288(破防 无双) 15400": {"id": 98288, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛靴#98287(破防 无双) 15400": {"id": 98287, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬靴#98286(破防 无双) 15400": {"id": 98286, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧靴#98282(破防 无双) 15400": {"id": 98282, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法靴#98280(破防 无双) 15400": {"id": 98280, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_overcome_base": 3777, "strain_base": 3357}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "无封鞋#98579(会心 破招 无双) 15200": {"id": 98579, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus_base": 2278, "physical_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98578(破防 无双) 15200": {"id": 98578, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98577(无双) 15200": {"id": 98577, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "strain_base": 7352}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98576(会心 破招 无双) 15200": {"id": 98576, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "surplus_base": 2278, "all_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98575(破防 无双) 15200": {"id": 98575, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "magical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98574(无双) 15200": {"id": 98574, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3783, "strain_base": 7352}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98555(破防 破招 无双) 14350": {"id": 98555, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus_base": 2737, "physical_overcome_base": 3324, "strain_base": 1955}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98554(破防 会心) 14350": {"id": 98554, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 4008, "physical_overcome_base": 4008}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98553(会心) 14350": {"id": 98553, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "physical_critical_strike_base": 6941}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98552(破防 破招 无双) 14350": {"id": 98552, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "surplus_base": 2737, "magical_overcome_base": 3324, "strain_base": 1955}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98551(破防 会心) 14350": {"id": 98551, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "all_critical_strike_base": 4008, "magical_overcome_base": 4008}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#98550(会心) 14350": {"id": 98550, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3571, "all_critical_strike_base": 6941}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风停靴#96379(破防 破招) 14150": {"id": 96379, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈靴#96378(破防 破招) 14150": {"id": 96378, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫靴#96377(破防 破招) 14150": {"id": 96377, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻靴#96376(破防 破招) 14150": {"id": 96376, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇靴#98691(会心 无双) 13950": {"id": 98691, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光靴#98690(会心 无双) 13950": {"id": 98690, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼靴#98689(会心 无双) 13950": {"id": 98689, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适靴#98688(会心 无双) 13950": {"id": 98688, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危光靴#98199(破防 无双) 13950": {"id": 98199, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨靴#98198(破防 无双) 13950": {"id": 98198, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危影靴#98197(破防 无双) 13950": {"id": 98197, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危音靴#98196(破防 无双) 13950": {"id": 98196, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽靴#96489(会心 破招) 13950": {"id": 96489, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺靴#96488(会心 破招) 13950": {"id": 96488, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓靴#96487(会心 破招) 13950": {"id": 96487, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合靴#96486(会心 破招) 13950": {"id": 96486, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁靴#96307(会心 无双) 13950": {"id": 96307, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦靴#96306(会心 无双) 13950": {"id": 96306, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云靴#96305(会心 无双) 13950": {"id": 96305, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡靴#96304(会心 无双) 13950": {"id": 96304, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣靴#96271(加速 破招) 13950": {"id": 96271, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行靴#96270(加速 破招) 13950": {"id": 96270, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐靴#96269(加速 破招) 13950": {"id": 96269, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英靴#96268(加速 破招) 13950": {"id": 96268, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋靴#98175(会心 无双) 13750": {"id": 98175, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪靴#98174(会心 无双) 13750": {"id": 98174, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉靴#98173(会心 无双) 13750": {"id": 98173, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "all_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月靴#98172(会心 无双) 13750": {"id": 98172, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林靴#96195(破防 无双) 13750": {"id": 96195, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归靴#96194(破防 无双) 13750": {"id": 96194, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳靴#96192(破防 无双) 13750": {"id": 96192, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛靴#96189(破防 无双) 13750": {"id": 96189, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜靴#96188(破防 无双) 13750": {"id": 96188, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音靴#96186(破防 无双) 13750": {"id": 96186, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·肃晓靴#96184(破防 无双) 13750": {"id": 96184, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·闻箫靴#96179(破防 无双) 13750": {"id": 96179, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿靴#96178(破防 无双) 13750": {"id": 96178, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪靴#96174(破防 无双) 13750": {"id": 96174, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿靴#96173(破防 无双) 13750": {"id": 96173, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐靴#96172(破防 无双) 13750": {"id": 96172, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧靴#96168(破防 无双) 13750": {"id": 96168, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行靴#96166(破防 无双) 13750": {"id": 96166, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "无封鞋#96473(会心 会效 无双) 13550": {"id": 96473, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846, "strain_base": 2031}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96472(破招 无双) 13550": {"id": 96472, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus_base": 3785, "strain_base": 3785}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96471(破防) 13550": {"id": 96471, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96470(会心 会效 无双) 13550": {"id": 96470, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "all_critical_strike_base": 3508, "all_critical_power_base": 1846, "strain_base": 2031}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96469(破招 无双) 13550": {"id": 96469, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "surplus_base": 3785, "strain_base": 3785}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96468(破防) 13550": {"id": 96468, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3372, "magical_overcome_base": 6554}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96447(会心 破招 无双) 12800": {"id": 96447, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "surplus_base": 1918, "physical_critical_strike_base": 3314, "strain_base": 1918}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96446(破防 无双) 12800": {"id": 96446, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 3488, "strain_base": 3662}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96445(无双) 12800": {"id": 96445, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "strain_base": 6191}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96444(会心 破招 无双) 12800": {"id": 96444, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "surplus_base": 1918, "all_critical_strike_base": 3314, "strain_base": 1918}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96443(破防 无双) 12800": {"id": 96443, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "magical_overcome_base": 3488, "strain_base": 3662}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#96442(无双) 12800": {"id": 96442, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3185, "strain_base": 6191}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫靴#94476(破防 破招) 12600": {"id": 94476, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞靴#94475(破防 破招) 12600": {"id": 94475, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁靴#94474(破防 破招) 12600": {"id": 94474, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满靴#94473(破防 破招) 12600": {"id": 94473, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒靴#96585(会心 无双) 12450": {"id": 96585, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠靴#96584(会心 无双) 12450": {"id": 96584, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声靴#96583(会心 无双) 12450": {"id": 96583, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书靴#96582(会心 无双) 12450": {"id": 96582, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月靴#94578(会心 破招) 12450": {"id": 94578, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静靴#94577(会心 破招) 12450": {"id": 94577, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟靴#94576(会心 破招) 12450": {"id": 94576, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂靴#94575(会心 破招) 12450": {"id": 94575, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞靴#94416(会心 无双) 12450": {"id": 94416, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃靴#94415(会心 无双) 12450": {"id": 94415, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡靴#94414(会心 无双) 12450": {"id": 94414, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华靴#94413(会心 无双) 12450": {"id": 94413, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野靴#94380(加速 破招) 12450": {"id": 94380, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿靴#94379(加速 破招) 12450": {"id": 94379, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微靴#94378(加速 破招) 12450": {"id": 94378, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓靴#94377(加速 破招) 12450": {"id": 94377, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临旭鞋#90522(会心 破招) 12400": {"id": 90522, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临晨鞋#90521(会心 破招) 12400": {"id": 90521, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临虹鞋#90520(会心 破招) 12400": {"id": 90520, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "all_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临宇鞋#90519(会心 破招) 12400": {"id": 90519, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风靴#97848(破防 无双) 12300": {"id": 97848, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云靴#96091(会心 无双) 12300": {"id": 96091, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风靴#96090(会心 无双) 12300": {"id": 96090, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨靴#96089(会心 无双) 12300": {"id": 96089, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪靴#96088(会心 无双) 12300": {"id": 96088, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹靴#94306(破防 无双) 12300": {"id": 94306, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青靴#94304(破防 无双) 12300": {"id": 94304, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀靴#94301(破防 无双) 12300": {"id": 94301, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄靴#94300(破防 无双) 12300": {"id": 94300, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒靴#94298(破防 无双) 12300": {"id": 94298, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·弦夜靴#94296(破防 无双) 12300": {"id": 94296, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·霜故靴#94291(破防 无双) 12300": {"id": 94291, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼靴#94290(破防 无双) 12300": {"id": 94290, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆靴#94286(破防 无双) 12300": {"id": 94286, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄靴#94285(破防 无双) 12300": {"id": 94285, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心靴#94284(破防 无双) 12300": {"id": 94284, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声靴#94280(破防 无双) 12300": {"id": 94280, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台靴#94278(破防 无双) 12300": {"id": 94278, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念靴#90654(加速 无双) 12300": {"id": 90654, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江靴#90653(加速 无双) 12300": {"id": 90653, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦靴#90652(加速 无双) 12300": {"id": 90652, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰靴#90651(加速 无双) 12300": {"id": 90651, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱靴#90618(破防 破招) 12300": {"id": 90618, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌靴#90617(破防 破招) 12300": {"id": 90617, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳靴#90616(破防 破招) 12300": {"id": 90616, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐靴#90615(破防 破招) 12300": {"id": 90615, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱靴#90582(加速 破招) 12300": {"id": 90582, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "agility_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦靴#90581(加速 破招) 12300": {"id": 90581, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭靴#90580(加速 破招) 12300": {"id": 90580, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南靴#90579(加速 破招) 12300": {"id": 90579, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "spirit_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱靴#90546(会心 无双) 12300": {"id": 90546, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"agility_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双靴#90545(会心 无双) 12300": {"id": 90545, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜靴#90544(会心 无双) 12300": {"id": 90544, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云靴#90543(会心 无双) 12300": {"id": 90543, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spirit_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁履#90414(会心 破招) 12300": {"id": 90414, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬履#90413(会心 破招) 12300": {"id": 90413, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜履#90412(会心 破招) 12300": {"id": 90412, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安履#90411(会心 破招) 12300": {"id": 90411, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝靴#90378(破防 破招) 12300": {"id": 90378, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰靴#90377(破防 破招) 12300": {"id": 90377, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔靴#90376(破防 破招) 12300": {"id": 90376, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨靴#90375(破防 破招) 12300": {"id": 90375, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"surplus_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳履#90342(加速 无双) 12300": {"id": 90342, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关履#90341(加速 无双) 12300": {"id": 90341, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐履#90340(加速 无双) 12300": {"id": 90340, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄履#90339(加速 无双) 12300": {"id": 90339, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94562(破防 破招 无双) 12100": {"id": 94562, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus_base": 2308, "physical_overcome_base": 2803, "strain_base": 1649}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94561(破防 会心) 12100": {"id": 94561, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3380, "physical_overcome_base": 3380}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94560(会心) 12100": {"id": 94560, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "physical_critical_strike_base": 5853}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94559(破防 破招 无双) 12100": {"id": 94559, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "surplus_base": 2308, "magical_overcome_base": 2803, "strain_base": 1649}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94558(破防 会心) 12100": {"id": 94558, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "all_critical_strike_base": 3380, "magical_overcome_base": 3380}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封鞋#94557(会心) 12100": {"id": 94557, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3011, "all_critical_strike_base": 5853}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/tertiary_weapon b/qt/assets/equipments/tertiary_weapon index c01f4d4f71308a4b69870bb9e3faf0d2bc26731b..6f5a021a366ceefd5edd5c3784c88130e4b595de 100644 --- a/qt/assets/equipments/tertiary_weapon +++ b/qt/assets/equipments/tertiary_weapon @@ -1 +1 @@ -{"月落囊 (会心 破招) 15600": {"id": 37307, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠囊 (会心 破招) 15600": {"id": 37306, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟囊 (会心 破招) 15600": {"id": 37305, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "all_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤囊 (会心 破招) 15600": {"id": 37304, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器 (破防 破招) 15600": {"id": 37253, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_overcome_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困囊 (会心 无双) 15600": {"id": 37188, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落囊 (会心 无双) 15600": {"id": 37187, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安囊 (会心 无双) 15600": {"id": 37186, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "all_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义囊 (会心 无双) 15600": {"id": 37185, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀囊 (加速 破招) 15600": {"id": 37182, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus_base": 2915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪囊 (加速 破招) 15600": {"id": 37181, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus_base": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙囊 (加速 破招) 15600": {"id": 37180, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "haste_base": 3279, "surplus_base": 2915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城囊 (加速 破招) 15600": {"id": 37179, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "haste_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 15200": {"id": 37303, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "surplus_base": 1953, "physical_critical_strike_base": 3373, "physical_critical_power_base": 1775}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效) 15200": {"id": 37302, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "physical_critical_strike_base": 4438, "physical_critical_power_base": 2663}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防) 15200": {"id": 37301, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2702, "physical_overcome_base": 6302}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 会效 破招) 15200": {"id": 37300, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2765, "surplus_base": 1953, "all_critical_strike_base": 3373, "all_critical_power_base": 1775}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 会效) 15200": {"id": 37299, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2765, "all_critical_strike_base": 4438, "all_critical_power_base": 2663}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防) 15200": {"id": 37298, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3242, "magical_overcome_base": 6302}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 14350": {"id": 37297, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "physical_overcome_base": 2430, "physical_critical_strike_base": 2598, "physical_critical_power_base": 1676}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 破招) 14350": {"id": 37296, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "surplus_base": 3519, "physical_critical_strike_base": 3352}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (无双) 14350": {"id": 37295, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2551, "strain_base": 5949}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防 会心 会效) 14350": {"id": 37294, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2611, "magical_overcome_base": 2430, "all_critical_strike_base": 2598, "all_critical_power_base": 1676}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 破招) 14350": {"id": 37293, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2611, "surplus_base": 3519, "all_critical_strike_base": 3352}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (无双) 14350": {"id": 37292, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3061, "strain_base": 5949}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·天宇囊 (会心 无双) 13950": {"id": 37408, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光囊 (会心 无双) 13950": {"id": 37407, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼囊 (会心 无双) 13950": {"id": 37406, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适囊 (会心 无双) 13950": {"id": 37405, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光囊 (会心 破招) 13950": {"id": 37145, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨囊 (会心 破招) 13950": {"id": 37144, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影囊 (会心 破招) 13950": {"id": 37143, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音囊 (会心 破招) 13950": {"id": 37142, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽囊 (会心 破招) 13950": {"id": 35838, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺囊 (会心 破招) 13950": {"id": 35837, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓囊 (会心 破招) 13950": {"id": 35836, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合囊 (会心 破招) 13950": {"id": 35835, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓盈囊 (破防 破招) 13950": {"id": 35785, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "越既囊 (破防 破招) 13950": {"id": 35784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凝疏囊 (破防 破招) 13950": {"id": 35783, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枝绫囊 (破防 破招) 13950": {"id": 35782, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁囊 (会心 无双) 13950": {"id": 35717, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦囊 (会心 无双) 13950": {"id": 35716, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云囊 (会心 无双) 13950": {"id": 35715, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡囊 (会心 无双) 13950": {"id": 35714, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣囊 (加速 破招) 13950": {"id": 35711, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行囊 (加速 破招) 13950": {"id": 35710, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐囊 (加速 破招) 13950": {"id": 35709, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英囊 (加速 破招) 13950": {"id": 35708, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 破招) 13550": {"id": 35834, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2267, "surplus_base": 1899, "physical_overcome_base": 2057, "physical_critical_strike_base": 2057}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 破招) 13550": {"id": 35833, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2054, "surplus_base": 3165, "physical_overcome_base": 3323}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心) 13550": {"id": 35832, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2409, "physical_critical_strike_base": 5618}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防 会心 破招) 13550": {"id": 35831, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2720, "surplus_base": 1899, "magical_overcome_base": 2057, "all_critical_strike_base": 2057}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防 破招) 13550": {"id": 35830, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2465, "surplus_base": 3165, "magical_overcome_base": 3323}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心) 13550": {"id": 35829, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2890, "all_critical_strike_base": 5618}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·望 (破防 无双) 13400": {"id": 37108, "school": "通用", "kind": "身法", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·聆 (破防 无双) 13400": {"id": 37107, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·照 (破防 无双) 13400": {"id": 37106, "school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·琢 (破防 无双) 13400": {"id": 37105, "school": "通用", "kind": "根骨", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 12800": {"id": 35826, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "surplus_base": 1644, "physical_critical_strike_base": 2840, "physical_critical_power_base": 1495}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效) 12800": {"id": 35825, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "physical_critical_strike_base": 3737, "physical_critical_power_base": 2242}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防) 12800": {"id": 35824, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2275, "physical_overcome_base": 5307}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 会效 破招) 12800": {"id": 35823, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "surplus_base": 1644, "all_critical_strike_base": 2840, "all_critical_power_base": 1495}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 会效) 12800": {"id": 35822, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "all_critical_strike_base": 3737, "all_critical_power_base": 2242}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防) 12800": {"id": 35821, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2730, "magical_overcome_base": 5307}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "翠林囊 (破防 无双) 12600": {"id": 36536, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "静山囊 (破防 无双) 12600": {"id": 36535, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "幽川囊 (破防 无双) 12600": {"id": 36534, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月囊 (破防 无双) 12600": {"id": 36533, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒囊 (会心 无双) 12450": {"id": 35939, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠囊 (会心 无双) 12450": {"id": 35938, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声囊 (会心 无双) 12450": {"id": 35937, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书囊 (会心 无双) 12450": {"id": 35936, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月囊 (会心 破招) 12450": {"id": 34819, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静囊 (会心 破招) 12450": {"id": 34818, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟囊 (会心 破招) 12450": {"id": 34817, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂囊 (会心 破招) 12450": {"id": 34816, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "度槐囊 (破防 破招) 12450": {"id": 34769, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微花囊 (破防 破招) 12450": {"id": 34768, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "道迟囊 (破防 破招) 12450": {"id": 34767, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "溪柔囊 (破防 破招) 12450": {"id": 34766, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞囊 (会心 无双) 12450": {"id": 34703, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃囊 (会心 无双) 12450": {"id": 34702, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡囊 (会心 无双) 12450": {"id": 34701, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华囊 (会心 无双) 12450": {"id": 34700, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野囊 (加速 破招) 12450": {"id": 34697, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿囊 (加速 破招) 12450": {"id": 34696, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微囊 (加速 破招) 12450": {"id": 34695, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓囊 (加速 破招) 12450": {"id": 34694, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临晚囊 (会心 无双) 12400": {"id": 32547, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临掣囊 (会心 无双) 12400": {"id": 32546, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临甘囊 (会心 无双) 12400": {"id": 32545, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 520, "magical_attack_power_base": 1011, "all_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临珏囊 (会心 无双) 12400": {"id": 32544, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 520, "magical_attack_power_base": 1011, "magical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "牵叶 (会心 无双) 12300": {"id": 32697, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宸风 (会心 无双) 12300": {"id": 32696, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "昭夏 (会心 无双) 12300": {"id": 32695, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "all_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "思勉 (会心 无双) 12300": {"id": 32694, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念囊 (破防 无双) 12300": {"id": 32661, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江囊 (破防 无双) 12300": {"id": 32660, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦囊 (破防 无双) 12300": {"id": 32659, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰囊 (破防 无双) 12300": {"id": 32658, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱囊 (加速 无双) 12300": {"id": 32625, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌囊 (加速 无双) 12300": {"id": 32624, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳囊 (加速 无双) 12300": {"id": 32623, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "haste_base": 2586, "strain_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐囊 (加速 无双) 12300": {"id": 32622, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "haste_base": 2586, "strain_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱囊 (破防 破招) 12300": {"id": 32589, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦囊 (破防 破招) 12300": {"id": 32588, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭囊 (破防 破招) 12300": {"id": 32587, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南囊 (破防 破招) 12300": {"id": 32586, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱囊 (破招 无双) 12300": {"id": 32553, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双囊 (破招 无双) 12300": {"id": 32552, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜囊 (破招 无双) 12300": {"id": 32551, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云囊 (破招 无双) 12300": {"id": 32550, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁囊 (会心 破招) 12300": {"id": 32493, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬囊 (会心 破招) 12300": {"id": 32492, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜囊 (会心 破招) 12300": {"id": 32491, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "all_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安囊 (会心 破招) 12300": {"id": 32490, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝囊 (破防 无双) 12300": {"id": 32457, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰囊 (破防 无双) 12300": {"id": 32456, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔囊 (破防 无双) 12300": {"id": 32455, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨囊 (破防 无双) 12300": {"id": 32454, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳囊 (破防 破招) 12300": {"id": 32421, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关囊 (破防 破招) 12300": {"id": 32420, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐囊 (破防 破招) 12300": {"id": 32419, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄囊 (破防 破招) 12300": {"id": 32418, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 12100": {"id": 34815, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "physical_overcome_base": 2049, "physical_critical_strike_base": 2190, "physical_critical_power_base": 1413}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 破招) 12100": {"id": 34814, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "surplus_base": 2968, "physical_critical_strike_base": 2826}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (无双) 12100": {"id": 34813, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2151, "strain_base": 5017}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (破防 会心 会效) 12100": {"id": 34812, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "magical_overcome_base": 2049, "all_critical_strike_base": 2190, "all_critical_power_base": 1413}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (会心 破招) 12100": {"id": 34811, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "surplus_base": 2968, "all_critical_strike_base": 2826}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封囊 (无双) 12100": {"id": 34810, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2581, "strain_base": 5017}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·嘲风 (破防 无双) 12000": {"id": 35637, "school": "通用", "kind": "身法", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·螭吻 (破防 无双) 12000": {"id": 35636, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·睚眦 (破防 无双) 12000": {"id": 35635, "school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·囚牛 (破防 无双) 12000": {"id": 35634, "school": "通用", "kind": "根骨", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"月落囊#37307(会心 破招) 15600": {"id": 37307, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠囊#37306(会心 破招) 15600": {"id": 37306, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟囊#37305(会心 破招) 15600": {"id": 37305, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "all_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤囊#37304(会心 破招) 15600": {"id": 37304, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_critical_strike_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#37256(破防 破招) 15600": {"id": 37256, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "physical_overcome_base": 3279, "surplus_base": 2915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#37255(破防 破招) 15600": {"id": 37255, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_overcome_base": 3279, "surplus_base": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#37254(破防 破招) 15600": {"id": 37254, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "magical_overcome_base": 3279, "surplus_base": 2915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器#37253(破防 破招) 15600": {"id": 37253, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_overcome_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "救困囊#37188(会心 无双) 15600": {"id": 37188, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落囊#37187(会心 无双) 15600": {"id": 37187, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "良安囊#37186(会心 无双) 15600": {"id": 37186, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "all_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "情义囊#37185(会心 无双) 15600": {"id": 37185, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "magical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀囊#37182(加速 破招) 15600": {"id": 37182, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus_base": 2915}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪囊#37181(加速 破招) 15600": {"id": 37181, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus_base": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙囊#37180(加速 破招) 15600": {"id": 37180, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 654, "magical_attack_power_base": 1272, "haste_base": 3279, "surplus_base": 2915}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城囊#37179(加速 破招) 15600": {"id": 37179, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 654, "magical_attack_power_base": 1272, "haste_base": 3279, "surplus_base": 2915}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37303(会心 会效 破招) 15200": {"id": 37303, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "surplus_base": 1953, "physical_critical_strike_base": 3373, "physical_critical_power_base": 1775}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37302(会心 会效) 15200": {"id": 37302, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "physical_critical_strike_base": 4438, "physical_critical_power_base": 2663}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37301(破防) 15200": {"id": 37301, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2702, "physical_overcome_base": 6302}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37300(会心 会效 破招) 15200": {"id": 37300, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2765, "surplus_base": 1953, "all_critical_strike_base": 3373, "all_critical_power_base": 1775}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37299(会心 会效) 15200": {"id": 37299, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2765, "all_critical_strike_base": 4438, "all_critical_power_base": 2663}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37298(破防) 15200": {"id": 37298, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3242, "magical_overcome_base": 6302}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37297(破防 会心 会效) 14350": {"id": 37297, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "physical_overcome_base": 2430, "physical_critical_strike_base": 2598, "physical_critical_power_base": 1676}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37296(会心 破招) 14350": {"id": 37296, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "surplus_base": 3519, "physical_critical_strike_base": 3352}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37295(无双) 14350": {"id": 37295, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2551, "strain_base": 5949}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37294(破防 会心 会效) 14350": {"id": 37294, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2611, "magical_overcome_base": 2430, "all_critical_strike_base": 2598, "all_critical_power_base": 1676}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37293(会心 破招) 14350": {"id": 37293, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2611, "surplus_base": 3519, "all_critical_strike_base": 3352}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#37292(无双) 14350": {"id": 37292, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3061, "strain_base": 5949}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·天宇囊#37408(会心 无双) 13950": {"id": 37408, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光囊#37407(会心 无双) 13950": {"id": 37407, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼囊#37406(会心 无双) 13950": {"id": 37406, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适囊#37405(会心 无双) 13950": {"id": 37405, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危光囊#37145(会心 破招) 13950": {"id": 37145, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨囊#37144(会心 破招) 13950": {"id": 37144, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危影囊#37143(会心 破招) 13950": {"id": 37143, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危音囊#37142(会心 破招) 13950": {"id": 37142, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽囊#35838(会心 破招) 13950": {"id": 35838, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺囊#35837(会心 破招) 13950": {"id": 35837, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓囊#35836(会心 破招) 13950": {"id": 35836, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合囊#35835(会心 破招) 13950": {"id": 35835, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓盈囊#35785(破防 破招) 13950": {"id": 35785, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "越既囊#35784(破防 破招) 13950": {"id": 35784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凝疏囊#35783(破防 破招) 13950": {"id": 35783, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枝绫囊#35782(破防 破招) 13950": {"id": 35782, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁囊#35717(会心 无双) 13950": {"id": 35717, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦囊#35716(会心 无双) 13950": {"id": 35716, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云囊#35715(会心 无双) 13950": {"id": 35715, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡囊#35714(会心 无双) 13950": {"id": 35714, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣囊#35711(加速 破招) 13950": {"id": 35711, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus_base": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行囊#35710(加速 破招) 13950": {"id": 35710, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus_base": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐囊#35709(加速 破招) 13950": {"id": 35709, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus_base": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英囊#35708(加速 破招) 13950": {"id": 35708, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus_base": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35834(破防 会心 破招) 13550": {"id": 35834, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2267, "surplus_base": 1899, "physical_overcome_base": 2057, "physical_critical_strike_base": 2057}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35833(破防 破招) 13550": {"id": 35833, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2054, "surplus_base": 3165, "physical_overcome_base": 3323}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35832(会心) 13550": {"id": 35832, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2409, "physical_critical_strike_base": 5618}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35831(破防 会心 破招) 13550": {"id": 35831, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2720, "surplus_base": 1899, "magical_overcome_base": 2057, "all_critical_strike_base": 2057}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35830(破防 破招) 13550": {"id": 35830, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2465, "surplus_base": 3165, "magical_overcome_base": 3323}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35829(会心) 13550": {"id": 35829, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2890, "all_critical_strike_base": 5618}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·望#37108(破防 无双) 13400": {"id": 37108, "school": "通用", "kind": "身法", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·聆#37107(破防 无双) 13400": {"id": 37107, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·照#37106(破防 无双) 13400": {"id": 37106, "school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·琢#37105(破防 无双) 13400": {"id": 37105, "school": "通用", "kind": "根骨", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35826(会心 会效 破招) 12800": {"id": 35826, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "surplus_base": 1644, "physical_critical_strike_base": 2840, "physical_critical_power_base": 1495}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35825(会心 会效) 12800": {"id": 35825, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "physical_critical_strike_base": 3737, "physical_critical_power_base": 2242}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35824(破防) 12800": {"id": 35824, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2275, "physical_overcome_base": 5307}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35823(会心 会效 破招) 12800": {"id": 35823, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "surplus_base": 1644, "all_critical_strike_base": 2840, "all_critical_power_base": 1495}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35822(会心 会效) 12800": {"id": 35822, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "all_critical_strike_base": 3737, "all_critical_power_base": 2242}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#35821(破防) 12800": {"id": 35821, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2730, "magical_overcome_base": 5307}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "翠林囊#36536(破防 无双) 12600": {"id": 36536, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "静山囊#36535(破防 无双) 12600": {"id": 36535, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "幽川囊#36534(破防 无双) 12600": {"id": 36534, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月囊#36533(破防 无双) 12600": {"id": 36533, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒囊#35939(会心 无双) 12450": {"id": 35939, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠囊#35938(会心 无双) 12450": {"id": 35938, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声囊#35937(会心 无双) 12450": {"id": 35937, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书囊#35936(会心 无双) 12450": {"id": 35936, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月囊#34819(会心 破招) 12450": {"id": 34819, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静囊#34818(会心 破招) 12450": {"id": 34818, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟囊#34817(会心 破招) 12450": {"id": 34817, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂囊#34816(会心 破招) 12450": {"id": 34816, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "度槐囊#34769(破防 破招) 12450": {"id": 34769, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微花囊#34768(破防 破招) 12450": {"id": 34768, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "道迟囊#34767(破防 破招) 12450": {"id": 34767, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "溪柔囊#34766(破防 破招) 12450": {"id": 34766, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞囊#34703(会心 无双) 12450": {"id": 34703, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃囊#34702(会心 无双) 12450": {"id": 34702, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡囊#34701(会心 无双) 12450": {"id": 34701, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华囊#34700(会心 无双) 12450": {"id": 34700, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野囊#34697(加速 破招) 12450": {"id": 34697, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus_base": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿囊#34696(加速 破招) 12450": {"id": 34696, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus_base": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微囊#34695(加速 破招) 12450": {"id": 34695, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus_base": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓囊#34694(加速 破招) 12450": {"id": 34694, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus_base": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临晚囊#32547(会心 无双) 12400": {"id": 32547, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临掣囊#32546(会心 无双) 12400": {"id": 32546, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临甘囊#32545(会心 无双) 12400": {"id": 32545, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 520, "magical_attack_power_base": 1011, "all_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临珏囊#32544(会心 无双) 12400": {"id": 32544, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 520, "magical_attack_power_base": 1011, "magical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "牵叶#32697(会心 无双) 12300": {"id": 32697, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宸风#32696(会心 无双) 12300": {"id": 32696, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "昭夏#32695(会心 无双) 12300": {"id": 32695, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "all_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "思勉#32694(会心 无双) 12300": {"id": 32694, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "久念囊#32661(破防 无双) 12300": {"id": 32661, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江囊#32660(破防 无双) 12300": {"id": 32660, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦囊#32659(破防 无双) 12300": {"id": 32659, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰囊#32658(破防 无双) 12300": {"id": 32658, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱囊#32625(加速 无双) 12300": {"id": 32625, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌囊#32624(加速 无双) 12300": {"id": 32624, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳囊#32623(加速 无双) 12300": {"id": 32623, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "haste_base": 2586, "strain_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐囊#32622(加速 无双) 12300": {"id": 32622, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "haste_base": 2586, "strain_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱囊#32589(破防 破招) 12300": {"id": 32589, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦囊#32588(破防 破招) 12300": {"id": 32588, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭囊#32587(破防 破招) 12300": {"id": 32587, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "途南囊#32586(破防 破招) 12300": {"id": 32586, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱囊#32553(破招 无双) 12300": {"id": 32553, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双囊#32552(破招 无双) 12300": {"id": 32552, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜囊#32551(破招 无双) 12300": {"id": 32551, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "故云囊#32550(破招 无双) 12300": {"id": 32550, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "surplus_base": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁囊#32493(会心 破招) 12300": {"id": 32493, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬囊#32492(会心 破招) 12300": {"id": 32492, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜囊#32491(会心 破招) 12300": {"id": 32491, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "all_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安囊#32490(会心 破招) 12300": {"id": 32490, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_critical_strike_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝囊#32457(破防 无双) 12300": {"id": 32457, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰囊#32456(破防 无双) 12300": {"id": 32456, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔囊#32455(破防 无双) 12300": {"id": 32455, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨囊#32454(破防 无双) 12300": {"id": 32454, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "strain_base": 2298}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳囊#32421(破防 破招) 12300": {"id": 32421, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关囊#32420(破防 破招) 12300": {"id": 32420, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐囊#32419(破防 破招) 12300": {"id": 32419, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄囊#32418(破防 破招) 12300": {"id": 32418, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 515, "magical_attack_power_base": 1003, "magical_overcome_base": 2586, "surplus_base": 2298}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34815(破防 会心 会效) 12100": {"id": 34815, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "physical_overcome_base": 2049, "physical_critical_strike_base": 2190, "physical_critical_power_base": 1413}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34814(会心 破招) 12100": {"id": 34814, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "surplus_base": 2968, "physical_critical_strike_base": 2826}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34813(无双) 12100": {"id": 34813, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2151, "strain_base": 5017}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34812(破防 会心 会效) 12100": {"id": 34812, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "magical_overcome_base": 2049, "all_critical_strike_base": 2190, "all_critical_power_base": 1413}, "embed": {"surplus_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34811(会心 破招) 12100": {"id": 34811, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "surplus_base": 2968, "all_critical_strike_base": 2826}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无封囊#34810(无双) 12100": {"id": 34810, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2581, "strain_base": 5017}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·嘲风#35637(破防 无双) 12000": {"id": 35637, "school": "通用", "kind": "身法", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·螭吻#35636(破防 无双) 12000": {"id": 35636, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·睚眦#35635(破防 无双) 12000": {"id": 35635, "school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·囚牛#35634(破防 无双) 12000": {"id": 35634, "school": "通用", "kind": "根骨", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/assets/equipments/wrist b/qt/assets/equipments/wrist index 814fafa3c443b2b2f1590287cd85ad7162d64ca6..bb032af0a4d78e08d3b42a093480a61f6af0d2e8 100644 --- a/qt/assets/equipments/wrist +++ b/qt/assets/equipments/wrist @@ -1 +1 @@ -{"水泉袖 (破防 破招) 15800": {"id": 98481, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽袖 (破防 破招) 15800": {"id": 98480, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓袖 (破防 破招) 15800": {"id": 98479, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川袖 (破防 破招) 15800": {"id": 98478, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落护手 (会心 破招) 15600": {"id": 98583, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠护手 (会心 破招) 15600": {"id": 98582, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟护手 (会心 破招) 15600": {"id": 98581, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤护手 (会心 破招) 15600": {"id": 98580, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧护手 (破防 破招) 15600": {"id": 98517, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远护手 (破防 破招) 15600": {"id": 98516, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气护手 (破防 破招) 15600": {"id": 98515, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎护手 (破防 破招) 15600": {"id": 98514, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夜苔护臂 (破防 破招) 15600": {"id": 98473, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "surplus_base": 4464, "physical_overcome_base": 4039}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "入影护臂 (无双) 15600": {"id": 98472, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7121}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "如光护臂 (破防 破招) 15600": {"id": 98471, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3197, "surplus_base": 4464, "magical_overcome_base": 4039}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "花绣护臂 (无双) 15600": {"id": 98470, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3882, "strain_base": 7121}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "云貌护腕 (破防 会心 破招) 15600": {"id": 98457, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3045, "surplus_base": 2551, "physical_overcome_base": 2763, "physical_critical_strike_base": 2763}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "茂松护腕 (破防 会心 破招) 15600": {"id": 98456, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3654, "surplus_base": 2551, "magical_overcome_base": 2763, "all_critical_strike_base": 2763}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "天直护腕 (破防 会心 会效) 15600": {"id": 98455, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 3082, "physical_critical_strike_base": 3295, "physical_critical_power_base": 2126}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "非色护腕 (破防 无双) 15600": {"id": 98454, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "金土护腕 (会心) 15600": {"id": 98453, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "分属护腕 (破防 会心 会效) 15600": {"id": 98452, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "magical_overcome_base": 3082, "all_critical_strike_base": 3295, "all_critical_power_base": 2126}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "赵以护腕 (破防 无双) 15600": {"id": 98451, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "magical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "年月护腕 (会心) 15600": {"id": 98450, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "all_critical_strike_base": 7546}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困护手 (破防 无双) 15600": {"id": 98409, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落护手 (破防 无双) 15600": {"id": 98408, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安护手 (破防 无双) 15600": {"id": 98407, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义护手 (破防 无双) 15600": {"id": 98406, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀护手 (会心 无双) 15600": {"id": 98373, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪护手 (会心 无双) 15600": {"id": 98372, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙护手 (会心 无双) 15600": {"id": 98371, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城护手 (会心 无双) 15600": {"id": 98370, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸护手 (会心 破招) 15400": {"id": 98249, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜护手 (会心 破招) 15400": {"id": 98248, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林护手 (会心 破招) 15400": {"id": 98246, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼护手 (会心 破招) 15400": {"id": 98243, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁护手 (会心 破招) 15400": {"id": 98242, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲护手 (会心 破招) 15400": {"id": 98240, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·雨痕护手 (会心 破招) 15400": {"id": 98233, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江护手 (会心 破招) 15400": {"id": 98232, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦护手 (会心 破招) 15400": {"id": 98228, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛护手 (会心 破招) 15400": {"id": 98227, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬护手 (会心 破招) 15400": {"id": 98226, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧护手 (会心 破招) 15400": {"id": 98222, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法护手 (会心 破招) 15400": {"id": 98220, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封护臂 (破防 会心 会效) 15200": {"id": 98567, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 3003, "physical_critical_strike_base": 3210, "physical_critical_power_base": 2071}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心) 15200": {"id": 98566, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_critical_strike_base": 4246, "physical_overcome_base": 4246}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 15200": {"id": 98565, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "physical_critical_strike_base": 7352}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心 会效) 15200": {"id": 98564, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "magical_overcome_base": 3003, "all_critical_strike_base": 3210, "all_critical_power_base": 2071}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心) 15200": {"id": 98563, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "all_critical_strike_base": 4246, "magical_overcome_base": 4246}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心) 15200": {"id": 98562, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3783, "all_critical_strike_base": 7352}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效 无双) 14350": {"id": 98543, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 3715, "physical_critical_power_base": 1955, "strain_base": 2151}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 14350": {"id": 98542, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus_base": 3910, "physical_overcome_base": 4106}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (无双) 14350": {"id": 98541, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "strain_base": 6941}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效 无双) 14350": {"id": 98540, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "all_critical_strike_base": 3715, "all_critical_power_base": 1955, "strain_base": 2151}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 破招) 14350": {"id": 98539, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "surplus_base": 3910, "magical_overcome_base": 4106}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (无双) 14350": {"id": 98538, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3571, "strain_base": 6941}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风停袖 (破防 破招) 14150": {"id": 96367, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈袖 (破防 破招) 14150": {"id": 96366, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫袖 (破防 破招) 14150": {"id": 96365, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻袖 (破防 破招) 14150": {"id": 96364, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇护手 (会心 破招) 13950": {"id": 98679, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光护手 (会心 破招) 13950": {"id": 98678, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼护手 (会心 破招) 13950": {"id": 98677, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适护手 (会心 破招) 13950": {"id": 98676, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽护手 (会心 破招) 13950": {"id": 96477, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺护手 (会心 破招) 13950": {"id": 96476, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓护手 (会心 破招) 13950": {"id": 96475, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合护手 (会心 破招) 13950": {"id": 96474, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月护手 (破防 破招) 13950": {"id": 96403, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手 (破防 破招) 13950": {"id": 96402, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意护手 (破防 破招) 13950": {"id": 96401, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠护手 (破防 破招) 13950": {"id": 96400, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "流晖护臂 (破防 破招) 13950": {"id": 96359, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "surplus_base": 3991, "physical_overcome_base": 3611}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "星风护臂 (无双) 13950": {"id": 96358, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6367}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "松辉护臂 (破防 破招) 13950": {"id": 96357, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2859, "surplus_base": 3991, "magical_overcome_base": 3611}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪遥护臂 (无双) 13950": {"id": 96356, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3472, "strain_base": 6367}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "灭影护腕 (破防 会心 破招) 13950": {"id": 96343, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2723, "surplus_base": 2281, "physical_overcome_base": 2471, "physical_critical_strike_base": 2471}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "双河护腕 (破防 会心 破招) 13950": {"id": 96342, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3267, "surplus_base": 2281, "magical_overcome_base": 2471, "all_critical_strike_base": 2471}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "逸遥护腕 (破防 会心 会效) 13950": {"id": 96341, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 2756, "physical_critical_strike_base": 2946, "physical_critical_power_base": 1901}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "道尘护腕 (破防 无双) 13950": {"id": 96340, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮峰护腕 (会心) 13950": {"id": 96339, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "淮泽护腕 (破防 会心 会效) 13950": {"id": 96338, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 2756, "all_critical_strike_base": 2946, "all_critical_power_base": 1901}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "言寓护腕 (破防 无双) 13950": {"id": 96337, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雨杨护腕 (会心) 13950": {"id": 96336, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "all_critical_strike_base": 6748}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁护手 (破防 无双) 13950": {"id": 96295, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦护手 (破防 无双) 13950": {"id": 96294, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云护手 (破防 无双) 13950": {"id": 96293, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡护手 (破防 无双) 13950": {"id": 96292, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣护手 (会心 无双) 13950": {"id": 96259, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行护手 (会心 无双) 13950": {"id": 96258, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐护手 (会心 无双) 13950": {"id": 96257, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英护手 (会心 无双) 13950": {"id": 96256, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋袖 (破防 破招) 13750": {"id": 98163, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪袖 (破防 破招) 13750": {"id": 98162, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉袖 (破防 破招) 13750": {"id": 98161, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月袖 (破防 破招) 13750": {"id": 98160, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林护手 (会心 破招) 13750": {"id": 96135, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归护手 (会心 破招) 13750": {"id": 96134, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳护手 (会心 破招) 13750": {"id": 96132, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛护手 (会心 破招) 13750": {"id": 96129, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜护手 (会心 破招) 13750": {"id": 96128, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音护手 (会心 破招) 13750": {"id": 96126, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·闻箫护手 (会心 破招) 13750": {"id": 96119, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿护手 (会心 破招) 13750": {"id": 96118, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪护手 (会心 破招) 13750": {"id": 96114, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿护手 (会心 破招) 13750": {"id": 96113, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐护手 (会心 破招) 13750": {"id": 96112, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧护手 (会心 破招) 13750": {"id": 96108, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行护手 (会心 破招) 13750": {"id": 96106, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封护臂 (会心 会效 破招) 13550": {"id": 96461, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus_base": 2031, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效) 13550": {"id": 96460, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 4616, "physical_critical_power_base": 2769}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防) 13550": {"id": 96459, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效 破招) 13550": {"id": 96458, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "surplus_base": 2031, "all_critical_strike_base": 3508, "all_critical_power_base": 1846}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效) 13550": {"id": 96457, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "all_critical_strike_base": 4616, "all_critical_power_base": 2769}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防) 13550": {"id": 96456, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3372, "magical_overcome_base": 6554}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心 会效) 12800": {"id": 96431, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 2529, "physical_critical_strike_base": 2703, "physical_critical_power_base": 1744}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心) 12800": {"id": 96430, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_critical_strike_base": 3575, "physical_overcome_base": 3575}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 12800": {"id": 96429, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "physical_critical_strike_base": 6191}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心 会效) 12800": {"id": 96428, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "magical_overcome_base": 2529, "all_critical_strike_base": 2703, "all_critical_power_base": 1744}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心) 12800": {"id": 96427, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "all_critical_strike_base": 3575, "magical_overcome_base": 3575}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心) 12800": {"id": 96426, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3185, "all_critical_strike_base": 6191}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫袖 (破防 破招) 12600": {"id": 94464, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞袖 (破防 破招) 12600": {"id": 94463, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁袖 (破防 破招) 12600": {"id": 94462, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满袖 (破防 破招) 12600": {"id": 94461, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒护手 (会心 破招) 12450": {"id": 96573, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠护手 (会心 破招) 12450": {"id": 96572, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声护手 (会心 破招) 12450": {"id": 96571, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书护手 (会心 破招) 12450": {"id": 96570, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月护手 (会心 破招) 12450": {"id": 94566, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静护手 (会心 破招) 12450": {"id": 94565, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟护手 (会心 破招) 12450": {"id": 94564, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂护手 (会心 破招) 12450": {"id": 94563, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配护手 (破防 破招) 12450": {"id": 94500, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花护手 (破防 破招) 12450": {"id": 94499, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世护手 (破防 破招) 12450": {"id": 94498, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓护手 (破防 破招) 12450": {"id": 94497, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夙辰护腕 (破招) 12450": {"id": 94452, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "surplus_base": 5683}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "熠羽护腕 (破招) 12450": {"id": 94451, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3098, "surplus_base": 5683}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "零雨护腕 (会心 无双) 12450": {"id": 94450, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "制野护腕 (破防 无双) 12450": {"id": 94449, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雨膏护腕 (破防 破招) 12450": {"id": 94448, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus_base": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "维则护腕 (会心 无双) 12450": {"id": 94447, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2187, "all_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风重护腕 (破防 无双) 12450": {"id": 94446, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "magical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "狂耳护腕 (破防 破招) 12450": {"id": 94445, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "surplus_base": 3562, "magical_overcome_base": 3223}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞护手 (破防 无双) 12450": {"id": 94404, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃护手 (破防 无双) 12450": {"id": 94403, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡护手 (破防 无双) 12450": {"id": 94402, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华护手 (破防 无双) 12450": {"id": 94401, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野护手 (会心 无双) 12450": {"id": 94368, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿护手 (会心 无双) 12450": {"id": 94367, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微护手 (会心 无双) 12450": {"id": 94366, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓护手 (会心 无双) 12450": {"id": 94365, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临钧护手 (会心 破招) 12400": {"id": 90510, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临英护手 (会心 破招) 12400": {"id": 90509, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临穹护手 (会心 破招) 12400": {"id": 90508, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "all_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临心护手 (会心 破招) 12400": {"id": 90507, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风护手 (会心 破招) 12300": {"id": 97846, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云袖 (破防 破招) 12300": {"id": 96079, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风袖 (破防 破招) 12300": {"id": 96078, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨袖 (破防 破招) 12300": {"id": 96077, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪袖 (破防 破招) 12300": {"id": 96076, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹护手 (会心 破招) 12300": {"id": 94248, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青护手 (会心 破招) 12300": {"id": 94246, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀护手 (会心 破招) 12300": {"id": 94243, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄护手 (会心 破招) 12300": {"id": 94242, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒护手 (会心 破招) 12300": {"id": 94240, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·霜故护手 (会心 破招) 12300": {"id": 94233, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼护手 (会心 破招) 12300": {"id": 94232, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆护手 (会心 破招) 12300": {"id": 94228, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄护手 (会心 破招) 12300": {"id": 94227, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心护手 (会心 破招) 12300": {"id": 94226, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声护手 (会心 破招) 12300": {"id": 94222, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台护手 (会心 破招) 12300": {"id": 94220, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念袖 (破防 无双) 12300": {"id": 90642, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江袖 (破防 无双) 12300": {"id": 90641, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦袖 (破防 无双) 12300": {"id": 90640, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰袖 (破防 无双) 12300": {"id": 90639, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱袖 (会心 无双) 12300": {"id": 90606, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌袖 (会心 无双) 12300": {"id": 90605, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳袖 (会心 无双) 12300": {"id": 90604, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐袖 (会心 无双) 12300": {"id": 90603, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱护手 (破防 破招) 12300": {"id": 90570, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦护手 (破防 破招) 12300": {"id": 90569, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭护手 (破防 破招) 12300": {"id": 90568, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南护手 (破防 破招) 12300": {"id": 90567, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱护手 (加速 无双) 12300": {"id": 90534, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双护手 (加速 无双) 12300": {"id": 90533, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜护手 (加速 无双) 12300": {"id": 90532, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云护手 (加速 无双) 12300": {"id": 90531, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁护手 (破防 无双) 12300": {"id": 90402, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬护手 (破防 无双) 12300": {"id": 90401, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜护手 (破防 无双) 12300": {"id": 90400, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安护手 (破防 无双) 12300": {"id": 90399, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝袖 (破招 无双) 12300": {"id": 90366, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰袖 (破招 无双) 12300": {"id": 90365, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔袖 (破招 无双) 12300": {"id": 90364, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨袖 (破招 无双) 12300": {"id": 90363, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳袖 (加速 破招) 12300": {"id": 90330, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关袖 (加速 破招) 12300": {"id": 90329, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐袖 (加速 破招) 12300": {"id": 90328, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄袖 (加速 破招) 12300": {"id": 90327, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效 无双) 12100": {"id": 94550, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3132, "physical_critical_power_base": 1649, "strain_base": 1814}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 12100": {"id": 94549, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus_base": 3297, "physical_overcome_base": 3462}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (无双) 12100": {"id": 94548, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "strain_base": 5853}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 破招) 12100": {"id": 94546, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "surplus_base": 3297, "magical_overcome_base": 3462}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (无双) 12100": {"id": 94545, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3011, "strain_base": 5853}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file +{"水泉袖#98481(破防 破招) 15800": {"id": 98481, "school": "通用", "kind": "身法", "level": 15800, "max_strength": 6, "base": {}, "magic": {"agility_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192189", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泽袖#98480(破防 破招) 15800": {"id": 98480, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水泓袖#98479(破防 破招) 15800": {"id": 98479, "school": "通用", "kind": "元气", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192187", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "水川袖#98478(破防 破招) 15800": {"id": 98478, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus_base": 3444}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192186", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "月落护手#98583(会心 破招) 15600": {"id": 98583, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月稠护手#98582(会心 破招) 15600": {"id": 98582, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月迟护手#98581(会心 破招) 15600": {"id": 98581, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "月纤护手#98580(会心 破招) 15600": {"id": 98580, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus_base": 3401}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·纵巧护手#98517(破防 破招) 15600": {"id": 98517, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·之远护手#98516(破防 破招) 15600": {"id": 98516, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·磐气护手#98515(破防 破招) 15600": {"id": 98515, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·风翎护手#98514(破防 破招) 15600": {"id": 98514, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "surplus_base": 3401}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夜苔护臂#98473(破防 破招) 15600": {"id": 98473, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "surplus_base": 4464, "physical_overcome_base": 4039}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "入影护臂#98472(无双) 15600": {"id": 98472, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7121}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "如光护臂#98471(破防 破招) 15600": {"id": 98471, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3197, "surplus_base": 4464, "magical_overcome_base": 4039}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "花绣护臂#98470(无双) 15600": {"id": 98470, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3882, "strain_base": 7121}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "云貌护腕#98457(破防 会心 破招) 15600": {"id": 98457, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3045, "surplus_base": 2551, "physical_overcome_base": 2763, "physical_critical_strike_base": 2763}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "茂松护腕#98456(破防 会心 破招) 15600": {"id": 98456, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3654, "surplus_base": 2551, "magical_overcome_base": 2763, "all_critical_strike_base": 2763}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "天直护腕#98455(破防 会心 会效) 15600": {"id": 98455, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 3082, "physical_critical_strike_base": 3295, "physical_critical_power_base": 2126}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "非色护腕#98454(破防 无双) 15600": {"id": 98454, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "金土护腕#98453(会心) 15600": {"id": 98453, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "分属护腕#98452(破防 会心 会效) 15600": {"id": 98452, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "magical_overcome_base": 3082, "all_critical_strike_base": 3295, "all_critical_power_base": 2126}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "赵以护腕#98451(破防 无双) 15600": {"id": 98451, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3311, "magical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "年月护腕#98450(会心) 15600": {"id": 98450, "school": "精简", "kind": "内功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3882, "all_critical_strike_base": 7546}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "救困护手#98409(破防 无双) 15600": {"id": 98409, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落护手#98408(破防 无双) 15600": {"id": 98408, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "良安护手#98407(破防 无双) 15600": {"id": 98407, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "情义护手#98406(破防 无双) 15600": {"id": 98406, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "照耀护手#98373(会心 无双) 15600": {"id": 98373, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪护手#98372(会心 无双) 15600": {"id": 98372, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "宫阙护手#98371(会心 无双) 15600": {"id": 98371, "school": "通用", "kind": "元气", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 763, "magical_attack_power_base": 1484, "all_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "绕城护手#98370(会心 无双) 15600": {"id": 98370, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "鸿辉·眠狸护手#98249(会心 破招) 15400": {"id": 98249, "school": "万灵", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192055", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "鸿辉·凛霜护手#98248(会心 破招) 15400": {"id": 98248, "school": "刀宗", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192054", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "鸿辉·白林护手#98246(会心 破招) 15400": {"id": 98246, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192052", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "鸿辉·霭琼护手#98243(会心 破招) 15400": {"id": 98243, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192049", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "鸿辉·峰霁护手#98242(会心 破招) 15400": {"id": 98242, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "鸿辉·涧曲护手#98240(会心 破招) 15400": {"id": 98240, "school": "长歌", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192046", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "鸿辉·旌声护手#98238(会心 破招) 15400": {"id": 98238, "school": "苍云", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192044", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "鸿辉·雨痕护手#98233(会心 破招) 15400": {"id": 98233, "school": "唐门", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192039", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "鸿辉·蜀江护手#98232(会心 破招) 15400": {"id": 98232, "school": "唐门", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192038", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "鸿辉·朱弦护手#98228(会心 破招) 15400": {"id": 98228, "school": "七秀", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192034", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "鸿辉·松涛护手#98227(会心 破招) 15400": {"id": 98227, "school": "纯阳", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192033", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "鸿辉·苍虬护手#98226(会心 破招) 15400": {"id": 98226, "school": "纯阳", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192032", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "鸿辉·鹿喧护手#98222(会心 破招) 15400": {"id": 98222, "school": "万花", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192028", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "鸿辉·载法护手#98220(会心 破招) 15400": {"id": 98220, "school": "少林", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 753, "magical_attack_power_base": 1465, "magical_critical_strike_base": 3777, "surplus_base": 3357}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "192026", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "无封护臂#98567(破防 会心 会效) 15200": {"id": 98567, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 3003, "physical_critical_strike_base": 3210, "physical_critical_power_base": 2071}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98566(破防 会心) 15200": {"id": 98566, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_critical_strike_base": 4246, "physical_overcome_base": 4246}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98565(会心) 15200": {"id": 98565, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "physical_critical_strike_base": 7352}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98564(破防 会心 会效) 15200": {"id": 98564, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "magical_overcome_base": 3003, "all_critical_strike_base": 3210, "all_critical_power_base": 2071}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98563(破防 会心) 15200": {"id": 98563, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3226, "all_critical_strike_base": 4246, "magical_overcome_base": 4246}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98562(会心) 15200": {"id": 98562, "school": "精简", "kind": "内功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3783, "all_critical_strike_base": 7352}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98543(会心 会效 无双) 14350": {"id": 98543, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 3715, "physical_critical_power_base": 1955, "strain_base": 2151}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98542(破防 破招) 14350": {"id": 98542, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus_base": 3910, "physical_overcome_base": 4106}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98541(无双) 14350": {"id": 98541, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "strain_base": 6941}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98540(会心 会效 无双) 14350": {"id": 98540, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "all_critical_strike_base": 3715, "all_critical_power_base": 1955, "strain_base": 2151}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98539(破防 破招) 14350": {"id": 98539, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3046, "surplus_base": 3910, "magical_overcome_base": 4106}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#98538(无双) 14350": {"id": 98538, "school": "精简", "kind": "内功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3571, "strain_base": 6941}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风停袖#96367(破防 破招) 14150": {"id": 96367, "school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈袖#96366(破防 破招) 14150": {"id": 96366, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫袖#96365(破防 破招) 14150": {"id": 96365, "school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻袖#96364(破防 破招) 14150": {"id": 96364, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus_base": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·天宇护手#98679(会心 破招) 13950": {"id": 98679, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光护手#98678(会心 破招) 13950": {"id": 98678, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·当楼护手#98677(会心 破招) 13950": {"id": 98677, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·所适护手#98676(会心 破招) 13950": {"id": 98676, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽护手#96477(会心 破招) 13950": {"id": 96477, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺护手#96476(会心 破招) 13950": {"id": 96476, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓护手#96475(会心 破招) 13950": {"id": 96475, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合护手#96474(会心 破招) 13950": {"id": 96474, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus_base": 3041}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月护手#96403(破防 破招) 13950": {"id": 96403, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手#96402(破防 破招) 13950": {"id": 96402, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意护手#96401(破防 破招) 13950": {"id": 96401, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠护手#96400(破防 破招) 13950": {"id": 96400, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus_base": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "流晖护臂#96359(破防 破招) 13950": {"id": 96359, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "surplus_base": 3991, "physical_overcome_base": 3611}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "星风护臂#96358(无双) 13950": {"id": 96358, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6367}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "松辉护臂#96357(破防 破招) 13950": {"id": 96357, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2859, "surplus_base": 3991, "magical_overcome_base": 3611}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪遥护臂#96356(无双) 13950": {"id": 96356, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3472, "strain_base": 6367}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "灭影护腕#96343(破防 会心 破招) 13950": {"id": 96343, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2723, "surplus_base": 2281, "physical_overcome_base": 2471, "physical_critical_strike_base": 2471}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "双河护腕#96342(破防 会心 破招) 13950": {"id": 96342, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3267, "surplus_base": 2281, "magical_overcome_base": 2471, "all_critical_strike_base": 2471}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "逸遥护腕#96341(破防 会心 会效) 13950": {"id": 96341, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 2756, "physical_critical_strike_base": 2946, "physical_critical_power_base": 1901}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "道尘护腕#96340(破防 无双) 13950": {"id": 96340, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮峰护腕#96339(会心) 13950": {"id": 96339, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "淮泽护腕#96338(破防 会心 会效) 13950": {"id": 96338, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 2756, "all_critical_strike_base": 2946, "all_critical_power_base": 1901}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "言寓护腕#96337(破防 无双) 13950": {"id": 96337, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雨杨护腕#96336(会心) 13950": {"id": 96336, "school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "all_critical_strike_base": 6748}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁护手#96295(破防 无双) 13950": {"id": 96295, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦护手#96294(破防 无双) 13950": {"id": 96294, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云护手#96293(破防 无双) 13950": {"id": 96293, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡护手#96292(破防 无双) 13950": {"id": 96292, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣护手#96259(会心 无双) 13950": {"id": 96259, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行护手#96258(会心 无双) 13950": {"id": 96258, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐护手#96257(会心 无双) 13950": {"id": 96257, "school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英护手#96256(会心 无双) 13950": {"id": 96256, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·飞旋袖#98163(破防 破招) 13750": {"id": 98163, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192023", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·碎浪袖#98162(破防 破招) 13750": {"id": 98162, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·星辉袖#98161(破防 破招) 13750": {"id": 98161, "school": "通用", "kind": "元气", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192021", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·折月袖#98160(破防 破招) 13750": {"id": 98160, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "surplus_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192020", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·寂林护手#96135(会心 破招) 13750": {"id": 96135, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438, 17250]}}, "灵源·休归护手#96134(会心 破招) 13750": {"id": 96134, "school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188, 17250]}}, "灵源·采芳护手#96132(会心 破招) 13750": {"id": 96132, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·风涛护手#96129(会心 破招) 13750": {"id": 96129, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜护手#96128(会心 破招) 13750": {"id": 96128, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·识音护手#96126(会心 破招) 13750": {"id": 96126, "school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·肃晓护手#96124(会心 破招) 13750": {"id": 96124, "school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·闻箫护手#96119(会心 破招) 13750": {"id": 96119, "school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿护手#96118(会心 破招) 13750": {"id": 96118, "school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·轻雪护手#96114(会心 破招) 13750": {"id": 96114, "school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547, 17250]}}, "灵源·暮鸿护手#96113(会心 破招) 13750": {"id": 96113, "school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818, 17250]}}, "灵源·期颐护手#96112(会心 破招) 13750": {"id": 96112, "school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·月胧护手#96108(会心 破招) 13750": {"id": 96108, "school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·寂行护手#96106(会心 破招) 13750": {"id": 96106, "school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus_base": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "无封护臂#96461(会心 会效 破招) 13550": {"id": 96461, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus_base": 2031, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96460(会心 会效) 13550": {"id": 96460, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 4616, "physical_critical_power_base": 2769}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96459(破防) 13550": {"id": 96459, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96458(会心 会效 破招) 13550": {"id": 96458, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "surplus_base": 2031, "all_critical_strike_base": 3508, "all_critical_power_base": 1846}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96457(会心 会效) 13550": {"id": 96457, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "all_critical_strike_base": 4616, "all_critical_power_base": 2769}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96456(破防) 13550": {"id": 96456, "school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3372, "magical_overcome_base": 6554}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96431(破防 会心 会效) 12800": {"id": 96431, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 2529, "physical_critical_strike_base": 2703, "physical_critical_power_base": 1744}, "embed": {"surplus_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96430(破防 会心) 12800": {"id": 96430, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_critical_strike_base": 3575, "physical_overcome_base": 3575}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96429(会心) 12800": {"id": 96429, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "physical_critical_strike_base": 6191}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96428(破防 会心 会效) 12800": {"id": 96428, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "magical_overcome_base": 2529, "all_critical_strike_base": 2703, "all_critical_power_base": 1744}, "embed": {"surplus_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96427(破防 会心) 12800": {"id": 96427, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "all_critical_strike_base": 3575, "magical_overcome_base": 3575}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#96426(会心) 12800": {"id": 96426, "school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3185, "all_critical_strike_base": 6191}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪漫袖#94464(破防 破招) 12600": {"id": 94464, "school": "通用", "kind": "身法", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞袖#94463(破防 破招) 12600": {"id": 94463, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁袖#94462(破防 破招) 12600": {"id": 94462, "school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满袖#94461(破防 破招) 12600": {"id": 94461, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus_base": 2747}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·角寒护手#96573(会心 破招) 12450": {"id": 96573, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠护手#96572(会心 破招) 12450": {"id": 96572, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声护手#96571(会心 破招) 12450": {"id": 96571, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书护手#96570(会心 破招) 12450": {"id": 96570, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月护手#94566(会心 破招) 12450": {"id": 94566, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静护手#94565(会心 破招) 12450": {"id": 94565, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟护手#94564(会心 破招) 12450": {"id": 94564, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂护手#94563(会心 破招) 12450": {"id": 94563, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus_base": 2714}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配护手#94500(破防 破招) 12450": {"id": 94500, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花护手#94499(破防 破招) 12450": {"id": 94499, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世护手#94498(破防 破招) 12450": {"id": 94498, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓护手#94497(破防 破招) 12450": {"id": 94497, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus_base": 2714}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夙辰护腕#94452(破招) 12450": {"id": 94452, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "surplus_base": 5683}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "熠羽护腕#94451(破招) 12450": {"id": 94451, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3098, "surplus_base": 5683}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "零雨护腕#94450(会心 无双) 12450": {"id": 94450, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "制野护腕#94449(破防 无双) 12450": {"id": 94449, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雨膏护腕#94448(破防 破招) 12450": {"id": 94448, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus_base": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "维则护腕#94447(会心 无双) 12450": {"id": 94447, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2187, "all_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风重护腕#94446(破防 无双) 12450": {"id": 94446, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "magical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "狂耳护腕#94445(破防 破招) 12450": {"id": 94445, "school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2552, "surplus_base": 3562, "magical_overcome_base": 3223}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞护手#94404(破防 无双) 12450": {"id": 94404, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃护手#94403(破防 无双) 12450": {"id": 94403, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡护手#94402(破防 无双) 12450": {"id": 94402, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华护手#94401(破防 无双) 12450": {"id": 94401, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "商野护手#94368(会心 无双) 12450": {"id": 94368, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿护手#94367(会心 无双) 12450": {"id": 94367, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微护手#94366(会心 无双) 12450": {"id": 94366, "school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓护手#94365(会心 无双) 12450": {"id": 94365, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临钧护手#90510(会心 破招) 12400": {"id": 90510, "school": "通用", "kind": "身法", "level": 12400, "max_strength": 6, "base": {}, "magic": {"agility_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临英护手#90509(会心 破招) 12400": {"id": 90509, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临穹护手#90508(会心 破招) 12400": {"id": 90508, "school": "通用", "kind": "元气", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 606, "magical_attack_power_base": 1180, "all_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临心护手#90507(会心 破招) 12400": {"id": 90507, "school": "通用", "kind": "根骨", "level": 12400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 606, "magical_attack_power_base": 1180, "magical_critical_strike_base": 3041, "surplus_base": 2703}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风护手#97846(会心 破招) 12300": {"id": 97846, "school": "万灵", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438, 17250], "4": [2568]}}, "寻踪觅宝·屠云袖#96079(破防 破招) 12300": {"id": 96079, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风袖#96078(破防 破招) 12300": {"id": 96078, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨袖#96077(破防 破招) 12300": {"id": 96077, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪袖#96076(破防 破招) 12300": {"id": 96076, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹护手#94248(会心 破招) 12300": {"id": 94248, "school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188, 17250], "4": [1925]}}, "濯心·采青护手#94246(会心 破招) 12300": {"id": 94246, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·盈怀护手#94243(会心 破招) 12300": {"id": 94243, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄护手#94242(会心 破招) 12300": {"id": 94242, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·对酒护手#94240(会心 破招) 12300": {"id": 94240, "school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·弦夜护手#94238(会心 破招) 12300": {"id": 94238, "school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·霜故护手#94233(会心 破招) 12300": {"id": 94233, "school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼护手#94232(会心 破招) 12300": {"id": 94232, "school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·染妆护手#94228(会心 破招) 12300": {"id": 94228, "school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547, 17250], "4": [1916]}}, "濯心·深玄护手#94227(会心 破招) 12300": {"id": 94227, "school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818, 17250], "4": [1915]}}, "濯心·归心护手#94226(会心 破招) 12300": {"id": 94226, "school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·松声护手#94222(会心 破招) 12300": {"id": 94222, "school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·莲台护手#94220(会心 破招) 12300": {"id": 94220, "school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus_base": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "久念袖#90642(破防 无双) 12300": {"id": 90642, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江袖#90641(破防 无双) 12300": {"id": 90641, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "藏峦袖#90640(破防 无双) 12300": {"id": 90640, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "谨峰袖#90639(破防 无双) 12300": {"id": 90639, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风岱袖#90606(会心 无双) 12300": {"id": 90606, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌袖#90605(会心 无双) 12300": {"id": 90605, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "故芳袖#90604(会心 无双) 12300": {"id": 90604, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "剪桐袖#90603(会心 无双) 12300": {"id": 90603, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "北邱护手#90570(破防 破招) 12300": {"id": 90570, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦护手#90569(破防 破招) 12300": {"id": 90569, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "花霭护手#90568(破防 破招) 12300": {"id": 90568, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "途南护手#90567(破防 破招) 12300": {"id": 90567, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "渊忱护手#90534(加速 无双) 12300": {"id": 90534, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双护手#90533(加速 无双) 12300": {"id": 90533, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "庭澜护手#90532(加速 无双) 12300": {"id": 90532, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "故云护手#90531(加速 无双) 12300": {"id": 90531, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆宁护手#90402(破防 无双) 12300": {"id": 90402, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬护手#90401(破防 无双) 12300": {"id": 90401, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆惜护手#90400(破防 无双) 12300": {"id": 90400, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆安护手#90399(破防 无双) 12300": {"id": 90399, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "盈绝袖#90366(破招 无双) 12300": {"id": 90366, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰袖#90365(破招 无双) 12300": {"id": 90365, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "语阔袖#90364(破招 无双) 12300": {"id": 90364, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "擒雨袖#90363(破招 无双) 12300": {"id": 90363, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "surplus_base": 3017, "strain_base": 2681}, "embed": {"magical_overcome_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "潋阳袖#90330(加速 破招) 12300": {"id": 90330, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关袖#90329(加速 破招) 12300": {"id": 90329, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "烟琐袖#90328(加速 破招) 12300": {"id": 90328, "school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "德襄袖#90327(加速 破招) 12300": {"id": 90327, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#94550(会心 会效 无双) 12100": {"id": 94550, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3132, "physical_critical_power_base": 1649, "strain_base": 1814}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#94549(破防 破招) 12100": {"id": 94549, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus_base": 3297, "physical_overcome_base": 3462}, "embed": {"physical_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#94548(无双) 12100": {"id": 94548, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "strain_base": 5853}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#94546(破防 破招) 12100": {"id": 94546, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "surplus_base": 3297, "magical_overcome_base": 3462}, "embed": {"all_critical_strike_base": 161, "surplus_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "无封护臂#94545(无双) 12100": {"id": 94545, "school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3011, "strain_base": 5853}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}} \ No newline at end of file diff --git a/qt/components/bonuses.py b/qt/components/bonuses.py index 7f9f99bd84a59cd1b865eca114f3d3c503c2d87c..582d1ae953d8b1af45bb195289cfd2eb7cf5377a 100644 --- a/qt/components/bonuses.py +++ b/qt/components/bonuses.py @@ -24,6 +24,10 @@ class TeamGainsWidget(QWidget): self.team_gains = {} + self.real_formulation = RadioWithLabel("开启真实团队增益模拟(仅包括存在覆盖率的角色BUFF,不包含目标和常驻BUFF)") + + layout.addWidget(self.real_formulation) + tabs = QTabWidget() layout.addWidget(tabs) @@ -35,9 +39,11 @@ class TeamGainsWidget(QWidget): tab_layout.addWidget(self.team_gains["袖气"], 0, 0) self.team_gains["左旋右转"] = { - "stack": SpinWithLabel("左旋右转", "层数", maximum=TEAM_GAIN_LIMIT["左旋右转"]["stack"]) + "stack": SpinWithLabel("左旋右转", "层数", maximum=TEAM_GAIN_LIMIT["左旋右转"]["stack"]), + "rate": SpinWithLabel("左旋右转", "覆盖(%)", maximum=100) } tab_layout.addWidget(self.team_gains["左旋右转"]["stack"], 1, 0) + tab_layout.addWidget(self.team_gains["左旋右转"]["rate"], 1, 1) self.team_gains["泠风解怀"] = { "rate": SpinWithLabel("泠风解怀", "覆盖(%)", maximum=100) } diff --git a/qt/components/dashboard.py b/qt/components/dashboard.py index f4905b066d717a49d2704b773400222a8cbd9133..6b0fb78108a2e7dafe5dae7e887b9704c9fc2523 100644 --- a/qt/components/dashboard.py +++ b/qt/components/dashboard.py @@ -32,13 +32,19 @@ class DashboardWidget(QWidget): top_layout = QHBoxLayout() layout.addLayout(top_layout) + self.target_select = ComboWithLabel("选择目标") + top_layout.addWidget(self.target_select) self.target_level = ComboWithLabel("目标等级", items=[str(level) for level in SHIELD_BASE_MAP]) top_layout.addWidget(self.target_level) self.duration = DoubleSpinWithLabel("战斗时长", maximum=3600, value=180) top_layout.addWidget(self.duration) - self.button = QPushButton(text="开始模拟!") - layout.addWidget(self.button) + mid_layout = QHBoxLayout() + layout.addLayout(mid_layout) + self.formulate_button = QPushButton(text="开始模拟!") + mid_layout.addWidget(self.formulate_button) + self.save_button = QPushButton(text="保存JSON") + mid_layout.addWidget(self.save_button) bottom_layout = QHBoxLayout() layout.addLayout(bottom_layout) diff --git a/qt/scripts/bonuses.py b/qt/scripts/bonuses.py index 2b090876edeb581f9c417ac4acf8e6a519b0db33..145af947741de67bd819bceadc1cc536990cfc9d 100644 --- a/qt/scripts/bonuses.py +++ b/qt/scripts/bonuses.py @@ -1,5 +1,5 @@ from general.gains.formation import FORMATION_GAINS -from general.gains.team import TEAM_GAINS +from general.gains.team import TEAM_GAINS, RealTeamGain from qt.components import RadioWithLabel, ComboWithLabel, SpinWithLabel from qt.components.bonuses import BonusesWidget @@ -10,7 +10,6 @@ class Bonuses(dict): @property def gains(self): gains = list(self.values()) - if "秋肃" in self and "戒火" in self: gains.remove(self["戒火"]) @@ -41,6 +40,14 @@ def bonuses_script(parser: Parser, bonuses_widget: BonusesWidget): bonuses_widget.formation.core_rate.spin_box.valueChanged.connect(formation_update) bonuses_widget.formation.rate.spin_box.valueChanged.connect(formation_update) + def real_team_gain(): + widget = bonuses_widget.team_gains.real_formulation + if widget.radio_button.isChecked(): + bonuses[None] = RealTeamGain() + else: + bonuses.pop(None, None) + bonuses_widget.team_gains.real_formulation.radio_button.clicked.connect(real_team_gain) + def radio_update(label): widget = bonuses_widget.team_gains[label] diff --git a/qt/scripts/dashboard.py b/qt/scripts/dashboard.py index 6e96f0d82cd45dc0fba18c8beb9bcfe44bb56f30..df5630e11681d3a6293c4fe966e6318e1d5c8fcd 100644 --- a/qt/scripts/dashboard.py +++ b/qt/scripts/dashboard.py @@ -1,3 +1,4 @@ +import json from typing import Dict from qt.components.dashboard import DashboardWidget @@ -10,6 +11,7 @@ from qt.scripts.equipments import Equipments from qt.scripts.recipes import Recipes from qt.scripts.talents import Talents from utils.analyzer import analyze_details, Detail +from utils.io import serialize def summary_content(summary: Dict[str, Detail], total_damage): @@ -34,7 +36,7 @@ def detail_content(detail: Detail): ["命中伤害", f"{round(detail.damage)}"], ["会心伤害", f"{round(detail.critical_damage)}"], ["期望伤害", f"{round(detail.expected_damage)}"], - ["会心", f"{round(detail.critical_strike * 100, 2)}%"], + ["期望会心", f"{round(detail.critical_strike * 100, 2)}%"], ["实际会心", f"{round(detail.actual_critical_strike * 100, 2)}%"], ["数量", f"{detail.count}"] ] @@ -49,9 +51,10 @@ def detail_content(detail: Detail): def dashboard_script(parser: Parser, dashboard_widget: DashboardWidget, talents: Talents, recipes: Recipes, equipments: Equipments, consumables: Consumables, bonuses: Bonuses): - def formulate(): - duration = dashboard_widget.duration.spin_box.value() + target_name = dashboard_widget.target_select.combo_box.currentText() + target_id = parser.name2id.get(target_name, 0) + parser.current_target = target_id record = parser.current_records school = parser.current_school @@ -72,6 +75,7 @@ def dashboard_script(parser: Parser, for gain in gains: gain.add(attribute, school.skills, school.buffs) + duration = dashboard_widget.duration.spin_box.value() dashboard_widget.final_attribute.set_content(school.attr_content(attribute)) total, summary, details = analyze_details(record, duration, attribute, school) @@ -90,7 +94,17 @@ def dashboard_script(parser: Parser, dashboard_widget.summary.set_content(summary_content(summary, total.expected_damage)) - dashboard_widget.button.clicked.connect(formulate) + dashboard_widget.formulate_button.clicked.connect(formulate) + + def save_json(): + target_name = dashboard_widget.target_select.combo_box.currentText() + target_id = parser.name2id.get(target_name, 0) + parser.current_target = target_id + record = parser.current_records + duration = dashboard_widget.duration.spin_box.value() + json.dump(serialize(record, duration), open(parser.file_name.strip(".jcl") + ".json", "w", encoding="utf-8")) + + dashboard_widget.save_button.clicked.connect(save_json) def set_skills(): detail_widget = dashboard_widget.detail_widget diff --git a/qt/scripts/top.py b/qt/scripts/top.py index 75b8a8a385031b1cd8780460e08da33fbe6941bb..075b3f6de7762d16c4efaa4dc4c5b4d491a57aff 100644 --- a/qt/scripts/top.py +++ b/qt/scripts/top.py @@ -28,10 +28,13 @@ def top_script( return parser(file_name[0]) top_widget.player_select.set_items( - [parser.id2name[player_id] for player_id in parser.school], keep_index=True, default_index=0 + [parser.id2name[player_id] for player_id in parser.players], keep_index=True, default_index=0 ) top_widget.player_select.show() select_player(None) + dashboard_widget.target_select.set_items( + [""] + [parser.id2name[target_id] for target_id in parser.current_targets], keep_index=True, default_index=0 + ) top_widget.upload_button.clicked.connect(upload_logs) @@ -41,7 +44,7 @@ def top_script( return player_id = parser.name2id[player_name] parser.current_player = player_id - school = parser.school[player_id] + school = parser.players[player_id] """ Update config """ config_choices = list(CONFIG.get(school.school, {})) config_widget.config_select.set_items(config_choices, default_index=-1) diff --git a/requirements.txt b/requirements.txt index 10eb575c6d9e322339bddaba8fff0279ed2e300f..30926a4e5d59678474f702f7256b6e62238d0513 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1 @@ -pyside6==6.7.0 -tqdm==4.66.2 -requests==2.31.0 \ No newline at end of file +pyside6==6.7.0 \ No newline at end of file diff --git a/schools/__init__.py b/schools/__init__.py index 2670aaeae6602b08e954ebcc79e43a979f567b34..b39c16c3ad90506f6715302f67fa908f0c9f2fc5 100644 --- a/schools/__init__.py +++ b/schools/__init__.py @@ -7,7 +7,7 @@ from base.gain import Gain from base.skill import Skill from schools import bei_ao_jue, gu_feng_jue -from schools import shan_hai_xin_jue, ling_hai_jue, tai_xu_jian_yi +from schools import shan_hai_xin_jue, ling_hai_jue, tai_xu_jian_yi, fen_shan_jing from schools import yi_jin_jing, tian_luo_gui_dao, hua_jian_you from schools import wu_fang, bing_xin_jue, mo_wen @@ -132,6 +132,14 @@ SUPPORT_SCHOOL = { recipe_gains=tian_luo_gui_dao.RECIPE_GAINS, recipes=tian_luo_gui_dao.RECIPES, gains=tian_luo_gui_dao.GAINS, display_attrs={"spunk": "元气", **MIXING_DISPLAY_ATTRS} ), + 10390: School( + school="苍云", major="身法", kind="外功", attribute=fen_shan_jing.FenShanJing, formation="锋凌横绝阵", + skills=fen_shan_jing.SKILLS, buffs=fen_shan_jing.BUFFS, prepare=fen_shan_jing.prepare, + talent_gains=fen_shan_jing.TALENT_GAINS, talents=fen_shan_jing.TALENTS, + talent_decoder=fen_shan_jing.TALENT_DECODER, talent_encoder=fen_shan_jing.TALENT_ENCODER, + recipe_gains=fen_shan_jing.RECIPE_GAINS, recipes=fen_shan_jing.RECIPES, + gains=fen_shan_jing.GAINS, display_attrs={"agility": "身法", **PHYSICAL_DISPLAY_ATTRS} + ), 10447: School( school="长歌", major="根骨", kind="内功", attribute=mo_wen.MoWen, formation="万籁金弦阵", skills=mo_wen.SKILLS, buffs=mo_wen.BUFFS, prepare=mo_wen.prepare, diff --git a/schools/bing_xin_jue/__init__.py b/schools/bing_xin_jue/__init__.py index e2aa776bc347837d0eed705f84938ef1bc2bc951..6baa0df0461442998938ff67de088f2b008e0dc7 100644 --- a/schools/bing_xin_jue/__init__.py +++ b/schools/bing_xin_jue/__init__.py @@ -7,5 +7,5 @@ from schools.bing_xin_jue.attribute import BingXinJue def prepare(self, player_id): - self.status[player_id][(409, 21)] = 10 - self.status[player_id][(17969, 1)] = 1 + self.player_buffs[player_id][(409, 21)] = 10 + self.player_buffs[player_id][(17969, 1)] = 1 diff --git a/schools/fen_shan_jing/__init__.py b/schools/fen_shan_jing/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..45d5b6ae1749dd1313c49dc2a33d4758881a3fc1 --- /dev/null +++ b/schools/fen_shan_jing/__init__.py @@ -0,0 +1,10 @@ +from schools.fen_shan_jing.skills import SKILLS +from schools.fen_shan_jing.buffs import BUFFS +from schools.fen_shan_jing.talents import TALENT_GAINS, TALENTS, TALENT_DECODER, TALENT_ENCODER +from schools.fen_shan_jing.recipes import RECIPE_GAINS, RECIPES +from schools.fen_shan_jing.gains import GAINS +from schools.fen_shan_jing.attribute import FenShanJing + + +def prepare(self, player_id): + pass diff --git a/schools/fen_shan_jing/attribute.py b/schools/fen_shan_jing/attribute.py new file mode 100644 index 0000000000000000000000000000000000000000..c4806fda55f80e1078f8ad6ff0f4cd31091d65ad --- /dev/null +++ b/schools/fen_shan_jing/attribute.py @@ -0,0 +1,21 @@ +from base.attribute import PhysicalAttribute +from base.constant import * + + +class FenShanJing(PhysicalAttribute): + AGILITY_TO_ATTACK_POWER = 1485 / BINARY_SCALE + AGILITY_TO_CRITICAL_STRIKE = 594 / BINARY_SCALE + + def __init__(self): + super().__init__() + self.physical_attack_power_base += 3277 + self.physical_critical_strike_base += 2929 + self.pve_addition += 82 + + @property + def extra_physical_attack_power(self): + return int(self.agility * self.AGILITY_TO_ATTACK_POWER) + + @property + def extra_physical_critical_strike(self): + return int(self.agility * self.AGILITY_TO_CRITICAL_STRIKE) diff --git a/schools/fen_shan_jing/buffs.py b/schools/fen_shan_jing/buffs.py new file mode 100644 index 0000000000000000000000000000000000000000..feb2cd63e34f349a1e496eacca952d298cda6724 --- /dev/null +++ b/schools/fen_shan_jing/buffs.py @@ -0,0 +1,36 @@ +from typing import Dict + +from base.buff import Buff +from general.buffs import GENERAL_BUFFS + +BUFFS: Dict[int, Buff | dict] = { + 16025: { + "buff_name": "雷引", + "activate": False, + "gain_attributes": { + "physical_critical_strike_gain": 400, + "physical_critical_power_gain": 41 + } + }, + 26857: { + "buff_name": "承契", + "gain_attributes": { + "all_damage_addition": 62 + } + }, + 27099: { + "buff_name": "诸怀", + "gain_attributes": { + "all_shield_ignore": 205, + "physical_attack_power_gain": 102 + } + }, +} + +for buff_id, detail in BUFFS.items(): + BUFFS[buff_id] = Buff(buff_id) + for attr, value in detail.items(): + setattr(BUFFS[buff_id], attr, value) + +for buff_id, buff in GENERAL_BUFFS.items(): + BUFFS[buff_id] = buff diff --git a/schools/fen_shan_jing/gains.py b/schools/fen_shan_jing/gains.py new file mode 100644 index 0000000000000000000000000000000000000000..5e39fe5f3b2c9222f2200408ce517ed2386823bb --- /dev/null +++ b/schools/fen_shan_jing/gains.py @@ -0,0 +1,17 @@ +from base.recipe import damage_addition_recipe, critical_strike_recipe +from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet +from base.gain import Gain + + +GAINS = { + 2568: CriticalSet(16025), + 5438: damage_addition_recipe([35987], 102), + 5461: damage_addition_recipe([36157], 51), + 5462: damage_addition_recipe([35987], 51), + 5463: critical_strike_recipe([36157], 500), + 2572: Gain(), + 2571: Gain(), + 17470: Gain(), + 17471: Gain(), + **EQUIPMENT_GAINS, +} diff --git a/schools/fen_shan_jing/recipes.py b/schools/fen_shan_jing/recipes.py new file mode 100644 index 0000000000000000000000000000000000000000..9c5c144525bf6a24e4e64be103a23b9d36aedd5c --- /dev/null +++ b/schools/fen_shan_jing/recipes.py @@ -0,0 +1,26 @@ +from typing import Dict, List + +from base.gain import Gain +from base.recipe import damage_addition_recipe, critical_strike_recipe, pve_addition_recipe + + +RECIPE_GAINS: Dict[str, Dict[str, Gain]] = { + "劲风簇": { + "4%会心": critical_strike_recipe([35866], 400), + "3%伤害": damage_addition_recipe([35866], 31), + "3%会心": critical_strike_recipe([35866], 300), + "2%伤害": damage_addition_recipe([35866], 21) + }, + "饮羽簇": { + "15%伤害": pve_addition_recipe([35987], 154), + "4%会心": critical_strike_recipe([35987], 400), + "3%伤害": damage_addition_recipe([35987], 31), + "3%会心": critical_strike_recipe([35987], 300), + "2%伤害": damage_addition_recipe([35987], 21) + }, +} + +RECIPES: Dict[str, List[str]] = { + "劲风簇": ["4%会心", "3%伤害", "3%会心", "2%伤害"], + "饮羽簇": ["15%伤害", "4%会心", "3%伤害", "3%会心", "2%伤害"], +} diff --git a/schools/fen_shan_jing/skills.py b/schools/fen_shan_jing/skills.py new file mode 100644 index 0000000000000000000000000000000000000000..68ca9fc0dea91149e00233b17fcb021ce808efca --- /dev/null +++ b/schools/fen_shan_jing/skills.py @@ -0,0 +1,159 @@ +from typing import Dict + +from base.constant import DOT_DAMAGE_SCALE, FRAME_PER_SECOND +from base.skill import Skill, DotSkill, DotConsumeSkill, PhysicalDamage, PhysicalDotDamage +from general.skills import GENERAL_SKILLS + +SKILLS: Dict[int, Skill | dict] = { + 36177: { + "skill_class": PhysicalDamage, + "skill_name": "破", + "surplus_cof": [ + 1048576 * (0.3 - 1), + 1048576 * (0.3 - 1) + ] + }, + 35894: { + "skill_class": PhysicalDamage, + "skill_name": "风矢", + "attack_power_cof": 16, + "weapon_damage_cof": 1024, + "skill_damage_addition": 205 + }, + 35866: { + "skill_class": PhysicalDamage, + "skill_name": "劲风簇", + "damage_base": [35, 70, 105, 140, 157, 175, 193, 210, 228, 245, 263, 280, 298, 315, 333], + "damage_rand": 5, + "attack_power_cof": [25 * 0.9 * 0.9 * 0.95] * 3 + + [(25 + (i - 4) * 10) * 0.9 * 0.9 * 0.95 for i in range(4, 15)] + + [175 * 0.9 * 0.9 * 0.95], + "weapon_damage_cof": 1024 + }, + 35987: { + "skill_class": PhysicalDamage, + "skill_name": "饮羽簇", + "damage_base": [77, 154, 321, 308, 347, 385, 424, 462, 501, 539, 578, 616, 655, 693, 732], + "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10], + "attack_power_cof": [66 * 0.9 * 0.9 * 0.95 * 0.9 * 0.95] * 3 + + [(66 + (i - 4) * 38) * 0.9 * 0.9 * 0.95 * 0.9 * 0.95 for i in range(4, 15)] + + [552 * 0.9 * 0.9 * 0.95 * 0.9 * 0.95], + "weapon_damage_cof": 2048 + }, + 36056: { + "skill_class": PhysicalDamage, + "skill_name": "践踏", + "damage_base": [16, 44, 72, 100, 128, 156, 184, 212, 240, 268, 296], + "damage_rand": 20, + "attack_power_cof": [70 * 1.05] * 2 + + [(70 + (i - 3) * 58) * 1.05 for i in range(3, 11)] + + [607 * 1.05], + "skill_damage_addition": 62 + }, + 36057: { + "skill_class": PhysicalDamage, + "skill_name": "重击", + "damage_base": [16, 44, 72, 100, 128, 156, 184, 212, 240, 268, 296], + "damage_rand": 20, + "attack_power_cof": [33 * 1.05] * 2 + + [(33 + (i - 3) * 26) * 1.05 for i in range(3, 11)] + + [276 * 1.05], + "skill_damage_addition": 62 + }, + 36111: { + "skill_class": PhysicalDamage, + "skill_name": "攻击", + "damage_base": [16, 44, 72, 100, 128, 156, 184, 212, 240, 268, 296], + "damage_rand": 20, + "attack_power_cof": [33 * 1.05] * 2 + + [(33 + (i - 3) * 26) * 1.05 for i in range(3, 11)] + + [276 * 1.05], + "skill_damage_addition": 62 + }, + 36112: { + "skill_class": PhysicalDamage, + "skill_name": "攻击", + "damage_base": [48, 132, 216, 300, 384, 468, 552, 636, 720, 804, 296], + "damage_rand": 20, + "attack_power_cof": [99 * 1.05] * 2 + + [(99 + (i - 3) * 26) * 1.05 for i in range(3, 11)] + + [828 * 1.05], + "skill_damage_addition": 62 + }, + 36113: { + "skill_class": PhysicalDamage, + "skill_name": "攻击", + "damage_base": [16, 44, 72, 100, 128, 156, 184, 212, 240, 268, 296], + "damage_rand": 20, + "attack_power_cof": [70 * 1.05] * 2 + + [(70 + (i - 3) * 26) * 1.05 for i in range(3, 11)] + + [607 * 1.05], + "skill_damage_addition": 62 + }, + 36114: { + "skill_class": PhysicalDamage, + "skill_name": "攻击", + "damage_base": [16, 44, 72, 100, 128, 156, 184, 212, 240, 268, 296], + "damage_rand": 20, + "attack_power_cof": [23 * 1.05] * 2 + + [(23 + (i - 3) * 26) * 1.05 for i in range(3, 11)] + + [165 * 1.05], + "skill_damage_addition": 62 + }, + 36157: { + "skill_class": PhysicalDamage, + "skill_name": "标鹄", + "damage_base": 30, + "damage_rand": 20, + "attack_power_cof": 512 * 1.15 * 0.9 * 0.95 + }, + 26856: { + "skill_class": PhysicalDotDamage, + "skill_name": "贯穿(DOT)", + "damage_base": 32, + "attack_power_cof": 215 * 0.7 * 1.15 * 0.9 * 0.9 * 0.9, + "interval": FRAME_PER_SECOND * DOT_DAMAGE_SCALE / 4 + }, + 36165: { + "skill_class": DotConsumeSkill, + "skill_name": "贯穿", + "bind_skill": 26856, + "tick": 3 + }, + 35771: { + "skill_class": DotSkill, + "skill_name": "贯穿", + "bind_skill": 26856, + "max_stack": 6, + "tick": 4 + }, + 36453: { + "skill_class": PhysicalDamage, + "skill_name": "朝仪万汇", + "damage_base": 37, + "damage_rand": 5, + "attack_power_cof": 215 + }, + 36579: { + "skill_class": PhysicalDamage, + "skill_name": "劲风簇·神兵", + "damage_base": 20, + "damage_rand": 2, + "attack_power_cof": 60 + }, + 36580: { + "skill_class": PhysicalDamage, + "skill_name": "月弦激星", + "damage_base": 20, + "damage_rand": 2, + "attack_power_cof": 390 + } +} + +for skill_id, detail in SKILLS.items(): + SKILLS[skill_id] = detail.pop('skill_class')(skill_id) + for attr, value in detail.items(): + setattr(SKILLS[skill_id], attr, value) + +for skill_id, skill in GENERAL_SKILLS.items(): + SKILLS[skill_id] = skill diff --git a/schools/fen_shan_jing/talents.py b/schools/fen_shan_jing/talents.py new file mode 100644 index 0000000000000000000000000000000000000000..34b26f5c5d42298e3cdecf91c7b8abad39113e68 --- /dev/null +++ b/schools/fen_shan_jing/talents.py @@ -0,0 +1,95 @@ +from typing import Dict + +from base.attribute import Attribute +from base.gain import Gain +from base.skill import Skill + + +class 彤弓(Gain): + def add_skills(self, skills: Dict[int, Skill]): + skills[35866].skill_critical_strike += 1000 + skills[35866].skill_critical_power += 102 + + def sub_skills(self, skills: Dict[int, Skill]): + skills[35866].skill_critical_strike -= 1000 + skills[35866].skill_critical_power -= 102 + + +class 素矰(Gain): + def add_skills(self, skills: Dict[int, Skill]): + skills[26856].attack_power_cof_gain *= 1.05 + + def sub_skills(self, skills: Dict[int, Skill]): + skills[26856].attack_power_cof_gain /= 1.05 + + +class 孰湖(Gain): + def add_skills(self, skills: Dict[int, Skill]): + for skill_id in (36056, 36057, 36111, 36112, 36113, 36114): + skills[skill_id].skill_damage_addition += 62 + + def sub_skills(self, skills: Dict[int, Skill]): + for skill_id in (36056, 36057, 36111, 36112, 36113, 36114): + skills[skill_id].skill_damage_addition -= 62 + + +class 桑柘(Gain): + def add_skills(self, skills: Dict[int, Skill]): + skills[35771].tick += 1 + + def sub_skills(self, skills: Dict[int, Skill]): + skills[35771].tick -= 1 + + +class 卢令(Gain): + def add_attribute(self, attribute: Attribute): + attribute.agility_gain += 102 + + def sub_attribute(self, attribute: Attribute): + attribute.agility_gain -= 102 + + +class 贯侯(Gain): + def add_skills(self, skills: Dict[int, Skill]): + skills[36157].skill_pve_addition += 205 + + def sub_skills(self, skills: Dict[int, Skill]): + skills[36157].skill_pve_addition -= 205 + + +TALENT_GAINS: Dict[int, Gain] = { + 35715: 素矰("素矰"), + 35714: 彤弓("彤弓"), + 35718: Gain("棘矢"), + 35719: 孰湖("孰湖"), + 35721: Gain("襄尺"), + 35725: Gain("长右"), + 35729: Gain("鹿蜀"), + 35736: 桑柘("桑柘"), + 35733: Gain("诸怀"), + 35737: Gain("于狩"), + 35745: 卢令("卢令"), + 35749: Gain("托月"), + 35751: Gain("佩弦"), + 35754: Gain("丛云隐月"), + 35757: 贯侯("贯侯"), + 35764: Gain("朝仪万汇"), + 35761: Gain("朱厌") +} + +TALENTS = [ + [35715, 35714], + [35718, 35719], + [35721], + [35725], + [35729], + [35736, 35733], + [35737], + [35745], + [35749], + [35751, 35754], + [35757], + [35764, 35761] +] +TALENT_DECODER = {talent_id: talent.gain_name for talent_id, talent in TALENT_GAINS.items()} +TALENT_ENCODER = {v: k for k, v in TALENT_DECODER.items()} diff --git a/schools/gu_feng_jue/buffs.py b/schools/gu_feng_jue/buffs.py index 32770b81629de8f19d8fb83310cb1aeb83357229..30ca670bdfd171b14aa522dbbdda5fffc46c2a03 100644 --- a/schools/gu_feng_jue/buffs.py +++ b/schools/gu_feng_jue/buffs.py @@ -2,11 +2,6 @@ from base.buff import Buff from general.buffs import GENERAL_BUFFS -class 涤瑕(Buff): - def value(self, values): - return 1 + values * self.buff_stack - - BUFFS = { 11378: { "buff_name": "朔气", @@ -52,7 +47,7 @@ BUFFS = { "activate": False, "gain_skills": { 24443: { - "attack_power_cof_gain": 0.1 + "attack_power_cof_gain": [1 + 0.1 * (i + 1) for i in range(6)] } } } diff --git a/schools/gu_feng_jue/skills.py b/schools/gu_feng_jue/skills.py index 4213244fbaabc6751949a7b43ad1c6a357a17a32..d1fd1f11bc0250b09dec62ed8039a86a01eada6e 100644 --- a/schools/gu_feng_jue/skills.py +++ b/schools/gu_feng_jue/skills.py @@ -6,13 +6,15 @@ from general.skills import GENERAL_SKILLS class 横刀断浪流血(Skill): - def record(self, skill_level, critical, parser): + def record(self, critical, parser): bind_skill = self.bind_skill bind_buff = self.bind_buff parser.current_ticks[bind_skill] = self.tick parser.current_stacks[bind_skill] = self.max_stack - parser.current_status[(bind_buff, 1)] = self.max_stack - parser.current_snapshot[bind_skill] = parser.current_status.copy() + for level in range(self.max_stack): + parser.current_target_buffs.pop((bind_buff, level + 1), None) + parser.current_target_buffs[(bind_buff, self.max_stack)] = 1 + parser.current_dot_snapshot[bind_skill] = parser.current_player_buffs.copy() SKILLS: Dict[int, Skill | dict] = { diff --git a/schools/hua_jian_you/buffs.py b/schools/hua_jian_you/buffs.py index 3695d0a9bc0608be11ebdbd5c2aabd693c320e10..9579dfed3a99f66a4170e8e88f5fc027cdcb3402 100644 --- a/schools/hua_jian_you/buffs.py +++ b/schools/hua_jian_you/buffs.py @@ -38,10 +38,9 @@ BUFFS = { }, 24599: { "buff_name": "雪中行", - "stackable": False, "gain_attributes": { - "magical_attack_power_gain": [102, 204, 306], - "magical_critical_strike_gain": [600, 1200, 1800] + "magical_attack_power_gain": 102, + "magical_critical_strike_gain": 600 }, "gain_skills": { skill_id: { @@ -60,7 +59,10 @@ BUFFS = { "buff_name": "青冠", "activate": False, "gain_attributes": { - "global_damage_factor": [0.25, 1.] + "global_damage_factor": [ + 1.25, + 2. + ] } }, 9722: { diff --git a/schools/hua_jian_you/recipes.py b/schools/hua_jian_you/recipes.py index e76ec9f3bf8a495a5a785666ead98f2be6f0f288..181c7500e3ef681bbfc0b658d0d50c035b7d8171 100644 --- a/schools/hua_jian_you/recipes.py +++ b/schools/hua_jian_you/recipes.py @@ -26,10 +26,7 @@ RECIPE_GAINS: Dict[str, Dict[str, Gain]] = { } RECIPES: Dict[str, List[str]] = { - "普渡四方": ["5%伤害", "4%伤害", "3%伤害"], - "横扫六合": ["50%伤害"], - "韦陀献杵": ["5%伤害", "4%伤害", "4%会心", "3%伤害", "3%会心", "2%会心"], - "捕风式": ["15%伤害", "10%伤害", "10%伤害"], - "守缺式": ["5%伤害", "4%伤害", "4%会心", "3%伤害", "3%会心", "2%会心"], - "拿云式": ["5%伤害", "4%伤害", "3%伤害"], + "阳明指": ["4%伤害", "3%伤害", "3%会心", "2%会心"], + "芙蓉并蒂": ["5%伤害", "4%伤害", "4%会心", "3%伤害", "3%会心", "2%会心"], + "快雪时晴": ["5%伤害", "4%伤害", "3%伤害"], } diff --git a/schools/hua_jian_you/skills.py b/schools/hua_jian_you/skills.py index a948e97146266439da6e43f46aea701e9d4b9faa..fa10c364586556263b7f1e624201abbb455a9fef 100644 --- a/schools/hua_jian_you/skills.py +++ b/schools/hua_jian_you/skills.py @@ -5,17 +5,19 @@ from general.skills import GENERAL_SKILLS class DotConsumeSkill(Skill): - buff_levels: dict + bind_buff_levels: dict - def record(self, skill_level, critical, parser): + def record(self, critical, parser): if not (last_dot := parser.current_last_dot.pop(self.bind_skill, None)): return - if skill_level not in self.buff_levels: + if self.skill_level not in self.bind_buff_levels: return skill_tuple, status_tuple = last_dot - if buff_level := self.buff_levels[skill_level]: - new_status_tuple = (*status_tuple, (-32489, buff_level, 1)) + if buff_level := self.bind_buff_levels[self.skill_level]: + current_status, snapshot_status, target_status = status_tuple + new_target_status = (*target_status, (-32489, buff_level, 1)) + new_status_tuple = (current_status, snapshot_status, new_target_status) else: new_status_tuple = status_tuple skill_id, skill_level, skill_stack = skill_tuple @@ -31,15 +33,15 @@ class GeneraConsumeSkill(DotConsumeSkill): bind_skills = { **{i + 9: skill_id for i, skill_id in enumerate([714, 666, 711, 24158])} } - buff_levels = { + bind_buff_levels = { **{i + 9: 1 for i in range(4)} } - def record(self, skill_level, critical, parser): - if skill_level not in self.bind_skills: + def record(self, critical, parser): + if self.skill_level not in self.bind_skills: return - self.bind_skill = self.bind_skills[skill_level] - super().record(skill_level, critical, parser) + self.bind_skill = self.bind_skills[self.skill_level] + super().record(critical, parser) SKILLS: Dict[int, Skill | dict] = { @@ -81,7 +83,7 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "兰摧玉折", "bind_skill": 711, "tick": 99, - "buff_levels": {5: 2, 6: 1} + "bind_buff_levels": {5: 2, 6: 1} }, 714: { "skill_class": MagicalDotDamage, @@ -106,13 +108,15 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "钟林毓秀", "bind_skill": 714, "tick": 99, - "buff_levels": {5: 2, 6: 1} + "bind_buff_levels": {5: 2, 6: 1} }, 14941: { "skill_class": MagicalDamage, "skill_name": "阳明指", - "damage_base": [38, 44, 49, 54, 59, 63, 69, 71, 73, 75, 77, 79, 81, 83, 85, 86, 90, 94, 98, 102, 105, 110, 115, 120, 125, 135, 145, 155], - "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], + "damage_base": [38, 44, 49, 54, 59, 63, 69, 71, 73, 75, 77, 79, 81, 83, 85, 86, 90, 94, 98, 102, 105, 110, 115, + 120, 125, 135, 145, 155], + "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28], "attack_power_cof": [48 * 1.365 * 1.2 * 1.05 * 1.1 * 1.15] * 9 + [(48 + (i - 9) * 4) * 1.365 * 1.2 * 1.05 * 1.1 * 1.15 for i in range(10, 28)] + [130 * 1.365 * 1.2 * 1.05 * 1.1 * 1.15], @@ -140,7 +144,7 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "商阳指", "bind_skill": 666, "tick": 99, - "buff_levels": {5: 2, 6: 1} + "bind_buff_levels": {5: 2, 6: 1} }, 6693: { "skill_class": MagicalDamage, @@ -196,7 +200,7 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "快雪时晴", "bind_skill": 24158, "tick": 99, - "buff_levels": {2: 2, 3: 1} + "bind_buff_levels": {2: 2, 3: 1} }, 601: { "skill_class": GeneraConsumeSkill, diff --git a/schools/mo_wen/buffs.py b/schools/mo_wen/buffs.py index ef9ed4ce9d8ff37cf08f030d9125327308840c37..4bd3388e9e98ae2677186b77bc0d225ee027c3a1 100644 --- a/schools/mo_wen/buffs.py +++ b/schools/mo_wen/buffs.py @@ -35,7 +35,7 @@ BUFFS = { }, **{ skill_id: { - "attack_power_cof_gain": 0.2 + "attack_power_cof_gain": 1.2 } for skill_id in (9357, 9361) } } diff --git a/schools/tai_xu_jian_yi/__init__.py b/schools/tai_xu_jian_yi/__init__.py index 36e545fc021aeec605491241d09bc5b4204e4f3c..107d8fbfc406016e47d3232c0e481e9cfeba509c 100644 --- a/schools/tai_xu_jian_yi/__init__.py +++ b/schools/tai_xu_jian_yi/__init__.py @@ -7,4 +7,4 @@ from schools.tai_xu_jian_yi.attribute import TaiXuJianYi def prepare(self, player_id): - self.status[player_id][(9949, 1)] = 3 + self.player_buffs[player_id][(9949, 1)] = 3 diff --git a/schools/yi_jin_jing/__init__.py b/schools/yi_jin_jing/__init__.py index 801a2569e2dcec9d94d10fe173553655ae20d9e4..5777cb018d845373dbb31035b7f4ea70ce00c44a 100644 --- a/schools/yi_jin_jing/__init__.py +++ b/schools/yi_jin_jing/__init__.py @@ -7,4 +7,4 @@ from schools.yi_jin_jing.attribute import YiJinJing def prepare(self, player_id): - self.status[player_id][(10023, 1)] = 1 + self.player_buffs[player_id][(10023, 1)] = 1 diff --git a/schools/yi_jin_jing/buffs.py b/schools/yi_jin_jing/buffs.py index 4ded49be41d2c9e2d76681615c09cc761ac39bf5..54785313df60e2827c39cb8efa22980567afae8f 100644 --- a/schools/yi_jin_jing/buffs.py +++ b/schools/yi_jin_jing/buffs.py @@ -19,7 +19,7 @@ BUFFS = { "max_stack": 3 }, 19635: { - "buff_name": "明法", + "buff_name": "普渡", "gain_attributes": { "magical_vulnerable": [41, 82, 123] } @@ -62,7 +62,7 @@ BUFFS = { "gain_skills": { skill_id: { "skill_damage_addition": 205 - } for skill_id in (3848, 3849, 3850, 3814, 3816, 13685, 32887) + } for skill_id in (3848, 3849, 3850, 3814, 3816, 13685) } }, 24453: { @@ -76,7 +76,7 @@ BUFFS = { "gain_skills": { skill_id: { "skill_pve_addition": 820 - } for skill_id in (17641, 3848, 3849, 3850, 236, 3810, 271) + } for skill_id in (17641, 3848, 3849, 3850, 236, 3810, 271, 743) } }, 1919: { @@ -84,7 +84,7 @@ BUFFS = { "gain_skills": { skill_id: { "skill_damage_addition": 922 - } for skill_id in (3848, 3849, 3850) + } for skill_id in (3848, 3849, 3850, 271) } } } diff --git a/schools/yi_jin_jing/recipes.py b/schools/yi_jin_jing/recipes.py index 5c2a3a0c658a5b345787ed741479063cdcb10e1c..9fb0ae2962e576031e62984724bce80d3d013134 100644 --- a/schools/yi_jin_jing/recipes.py +++ b/schools/yi_jin_jing/recipes.py @@ -16,9 +16,9 @@ RECIPE_GAINS: Dict[str, Dict[str, Gain]] = { "5%伤害": damage_addition_recipe([3848, 3849, 3850, 271], 51), "4%伤害": damage_addition_recipe([3848, 3849, 3850, 271], 41), "3%伤害": damage_addition_recipe([3848, 3849, 3850, 271], 31), - "4%会心": critical_strike_recipe([3848, 3849, 3850, 271], 400), - "3%会心": critical_strike_recipe([3848, 3849, 3850, 271], 300), - "2%会心": critical_strike_recipe([3848, 3849, 3850, 271], 200), + "4%会心": critical_strike_recipe([3848, 3849, 3850], 400), + "3%会心": critical_strike_recipe([3848, 3849, 3850], 300), + "2%会心": critical_strike_recipe([3848, 3849, 3850], 200), }, "捕风式": { "15%伤害": damage_addition_recipe([14951], 150), diff --git a/schools/yi_jin_jing/skills.py b/schools/yi_jin_jing/skills.py index 7fd6f064a7c3aa13df01ab473bbd56b79fb13a2e..19e9faf67e8b8dfe4598b6ece97dd80310610f0a 100644 --- a/schools/yi_jin_jing/skills.py +++ b/schools/yi_jin_jing/skills.py @@ -7,18 +7,19 @@ from general.skills import GENERAL_SKILLS class 明法判定(Skill): final_buff = 19635 - def record(self, skill_level, critical, parser): - buff_level = parser.current_status[(self.bind_buff, 1)] + def record(self, critical, parser): + buff_level = parser.current_target_buffs.get((self.bind_buff, 1)) if buff_level: - parser.current_status[(self.final_buff, buff_level)] = 1 + parser.current_target_buffs[(self.final_buff, buff_level)] = 1 class 明法移除(Skill): final_buff = 19635 - def record(self, skill_level, critical, parser): - for level in range(3): - parser.current_status.pop((self.final_buff, level + 1), None) + def record(self, critical, parser): + buff_level = parser.current_target_buffs.get((self.bind_buff, 1), 0) + for level in range(buff_level): + parser.current_target_buffs.pop((self.final_buff, level + 1), None) SKILLS: Dict[int, Skill | dict] = { @@ -47,13 +48,6 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "明法移除", "bind_buff": 890, }, - 743: { - "skill_class": MagicalDotDamage, - "skill_name": "横扫六合(DOT)", - "damage_base": 45, - "attack_power_cof": 70 * 1.2 * 1.65 * 1.15 * 1.15 * 1.05 * 1.25 * 1.1 * 1.1, - "interval": 32 - }, 19090: { "skill_class": PhysicalDamage, "skill_name": ["普渡四方", "韦陀献杵", "横扫六合", "摩诃无量"], @@ -80,6 +74,13 @@ SKILLS: Dict[int, Skill | dict] = { "damage_rand": 2, "attack_power_cof": 16, }, + 743: { + "skill_class": MagicalDotDamage, + "skill_name": "横扫六合(DOT)", + "damage_base": 45, + "attack_power_cof": 70 * 1.2 * 1.65 * 1.15 * 1.15 * 1.05 * 1.25 * 1.1 * 1.1, + "interval": 32 + }, 3810: { "skill_class": type("Mixing", (MagicalDamage, DotSkill), {}), "skill_name": "横扫六合", @@ -144,7 +145,7 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "守缺式", "damage_base": [52, 62, 72, 82, 92, 102, 112, 122, 132, 142], "damage_rand": 5, - "attack_power_cof": [(120 + i * 5) * 1.15 * 0.95 * 1.05 * 1.2 * 1.1 for i in range(10)] + + "attack_power_cof": [(120 + i * 5) * 1.15 * 0.95 * 1.05 * 1.2 * 1.1 for i in range(9)] + [200 * 1.2 * 1.15 * 0.95 * 1.05 * 1.2 * 1.1], }, 3816: { @@ -152,7 +153,7 @@ SKILLS: Dict[int, Skill | dict] = { "skill_name": "守缺式", "damage_base": [52, 62, 72, 82, 92, 102, 112, 122, 132, 142], "damage_rand": 5, - "attack_power_cof": [(120 + i * 5) * 1.15 * 0.95 * 1.05 * 1.1 for i in range(10)] + + "attack_power_cof": [(120 + i * 5) * 1.15 * 0.95 * 1.05 * 1.1 for i in range(9)] + [200 * 1.2 * 1.15 * 0.95 * 1.05 * 1.1], }, 13685: { diff --git a/utils/analyzer.py b/utils/analyzer.py index 754ed49e9848c87ef9d559134cfd2887d21b6751..4d0665932f6d65d08490dc6dd07dd7834f82d09b 100644 --- a/utils/analyzer.py +++ b/utils/analyzer.py @@ -39,27 +39,36 @@ def filter_status(status, school: School, skill_id): buff.buff_level, buff.buff_stack = buff_level, buff_stack if buff.gain_attributes: buffs.append(buff) - if skill_id in buff.gain_skills: + elif skill_id in buff.gain_skills: buffs.append(buff) return tuple(sorted(buffs, key=lambda x: x.buff_id)) -def add_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill): +def add_buffs(current_buffs, snapshot_buffs, target_buffs, attribute: Attribute, skill: Skill): + final_buffs = [] if not snapshot_buffs: for buff in current_buffs: buff.add_all(attribute, skill) + final_buffs.append(buff) elif isinstance(skill, DotDamage): for buff in snapshot_buffs: - buff.add_dot(attribute, skill, True) + if buff.add_dot(attribute, skill, True): + final_buffs.append(buff) for buff in current_buffs: - buff.add_dot(attribute, skill, False) + if buff.add_dot(attribute, skill, False): + final_buffs.append(buff) elif isinstance(skill, PetDamage): for buff in snapshot_buffs: buff.add_all(attribute, skill) + final_buffs.append(buff) + for buff in target_buffs: + buff.add_all(attribute, skill) + return final_buffs + list(target_buffs) -def sub_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill): + +def sub_buffs(current_buffs, snapshot_buffs, target_buffs, attribute: Attribute, skill: Skill): if not snapshot_buffs: for buff in current_buffs: buff.sub_all(attribute, skill) @@ -71,12 +80,12 @@ def sub_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill) elif isinstance(skill, PetDamage): for buff in snapshot_buffs: buff.sub_all(attribute, skill) + for buff in target_buffs: + buff.sub_all(attribute, skill) -def concat_buffs(current_buffs, snapshot_buffs): - buffs = ",".join(buff.display_name for buff in current_buffs) - if snapshot_buffs and current_buffs != snapshot_buffs: - buffs += f"({','.join(buff.display_name for buff in snapshot_buffs)})" +def concat_buffs(buffs): + buffs = ",".join(buff.display_name for buff in buffs) if not buffs: buffs = "~" return buffs @@ -100,20 +109,20 @@ def analyze_details(record, duration: int, attribute: Attribute, school: School) if not (skill_summary := summary.get(skill_name)): skill_summary = summary[skill_name] = Detail() skill_total = skill_detail[""] = Detail() - for (current_status, snapshot_status), timeline in status.items(): + for (current_status, snapshot_status, target_status), timeline in status.items(): if not (timeline := [t for t in timeline if t[0] < duration]): continue critical_timeline = [t for t in timeline if t[1]] current_buffs = filter_status(current_status, school, skill_id) snapshot_buffs = filter_status(snapshot_status, school, skill_id) - buffs = concat_buffs(current_buffs, snapshot_buffs) + target_buffs = filter_status(target_status, school, skill_id) - if not (detail := skill_detail.get(buffs)): - add_buffs(current_buffs, snapshot_buffs, attribute, skill) - detail = skill_detail[buffs] = Detail(*skill(attribute)) - detail.gradients = analyze_gradients(skill, attribute) - sub_buffs(current_buffs, snapshot_buffs, attribute, skill) + buffs = add_buffs(current_buffs, snapshot_buffs, target_buffs, attribute, skill) + buffs = concat_buffs(buffs) + detail = skill_detail[buffs] = Detail(*skill(attribute)) + detail.gradients = analyze_gradients(skill, attribute) + sub_buffs(current_buffs, snapshot_buffs, target_buffs, attribute, skill) detail.critical_count += len(critical_timeline) detail.count += len(timeline) diff --git a/utils/io.py b/utils/io.py new file mode 100644 index 0000000000000000000000000000000000000000..66f88888d193b25f8e561dc132dd9fcb5c1792b0 --- /dev/null +++ b/utils/io.py @@ -0,0 +1,25 @@ +from collections import defaultdict + +from base.constant import FRAME_PER_SECOND + +DELIMITER = "-" +COMMA = "," +SEMICOLON = ";" + + +def serialize(record, duration): + duration *= FRAME_PER_SECOND + result = defaultdict(lambda: defaultdict(list)) + for skill, status in record.items(): + skill = DELIMITER.join(str(e) for e in skill) + for (current_status, snapshot_status, target_status), timeline in status.items(): + if not (timeline := [t for t in timeline if t[0] < duration]): + continue + current_status = COMMA.join(DELIMITER.join(str(e) for e in buff) for buff in current_status) + snapshot_status = COMMA.join(DELIMITER.join(str(e) for e in buff) for buff in snapshot_status) + target_status = COMMA.join(DELIMITER.join(str(e) for e in buff) for buff in target_status) + concat_status = SEMICOLON.join((current_status, snapshot_status, target_status)) + + result[skill][concat_status].append(timeline) + + return result diff --git a/utils/parser.py b/utils/parser.py index d3b5b6ab6988321846659d5965c3a0d80337ec4a..428425e7e727ea84b693ee567922e7009b263221 100644 --- a/utils/parser.py +++ b/utils/parser.py @@ -4,19 +4,17 @@ from base.constant import FRAME_PER_SECOND from schools import * from utils.lua import parse -FRAME_TYPE, PLAYER_ID_TYPE, PLAYER_NAME_TYPE, PET_ID_TYPE = int, int, int, int +FRAME_TYPE, PLAYER_ID_TYPE, PLAYER_NAME_TYPE, TARGET_ID_TYPE, PET_ID_TYPE = int, int, int, int, int CASTER_ID_TYPE = PLAYER_ID_TYPE | PET_ID_TYPE SKILL_ID_TYPE, SKILL_LEVEL_TYPE, SKILL_STACK_TYPE, SKILL_CRITICAL_TYPE = int, int, int, bool -SKILL_BUFFER_TYPE = Tuple[SKILL_ID_TYPE, SKILL_LEVEL_TYPE, SKILL_CRITICAL_TYPE] SKILL_TYPE = Tuple[SKILL_ID_TYPE, SKILL_LEVEL_TYPE, SKILL_STACK_TYPE] BUFF_ID_TYPE, BUFF_LEVEL_TYPE, BUFF_STACK_TYPE = int, int, int BUFF_TYPE = Tuple[BUFF_ID_TYPE, BUFF_LEVEL_TYPE] -STATUS_TYPE = Tuple[BUFF_ID_TYPE, BUFF_LEVEL_TYPE, BUFF_STACK_TYPE] -SNAPSHOT_TYPE = Dict[SKILL_ID_TYPE | PET_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]] - -TIMELINE_TYPE = List[Tuple[FRAME_TYPE, SKILL_CRITICAL_TYPE]] -SUB_RECORD_TYPE = Dict[Tuple[tuple, tuple], TIMELINE_TYPE] +CURRENT_STATUS_TYPE, SNAPSHOT_STATUS_TYPE, TARGET_STATUS_TYPE = tuple, tuple, tuple +STATUS_TUPLE = Tuple[CURRENT_STATUS_TYPE, SNAPSHOT_STATUS_TYPE, TARGET_STATUS_TYPE] +TIMELINE_TYPE = Tuple[FRAME_TYPE, SKILL_CRITICAL_TYPE] +SUB_RECORD_TYPE = Dict[STATUS_TUPLE, List[TIMELINE_TYPE]] RECORD_TYPE = Dict[SKILL_TYPE, SUB_RECORD_TYPE] LABEL_MAPPING = { @@ -35,30 +33,33 @@ LABEL_MAPPING = { } EMBED_MAPPING: Dict[tuple, int] = {(5, 24449 - i): 8 - i for i in range(8)} -BUFFER_DELAY = 0 - class Parser: current_player: PLAYER_ID_TYPE current_caster: CASTER_ID_TYPE + current_target: TARGET_ID_TYPE + current_skill: SKILL_ID_TYPE current_frame: FRAME_TYPE - frames: List[FRAME_TYPE] - id2name: Dict[PLAYER_ID_TYPE, PLAYER_NAME_TYPE] - name2id: Dict[PLAYER_NAME_TYPE, PLAYER_ID_TYPE] + id2name: Dict[PLAYER_ID_TYPE | TARGET_ID_TYPE, PLAYER_NAME_TYPE] + name2id: Dict[PLAYER_NAME_TYPE, PLAYER_ID_TYPE | TARGET_ID_TYPE] pets: Dict[PET_ID_TYPE, PLAYER_ID_TYPE] - records: Dict[PLAYER_ID_TYPE, RECORD_TYPE] + records: Dict[PLAYER_ID_TYPE, Dict[TARGET_ID_TYPE, RECORD_TYPE]] + + shift_buffs: Dict[FRAME_TYPE, Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]]] + hidden_buffs: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, FRAME_TYPE]]] - hidden_buffs: Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, FRAME_TYPE]] - shift_status: Dict[FRAME_TYPE, Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]]] - status: Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]] + player_buffs: Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]] + target_buffs: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]]] - stacks: Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]] - ticks: Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]] + stacks: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]]] + ticks: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]]] - snapshot: Dict[PLAYER_ID_TYPE, SNAPSHOT_TYPE] - last_dot: Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, Tuple[SKILL_TYPE, Tuple[tuple, tuple]]]] - next_dot: Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]] + pet_snapshot: Dict[PET_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]] + dot_snapshot: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, Dict[BUFF_TYPE, BUFF_STACK_TYPE]]]] + + last_dot: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, Tuple[SKILL_TYPE, Tuple[tuple, tuple]]]]] + next_dot: Dict[TARGET_ID_TYPE, Dict[PLAYER_ID_TYPE, Dict[SKILL_ID_TYPE, int]]] start_frame: FRAME_TYPE end_frame: FRAME_TYPE @@ -66,43 +67,59 @@ class Parser: select_talents: Dict[PLAYER_ID_TYPE, List[int]] select_equipments: Dict[PLAYER_ID_TYPE, Dict[int, Dict[str, int | list]]] - school: Dict[PLAYER_ID_TYPE, School] + players: Dict[PLAYER_ID_TYPE, School] + targets: Dict[PLAYER_ID_TYPE, List[TARGET_ID_TYPE]] @property def current_school(self): - return self.school[self.current_player] + return self.players[self.current_player] + + @property + def current_targets(self): + return self.targets[self.current_player] @property def current_records(self): - return self.records[self.current_player] + return self.records[self.current_player][self.current_target] @property def current_hidden_buffs(self): - return self.hidden_buffs[self.current_player] + return self.hidden_buffs[self.current_target][self.current_player] + + @property + def current_player_buffs(self): + return self.player_buffs[self.current_player] @property - def current_status(self): - return self.status[self.current_player] + def current_target_buffs(self): + return self.target_buffs[self.current_target][self.current_player] @property def current_snapshot(self): - return self.snapshot[self.current_player] + if self.current_caster in self.pet_snapshot: + return self.pet_snapshot[self.current_caster] + else: + return self.dot_snapshot[self.current_target][self.current_player].get(self.current_skill, {}) + + @property + def current_dot_snapshot(self): + return self.dot_snapshot[self.current_target][self.current_player] @property def current_stacks(self): - return self.stacks[self.current_player] + return self.stacks[self.current_target][self.current_player] @property def current_ticks(self): - return self.ticks[self.current_player] + return self.ticks[self.current_target][self.current_player] @property def current_last_dot(self): - return self.last_dot[self.current_player] + return self.last_dot[self.current_target][self.current_player] @property def current_next_dot(self): - return self.next_dot[self.current_player] + return self.next_dot[self.current_target][self.current_player] @property def duration(self): @@ -111,29 +128,33 @@ class Parser: def reset(self): self.current_frame = 0 - self.frames = [] - self.id2name = {} self.name2id = {} self.pets = {} - self.records = defaultdict(lambda: defaultdict(lambda: defaultdict(list))) + self.records = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: defaultdict(list)))) + + self.hidden_buffs = defaultdict(lambda: defaultdict(dict)) + self.shift_buffs = defaultdict(lambda: defaultdict(dict)) + + self.player_buffs = defaultdict(dict) + self.target_buffs = defaultdict(lambda: defaultdict(dict)) - self.hidden_buffs = defaultdict(dict) - self.shift_status = defaultdict(lambda: defaultdict(dict)) - self.status = defaultdict(lambda: defaultdict(int)) + self.stacks = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 1))) + self.ticks = defaultdict(lambda: defaultdict(lambda: defaultdict(lambda: 0))) - self.stacks = defaultdict(lambda: defaultdict(lambda: 1)) - self.ticks = defaultdict(lambda: defaultdict(lambda: 0)) - self.snapshot = defaultdict(dict) - self.last_dot = defaultdict(dict) - self.next_dot = defaultdict(dict) + self.pet_snapshot = dict() + self.dot_snapshot = defaultdict(lambda: defaultdict(dict)) + self.last_dot = defaultdict(lambda: defaultdict(dict)) + self.next_dot = defaultdict(lambda: defaultdict(dict)) self.start_frame = 0 self.select_talents = {} self.select_equipments = {} - self.school = {} + + self.players = {} + self.targets = defaultdict(list) @staticmethod def parse_equipments(detail): @@ -155,70 +176,90 @@ class Parser: def parse_talents(detail): return [row[1] for row in detail] - def parse_info(self, row): + def parse_player(self, row): detail = row.strip("{}").split(",") player_id, school_id = int(detail[0]), int(detail[3]) if player_id in self.id2name or school_id not in SUPPORT_SCHOOL: return - if isinstance(detail := parse(row), list): + + if isinstance(detail := parse(row), list) and (school := SUPPORT_SCHOOL.get(detail[3])): player_name = detail[1] self.id2name[player_id] = player_name self.name2id[player_name] = player_id - if school := SUPPORT_SCHOOL.get(detail[3]): - self.select_equipments[player_id] = self.parse_equipments(detail[5]) - self.select_talents[player_id] = self.parse_talents(detail[6]) - if any(talent not in school.talent_gains for talent in self.select_talents[player_id]): - return - self.school[player_id] = school + self.select_equipments[player_id] = self.parse_equipments(detail[5]) + self.select_talents[player_id] = self.parse_talents(detail[6]) + if any(talent not in school.talent_gains for talent in self.select_talents[player_id]): + return + self.players[player_id] = school + + def parse_npc(self, row): + detail = row.strip("{}").split(",") + npc_id, player_id = int(detail[0]), int(detail[3]) + if npc_id in self.id2name: + return + + npc_name = detail[1] + self.id2name[npc_id] = npc_name + self.name2id[npc_name] = npc_id + if player_id: + self.pets[npc_id] = player_id + + def parse_pet(self, row): + detail = row.strip("{}").split(",") + pet_id, player_id = int(detail[0]), int(detail[3]) + if pet_id in self.pets: + self.pet_snapshot[pet_id] = self.player_buffs[player_id].copy() def parse_shift_buff(self, row): detail = row.strip("{}").split(",") player_id = int(detail[0]) - if player_id not in self.school: + if player_id not in self.players: return + buff_id, buff_stack, buff_level = int(detail[4]), int(detail[5]), int(detail[8]) - if buff_id not in self.school[player_id].buffs: + if buff_id not in self.players[player_id].buffs: return - frame_shift = self.school[player_id].buffs[buff_id].frame_shift + frame_shift = self.players[player_id].buffs[buff_id].frame_shift if frame_shift: - self.shift_status[self.current_frame + frame_shift][player_id][(buff_id, buff_level)] = buff_stack + self.shift_buffs[self.current_frame + frame_shift][player_id][(buff_id, buff_level)] = buff_stack def parse_shift_status(self): - for frame in list(self.shift_status): + for frame in list(self.shift_buffs): if frame > self.current_frame: break - for player_id, status_buffer in self.shift_status.pop(frame).items(): - for buff, buff_stack in status_buffer.items(): + for player_id, shift_buffs in self.shift_buffs.pop(frame).items(): + for buff, buff_stack in shift_buffs.items(): if buff_stack: - self.status[player_id][buff] = buff_stack + self.player_buffs[player_id][buff] = buff_stack else: - self.status[player_id].pop(buff, None) + self.player_buffs[player_id].pop(buff, None) def parse_hidden_buffs(self): - for player_id, hidden_buffs in self.hidden_buffs.items(): - for buff, end_frame in hidden_buffs.items(): - if end_frame < self.current_frame: - self.status[player_id].pop(buff, None) + for target_id in self.hidden_buffs: + for player_id, hidden_buffs in self.hidden_buffs[target_id].items(): + for buff, end_frame in hidden_buffs.items(): + if end_frame < self.current_frame: + self.target_buffs[target_id][player_id].pop(buff, None) - def parse_status(self, row): + def parse_buff(self, row): detail = row.strip("{}").split(",") player_id = int(detail[0]) - if player_id not in self.school: + if player_id not in self.players: return buff_id, buff_stack, buff_level = int(detail[4]), int(detail[5]), int(detail[8]) - if buff_id not in self.school[player_id].buffs: + if buff_id not in self.players[player_id].buffs: return - frame_shift = self.school[player_id].buffs[buff_id].frame_shift + frame_shift = self.players[player_id].buffs[buff_id].frame_shift if frame_shift: return if buff_stack: - self.status[player_id][(buff_id, buff_level)] = buff_stack + self.player_buffs[player_id][(buff_id, buff_level)] = buff_stack else: - self.status[player_id].pop((buff_id, buff_level), None) + self.player_buffs[player_id].pop((buff_id, buff_level), None) def parse_skill(self, row): detail = row.strip("{}").split(",") @@ -228,51 +269,56 @@ class Parser: else: player_id = caster_id - if player_id not in self.school: + if player_id not in self.players: return react, skill_id, skill_level, critical = int(detail[2]), int(detail[4]), int(detail[5]), detail[6] == "true" - if react or skill_id not in self.school[player_id].skills: + if react or skill_id not in self.players[player_id].skills: return if not self.start_frame: - self.start_frame = self.current_frame - 1 + self.start_frame = self.current_frame self.current_player = player_id self.current_caster = caster_id - skill = self.school[player_id].skills[skill_id] - skill.record(skill_level, critical, self) - - def parse_pet(self, row): - detail = row.strip("{}").split(",") - pet_id, player_id = int(detail[0]), int(detail[3]) - if player_id in self.school: - self.pets[pet_id] = player_id - self.snapshot[player_id][pet_id] = self.status[player_id].copy() - - def available_status(self, skill_id, snapshot_id=None): - if not snapshot_id: - snapshot_id = skill_id - + if target_id not in self.current_targets: + self.current_targets.append(target_id) + self.current_target = target_id + self.current_skill = skill_id + skill = self.players[player_id].skills[skill_id] + skill.skill_level = skill_level + skill.record(critical, self) + + def status(self, skill_id): current_status = [] - for (buff_id, buff_level), buff_stack in self.current_status.items(): + for (buff_id, buff_level), buff_stack in self.current_player_buffs.items(): buff = self.current_school.buffs[buff_id] if buff.gain_attributes: current_status.append((buff_id, buff_level, buff_stack)) elif buff.gain_skills and skill_id in buff.gain_skills: current_status.append((buff_id, buff_level, buff_stack)) + self.current_skill = skill_id snapshot_status = [] - for (buff_id, buff_level), buff_stack in self.current_snapshot.get(snapshot_id, {}).items(): + for (buff_id, buff_level), buff_stack in self.current_snapshot.items(): buff = self.current_school.buffs[buff_id] if buff.gain_attributes: snapshot_status.append((buff_id, buff_level, buff_stack)) elif buff.gain_skills and skill_id in buff.gain_skills: snapshot_status.append((buff_id, buff_level, buff_stack)) - return tuple(current_status), tuple(snapshot_status) + target_status = [] + for (buff_id, buff_level), buff_stack in self.current_target_buffs.items(): + buff = self.current_school.buffs[buff_id] + if buff.gain_attributes: + target_status.append((buff_id, buff_level, buff_stack)) + elif buff.gain_skills and skill_id in buff.gain_skills: + target_status.append((buff_id, buff_level, buff_stack)) + + return tuple(current_status), tuple(snapshot_status), tuple(target_status) def __call__(self, file_name): + self.file_name = file_name self.reset() lines = open(file_name).readlines() rows = [] @@ -280,9 +326,11 @@ class Parser: row = line.split("\t") rows.append(row) if row[4] == "4": - self.parse_info(row[-1]) + self.parse_player(row[-1]) + elif row[4] == "8": + self.parse_npc(row[-1]) - for player_id, school in self.school.items(): + for player_id, school in self.players.items(): school.prepare(self, player_id) for talent_id in self.select_talents[player_id]: school.talent_gains[talent_id].add_skills(school.skills) @@ -299,16 +347,24 @@ class Parser: if row[4] == "8": self.parse_pet(row[-1]) elif row[4] == "13": - self.parse_status(row[-1]) + self.parse_buff(row[-1]) elif row[4] == "21": self.parse_skill(row[-1]) self.end_frame = self.current_frame - for player_id, school in self.school.items(): + for player_id, school in self.players.items(): for talent_id in self.select_talents[player_id]: school.talent_gains[talent_id].sub_skills(school.skills) + for player_id in self.records: + player_record = defaultdict(lambda: defaultdict(list)) + for target_id, records in self.records[player_id].items(): + for skill_tuple, status in records.items(): + for status_tuple, timeline in status.items(): + player_record[skill_tuple][status_tuple] += timeline + self.records[player_id][0] = player_record + if __name__ == '__main__': parser = Parser()