Spaces:
Runtime error
Runtime error
04.27 commit
Browse files- base/attribute.py +11 -0
- base/skill.py +8 -0
- general/skills.py +15 -1
- qt/assets/equipments/belt +1 -1
- qt/assets/equipments/bottoms +1 -1
- qt/assets/equipments/hat +1 -1
- qt/assets/equipments/jacket +1 -1
- qt/assets/equipments/necklace +1 -1
- qt/assets/equipments/pendant +1 -1
- qt/assets/equipments/primary_weapon +0 -0
- qt/assets/equipments/ring +1 -1
- qt/assets/equipments/shoes +1 -1
- qt/assets/equipments/tertiary_weapon +1 -1505
- qt/assets/equipments/wrist +0 -0
- schools/ling_hai_jue/skills.py +22 -0
- schools/shan_hai_xin_jue/talents.py +10 -10
- schools/wu_fang/__init__.py +6 -0
- schools/wu_fang/attribute.py +21 -0
- schools/wu_fang/buffs.py +51 -0
- schools/wu_fang/gains.py +19 -0
- schools/wu_fang/recipes.py +44 -0
- schools/wu_fang/skills.py +191 -0
- schools/wu_fang/talents.py +54 -0
- utils/parser.py +31 -2
base/attribute.py
CHANGED
@@ -442,6 +442,17 @@ class PhysicalAttribute(Attribute):
|
|
442 |
|
443 |
|
444 |
class MagicalAttribute(Attribute):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
@property
|
446 |
def attack_power(self):
|
447 |
return self.magical_attack_power
|
|
|
442 |
|
443 |
|
444 |
class MagicalAttribute(Attribute):
|
445 |
+
grad_attrs = {
|
446 |
+
"spirit_base": MAJOR_DELTA,
|
447 |
+
"spunk_base": MAJOR_DELTA,
|
448 |
+
"surplus": MINOR_DELTA,
|
449 |
+
"strain_base": MINOR_DELTA,
|
450 |
+
"magical_attack_power_base": MAGICAL_DELTA,
|
451 |
+
"magical_critical_strike_base": MINOR_DELTA,
|
452 |
+
"magical_critical_power_base": MINOR_DELTA,
|
453 |
+
"magical_overcome_base": MINOR_DELTA
|
454 |
+
}
|
455 |
+
|
456 |
@property
|
457 |
def attack_power(self):
|
458 |
return self.magical_attack_power
|
base/skill.py
CHANGED
@@ -186,6 +186,10 @@ class MagicalDamage(Damage):
|
|
186 |
def attack_power_cof(self):
|
187 |
return MAGICAL_ATTACK_POWER_COF(super().attack_power_cof + self.interval)
|
188 |
|
|
|
|
|
|
|
|
|
189 |
|
190 |
class PhysicalDotDamage(DotDamage):
|
191 |
@property
|
@@ -201,3 +205,7 @@ class MagicalDotDamage(DotDamage):
|
|
201 |
@property
|
202 |
def attack_power_cof(self):
|
203 |
return MAGICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
|
|
|
|
|
|
|
|
|
186 |
def attack_power_cof(self):
|
187 |
return MAGICAL_ATTACK_POWER_COF(super().attack_power_cof + self.interval)
|
188 |
|
189 |
+
@attack_power_cof.setter
|
190 |
+
def attack_power_cof(self, attack_power_cof):
|
191 |
+
self._attack_power_cof = attack_power_cof
|
192 |
+
|
193 |
|
194 |
class PhysicalDotDamage(DotDamage):
|
195 |
@property
|
|
|
205 |
@property
|
206 |
def attack_power_cof(self):
|
207 |
return MAGICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
208 |
+
|
209 |
+
@attack_power_cof.setter
|
210 |
+
def attack_power_cof(self, attack_power_cof):
|
211 |
+
self._attack_power_cof = attack_power_cof
|
general/skills.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
from typing import Dict
|
2 |
|
3 |
-
from base.skill import PhysicalDamage, Skill
|
4 |
|
5 |
GENERAL_SKILLS: Dict[int, Skill | dict] = {
|
6 |
22160: {
|
@@ -10,6 +10,13 @@ GENERAL_SKILLS: Dict[int, Skill | dict] = {
|
|
10 |
"damage_rand": 17,
|
11 |
"attack_power_cof": 75
|
12 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
33257: {
|
14 |
"skill_class": PhysicalDamage,
|
15 |
"skill_name": "刃凌",
|
@@ -17,6 +24,13 @@ GENERAL_SKILLS: Dict[int, Skill | dict] = {
|
|
17 |
"damage_rand": 17,
|
18 |
"attack_power_cof": [60, 100, 60, 100, 100]
|
19 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
for skill_id, detail in GENERAL_SKILLS.items():
|
|
|
1 |
from typing import Dict
|
2 |
|
3 |
+
from base.skill import PhysicalDamage, MagicalDamage, Skill
|
4 |
|
5 |
GENERAL_SKILLS: Dict[int, Skill | dict] = {
|
6 |
22160: {
|
|
|
10 |
"damage_rand": 17,
|
11 |
"attack_power_cof": 75
|
12 |
},
|
13 |
+
22164: {
|
14 |
+
"skill_class": MagicalDamage,
|
15 |
+
"skill_name": "昆吾·弦刃",
|
16 |
+
"damage_base": 40,
|
17 |
+
"damage_rand": 17,
|
18 |
+
"attack_power_cof": 90
|
19 |
+
},
|
20 |
33257: {
|
21 |
"skill_class": PhysicalDamage,
|
22 |
"skill_name": "刃凌",
|
|
|
24 |
"damage_rand": 17,
|
25 |
"attack_power_cof": [60, 100, 60, 100, 100]
|
26 |
},
|
27 |
+
33261: {
|
28 |
+
"skill_class": MagicalDamage,
|
29 |
+
"skill_name": "刃凌",
|
30 |
+
"damage_base": 40,
|
31 |
+
"damage_rand": 17,
|
32 |
+
"attack_power_cof": [50, 100]
|
33 |
+
},
|
34 |
}
|
35 |
|
36 |
for skill_id, detail in GENERAL_SKILLS.items():
|
qt/assets/equipments/belt
CHANGED
@@ -1 +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": 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": 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": {}}, "月落腰带 (会心 破招) 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": 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": 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": 98469, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2236, "surplus": 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": 161, "physical_attack_power_base": 72}, "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": 98447, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus": 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": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 98415, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 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": 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": 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": {}}, "鸿辉·眠狸腰带 (会心 无双) 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": 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]}}, "风停腰带 (会心 破招) 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": 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": 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": {}}, "东方日出·天宇腰带 (破防 破招) 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": 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": 3041}, "embed": {"physical_overcome_base": 161, "strength_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": 96483, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 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": 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": 96355, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2000, "surplus": 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": 161, "physical_attack_power_base": 72}, "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": 96333, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus": 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": 3801, "physical_overcome_base": 3991}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 96301, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus": 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": 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": 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": {}}, "寻踪觅宝·飞旋腰带 (加速 破招) 13750": {"id": 98169, "school": "通用", "kind": "身法", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus": 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": 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": 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": 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]}}, "翠林腰带 (破防 破招) 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": 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": 2747}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": {}}, "西风北啸·角寒腰带 (破防 破招) 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": 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": 2714}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 94444, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "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": 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": 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": 94410, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus": 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": 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": 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": {}}, "临夜腰带 (破防 无双) 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": {}}, "梧风御厨腰带·刀功 (会心 破招) 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": 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": 98121, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus": 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": 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": 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": 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": 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": 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": 90648, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 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": 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": 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": 90576, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 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": 2681}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 90336, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "surplus": 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": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
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": 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": 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": 98484, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_critical_strike_base": 3875, "surplus": 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": 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": 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": 98586, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "magical_critical_strike_base": 3826, "surplus": 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": 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": 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": 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": 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": 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": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 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": 4251, "magical_overcome_base": 4464}, "embed": {"all_critical_strike_base": 161, "surplus": 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": 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": 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": 98412, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 763, "magical_attack_power_base": 1484, "haste_base": 3826, "surplus": 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": 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": 98276, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "strain_base": 3357}, "embed": {}, "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]}}, "风停腰带 (会心 破招) 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": 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": 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": 96370, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_critical_strike_base": 3470, "surplus": 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": 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": 3041}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 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": 96480, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "surplus": 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": 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": 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": 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": 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": 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": 3801, "physical_overcome_base": 3991}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 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": 3801, "magical_overcome_base": 3991}, "embed": {"all_critical_strike_base": 161, "surplus": 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": 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": 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": 96298, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus": 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": 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": 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": 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": 98166, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "haste_base": 3372, "surplus": 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": 96162, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {}, "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]}}, "翠林腰带 (破防 破招) 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": 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": 2747}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 94467, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_critical_strike_base": 3090, "surplus": 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": 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": 2714}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 94569, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 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": 94407, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus": 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": 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": 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": 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, "surplus": 2681}, "embed": {}, "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": 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": 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": 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": 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": 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": 96082, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus": 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": 94275, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {}, "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": 90648, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 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": 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": 90645, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus": 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": 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": 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": 2681}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 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": 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": 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": 90333, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "surplus": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/bottoms
CHANGED
@@ -1 +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": 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": 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": {}}, "月落裤 (会心 破招) 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 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": 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": 98463, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus": 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": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus": 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": 161, "physical_attack_power_base": 72}, "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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": 161, "physical_attack_power_base": 72}, "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": 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": 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": {}}, "风停裤 (会心 无双) 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": 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": 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": {}}, "东方日出·天宇裤 (破防 破招) 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 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": 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": 96349, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus": 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": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus": 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": 161, "physical_attack_power_base": 72}, "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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": {}}, "外功无封裤 (破防 会心 无双) 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": 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": 161, "physical_attack_power_base": 72}, "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": 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": 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": {}}, "西风北啸·角寒裤 (破防 破招) 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 94460, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "physical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "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": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 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": 161, "physical_attack_power_base": 72}, "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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"surplus": 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": 3831}, "embed": {"surplus": 161, "physical_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": 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": 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": 161, "physical_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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"surplus": 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": 3831}, "embed": {"surplus": 161, "physical_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": 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": 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": {}}}
|
|
|
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": 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": 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": 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": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 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": 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": 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": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus": 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": 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": 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": 6377, "all_critical_strike_base": 6073}, "embed": {"all_critical_power_base": 161, "surplus": 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": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4858}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 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": 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": 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": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus": 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": 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": 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": 5702, "all_critical_strike_base": 5431}, "embed": {"all_critical_power_base": 161, "surplus": 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": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 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": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 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": 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": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus": 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": 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": 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": 8118}, "embed": {"all_critical_strike_base": 161, "surplus": 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": 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": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 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": 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": 161, "physical_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": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"magical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"magical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"surplus": 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": 3831}, "embed": {"surplus": 161, "physical_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": 3831}, "embed": {"surplus": 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": 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": 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": 161, "physical_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": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"magical_overcome_base": 161, "surplus": 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": 3831}, "embed": {"surplus": 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": 3831}, "embed": {"surplus": 161, "physical_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": 3831}, "embed": {"surplus": 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": 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": 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": 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": 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": {}}}
|
qt/assets/equipments/hat
CHANGED
@@ -1 +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": 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": 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": {}}, "月落冠 (会心 破招) 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": 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": 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": 98529, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus": 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": 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": 98433, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus": 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": 4373}, "embed": {"physical_overcome_base": 161, "strength_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": {}}, "鸿辉·眠狸冠 (破防 破招) 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": 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": 98333, "school": "蓬莱", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"agility_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus": 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": 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]}}, "外功无封头饰 (破防 会心 破招) 15200": {"id": 98561, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus": 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": {}}, "外功无封头饰 (会心 破招 无双) 14350": {"id": 98537, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "surplus": 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": 161, "physical_attack_power_base": 72}, "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": 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": 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": {}}, "东方日出·天宇冠 (会心 无双) 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": 98211, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus": 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": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "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": 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": 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": 96415, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus": 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": 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": 96319, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus": 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": 3910}, "embed": {"physical_overcome_base": 161, "strength_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": {}}, "寻踪觅宝·飞旋帽 (会心 无双) 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": 96225, "school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus": 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": 96219, "school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus": 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": 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]}}, "外功无封头饰 (破防 会心 无双) 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": 4985, "physical_critical_strike_base": 4747}, "embed": {"physical_critical_power_base": 161, "surplus": 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": {}}, "外功无封头饰 (破防 会心 破招) 12800": {"id": 96423, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3212, "surplus": 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": {}}, "雪漫冠 (会心 破招) 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": 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": 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": {}}, "西风北啸·角寒冠 (会心 无双) 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": 94590, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus": 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": 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": 94512, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus": 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": 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": 94428, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus": 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": 3490}, "embed": {"physical_overcome_base": 161, "strength_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": {}}, "临书帽 (破防 无双) 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": {}}, "濯心·猎风冠 (破防 破招) 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": 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": 94330, "school": "蓬莱", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus": 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": 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": 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": 90630, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 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": 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": 90594, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus": 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": 3448}, "embed": {"physical_overcome_base": 161, "strength_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": 90426, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus": 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": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "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": 90354, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 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": 3448}, "embed": {"physical_attack_power_base": 72, "physical_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": 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": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
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": 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": 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": 98502, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 993, "magical_attack_power_base": 1933, "magical_critical_strike_base": 4982, "surplus": 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": 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": 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": 98604, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus": 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": 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": 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": 98526, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 980, "magical_attack_power_base": 1908, "magical_critical_strike_base": 4919, "surplus": 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": 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": 4373}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 98336, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 968, "surplus": 4316}, "embed": {"spirit_base": 36}, "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": 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": 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]}}, "外功无封头饰 (破防 会心 破招) 15200": {"id": 98561, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 96388, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 889, "magical_attack_power_base": 1731, "magical_critical_strike_base": 4462, "surplus": 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": 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": 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": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "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": 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": 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": 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": 96498, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus": 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": 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": 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": 96412, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_attack_power_base": 1707, "magical_critical_strike_base": 4399, "surplus": 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": 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": 3910}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 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": 96222, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "surplus": 3854}, "embed": {"spirit_base": 36}, "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": 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": 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]}}, "外功无封头饰 (破防 会心 无双) 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": 4985, "physical_critical_strike_base": 4747}, "embed": {"physical_critical_power_base": 161, "surplus": 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": 4985, "all_critical_strike_base": 4747}, "embed": {"all_critical_power_base": 161, "surplus": 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": 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": 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": 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": 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": 94485, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 792, "magical_attack_power_base": 1541, "magical_critical_strike_base": 3973, "surplus": 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": 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": 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": 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": 94587, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus": 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": 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": 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": 94509, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_attack_power_base": 1523, "magical_critical_strike_base": 3926, "surplus": 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": 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": 3490}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 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": 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": 94333, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "surplus": 3448}, "embed": {"spirit_base": 36}, "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": 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": 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": 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": 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": 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": 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": 90627, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus": 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": 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": 3448}, "embed": {"physical_overcome_base": 161, "strength_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": 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": 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": 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": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 90351, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773, "magical_attack_power_base": 1505, "magical_critical_strike_base": 3879, "surplus": 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": 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": 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": 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": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/jacket
CHANGED
@@ -1 +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": {}}, "月落衣 (会心 无双) 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": 98439, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus": 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": 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": 98403, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus": 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": 4858}, "embed": {"strength_base": 36, "physical_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": 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]}}, "风停衣 (破防 无双) 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": {}}, "东方日出·天宇衫 (破防 破招) 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": 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": 4344}, "embed": {"strength_base": 36, "physical_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": 4888, "strain_base": 4344}, "embed": {"surplus": 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": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_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": 96325, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus": 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": 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": 96289, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 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": 4344}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 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]}}, "雪漫衣 (破防 无双) 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": {}}, "西风北啸·角寒衣 (破防 破招) 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": 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": 3877}, "embed": {"strength_base": 36, "physical_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": 94434, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus": 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": 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": 94398, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 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": 3877}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 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": 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": 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": 90636, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 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": 3831}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 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": 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": 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": 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": 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": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
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": 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": 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": 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": 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": 98436, "school": "通用", "kind": "根骨", "level": 15600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1089, "magical_attack_power_base": 2121, "magical_critical_strike_base": 5466, "surplus": 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": 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": 4858}, "embed": {"strength_base": 36, "physical_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": 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": 98366, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 1075, "strain_base": 4796}, "embed": {}, "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]}}, "风停衣 (破防 无双) 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": 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": 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": 4344}, "embed": {"strength_base": 36, "physical_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": 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": 4888, "strain_base": 4344}, "embed": {"surplus": 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": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_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": 4888, "strain_base": 4344}, "embed": {"surplus": 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": 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": 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": 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": 96322, "school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus": 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": 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": 4344}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 98184, "school": "通用", "kind": "根骨", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "surplus": 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": 96252, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "strain_base": 4282}, "embed": {}, "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]}}, "雪漫衣 (破防 无双) 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": 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": 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": 3877}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 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": 94431, "school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus": 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": 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": 3877}, "embed": {"strength_base": 36, "physical_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": 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": 98154, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "strain_base": 3831}, "embed": {"spirit_base": 36}, "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": 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": 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": 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": 96100, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus": 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": 94362, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "strain_base": 3831}, "embed": {}, "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": 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": 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": 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": 3831}, "embed": {"strength_base": 36, "physical_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": 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": 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": 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": 90597, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 90357, "school": "通用", "kind": "根骨", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/necklace
CHANGED
@@ -1 +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": 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": 2460}, "embed": {"physical_attack_power_base": 72}, "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": 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": {}}, "外功无封项链 (破防 破招 无双) 15200": {"id": 39941, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 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": 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": 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": 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": 2305}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": {}}, "逢杨链 (破防 破招) 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": 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": 2203}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": {}}, "无者链 (破防 破招) 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": 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": 2149}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": {}}, "逢杨链 (破防 破招) 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": 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": 2071}, "embed": {"physical_attack_power_base": 72}, "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": 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": 1993}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 1962}, "embed": {"physical_attack_power_base": 72}, "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": 38821, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 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": 1939}, "embed": {"physical_attack_power_base": 72}, "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": 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": 1939}, "embed": {"physical_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": 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": {}}, "临越链 (破防 破招) 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": 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": 1931}, "embed": {"physical_attack_power_base": 72}, "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": 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": 1915}, "embed": {"physical_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": 34226, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 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": 1915}, "embed": {"physical_attack_power_base": 72}, "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": 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": 34100, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 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": 1915}, "embed": {"physical_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": 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": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": {}}}
|
|
|
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": 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": 2460}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 2305}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": 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": 2203}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": 2149}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": 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": 2071}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 1993}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": 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": 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": 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": 1962}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 1939}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 1939}, "embed": {"physical_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": 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": 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": 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": 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": 1931}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 1915}, "embed": {"physical_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": 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": 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": 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": 1915}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 1915}, "embed": {"physical_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": 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": 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": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "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": 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": 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": 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": 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": 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": {}}}
|
qt/assets/equipments/pendant
CHANGED
@@ -1 +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": {}}, "天地间 (破防 无双) 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": 39843, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus": 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": 2429}, "embed": {"strength_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": 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": 2429}, "embed": {"strength_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": 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": {}}, "无者坠 (会心 无双) 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": {}}, "外功无封腰坠 (破防 会心 无双) 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": 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": {}}, "危光坠 (破防 无双) 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": 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": 38779, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus": 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": 2172}, "embed": {"strength_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": 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": 2172}, "embed": {"strength_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": {}}, "外功无封腰坠 (破防 会心 会效) 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": 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": 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": {}}, "逢杨坠 (会心 无双) 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": {}}, "无者坠 (会心 无双) 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": 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": 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": {}}, "欺林坠 (会心 无双) 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": {}}, "灵空·风行坠 (会心 无双) 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": 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": 37818, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 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": 1939}, "embed": {"strength_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": 37708, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 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": 1939}, "embed": {"strength_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": 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": 1939}, "embed": {"strength_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": 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": 1931}, "embed": {"strength_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": 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": 34232, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 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": 1915}, "embed": {"strength_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": 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": 34106, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus": 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": 1915}, "embed": {"strength_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": 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": 2155, "strain_base": 1915}, "embed": {"physical_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": 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": {}}}
|
|
|
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": 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": 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": 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": 2429}, "embed": {"strength_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": 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": 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": 2429}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 2172}, "embed": {"strength_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": 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": 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": 2172}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 1939}, "embed": {"strength_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": 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": 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": 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": 1939}, "embed": {"strength_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": 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": 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": 1939}, "embed": {"strength_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": 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": 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": 1931}, "embed": {"strength_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": 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": 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": 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": 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": 1915}, "embed": {"strength_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": 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": 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": 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": 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": 1915}, "embed": {"strength_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": 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": 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": 2155, "strain_base": 1915}, "embed": {"physical_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": 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": 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": 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": 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": {}}}
|
qt/assets/equipments/primary_weapon
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
qt/assets/equipments/ring
CHANGED
@@ -1 +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": 39869, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1903, "surplus": 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": 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": 39863, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "surplus": 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": 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": 39831, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus": 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": 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": 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": 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": 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": 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": 38805, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1702, "surplus": 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": 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": 38799, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "surplus": 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": 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": 38767, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 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": 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": {}}, "湖月戒 (会心 破招) 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": 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": 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": 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": 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": 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": 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": 37696, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 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": 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": {}}, "梧风御厨戒指·刀功 (会心 无双) 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": 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": 34274, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 34094, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 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": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 39788, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "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": 34274, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/shoes
CHANGED
@@ -1 +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": 3444}, "embed": {"surplus": 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": 3444}, "embed": {"surplus": 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": {}}, "月落靴 (会心 破招) 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": 3401}, "embed": {"surplus": 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": 3401}, "embed": {"surplus": 161, "physical_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": 98385, "school": "通用", "kind": "身法", "level": 15600, "max_strength": 6, "base": {}, "magic": {"agility_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 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": 3401}, "embed": {"physical_attack_power_base": 72, "strength_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": 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]}}, "外功无封鞋 (会心 破招 无双) 15200": {"id": 98579, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus": 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": 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": {}}, "外功无封鞋 (破防 破招 无双) 14350": {"id": 98555, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus": 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": 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": {}}, "风停靴 (破防 破招) 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": 3085}, "embed": {"surplus": 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": 3085}, "embed": {"surplus": 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": {}}, "东方日出·天宇靴 (会心 无双) 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": 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": 96489, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "embed": {"surplus": 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": 3041}, "embed": {"surplus": 161, "physical_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": 96271, "school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus": 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": 3041}, "embed": {"physical_attack_power_base": 72, "strength_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": 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": 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]}}, "外功无封鞋 (会心 会效 无双) 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": 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": 161, "physical_attack_power_base": 72}, "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": 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": 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": {}}, "雪漫靴 (破防 破招) 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": 2747}, "embed": {"surplus": 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": 2747}, "embed": {"surplus": 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": {}}, "西风北啸·角寒靴 (会心 无双) 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": 94578, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus": 2714}, "embed": {"surplus": 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": 2714}, "embed": {"surplus": 161, "physical_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": 94380, "school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus": 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": 2714}, "embed": {"physical_attack_power_base": 72, "strength_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": 2703}, "embed": {"surplus": 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": 2703}, "embed": {"surplus": 161, "physical_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": 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": 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": 90618, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": 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": 2681}, "embed": {"physical_attack_power_base": 72, "strength_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": 90414, "school": "通用", "kind": "身法", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": {}}, "外功无封鞋 (破防 破招 无双) 12100": {"id": 94562, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus": 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": 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": {}}}
|
|
|
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": 3444}, "embed": {"surplus": 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": 3444}, "embed": {"surplus": 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": 98490, "school": "通用", "kind": "根骨", "level": 15800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 772, "magical_attack_power_base": 1503, "magical_overcome_base": 3875, "surplus": 3444}, "embed": {"surplus": 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": 3401}, "embed": {"surplus": 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": 3401}, "embed": {"surplus": 161, "physical_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": 3401}, "embed": {"surplus": 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": 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": 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": 3401}, "embed": {"physical_attack_power_base": 72, "strength_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": 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": 98306, "school": "药宗", "kind": "内功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 753, "strain_base": 3357}, "embed": {}, "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]}}, "外功无封鞋 (会心 破招 无双) 15200": {"id": 98579, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus": 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": 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": 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": 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": 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": 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": 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": 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": 3085}, "embed": {"surplus": 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": 3085}, "embed": {"surplus": 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": 96376, "school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus": 3085}, "embed": {"surplus": 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": 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": 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": 3041}, "embed": {"surplus": 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": 3041}, "embed": {"surplus": 161, "physical_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": 3041}, "embed": {"surplus": 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": 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": 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": 3041}, "embed": {"physical_attack_power_base": 72, "strength_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": 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": 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": 96192, "school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {}, "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]}}, "外功无封鞋 (会心 会效 无双) 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": 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": 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": 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": 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": 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": 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": 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": 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": 2747}, "embed": {"surplus": 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": 2747}, "embed": {"surplus": 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": 94473, "school": "通用", "kind": "根骨", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus": 2747}, "embed": {"surplus": 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": 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": 2714}, "embed": {"surplus": 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": 2714}, "embed": {"surplus": 161, "physical_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": 2714}, "embed": {"surplus": 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": 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": 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": 2714}, "embed": {"physical_attack_power_base": 72, "strength_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": 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": 2703}, "embed": {"surplus": 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": 2703}, "embed": {"surplus": 161, "physical_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": 2703}, "embed": {"surplus": 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": 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": 94304, "school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {}, "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": 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": 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": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": 2681}, "embed": {"surplus": 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": 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": 2681}, "embed": {"physical_attack_power_base": 72, "strength_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": 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": 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": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 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": 2681}, "embed": {"surplus": 161, "physical_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": 2681}, "embed": {"surplus": 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": 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": 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": 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": 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": 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": {}}}
|
qt/assets/equipments/tertiary_weapon
CHANGED
@@ -1,1505 +1 @@
|
|
1 |
-
{
|
2 |
-
"月落囊 (会心 破招) 15600": {
|
3 |
-
"id": 37307,
|
4 |
-
"school": "通用",
|
5 |
-
"kind": "身法",
|
6 |
-
"level": 15600,
|
7 |
-
"max_strength": 6,
|
8 |
-
"base": {},
|
9 |
-
"magic": {
|
10 |
-
"agility_base": 654,
|
11 |
-
"physical_attack_power_base": 1060,
|
12 |
-
"physical_critical_strike_base": 3279,
|
13 |
-
"surplus": 2915
|
14 |
-
},
|
15 |
-
"embed": {
|
16 |
-
"agility_base": 36
|
17 |
-
},
|
18 |
-
"gains": [],
|
19 |
-
"special_enchant": [],
|
20 |
-
"set_id": null,
|
21 |
-
"set_attr": {},
|
22 |
-
"set_gain": {}
|
23 |
-
},
|
24 |
-
"月稠囊 (会心 破招) 15600": {
|
25 |
-
"id": 37306,
|
26 |
-
"school": "通用",
|
27 |
-
"kind": "力道",
|
28 |
-
"level": 15600,
|
29 |
-
"max_strength": 6,
|
30 |
-
"base": {},
|
31 |
-
"magic": {
|
32 |
-
"strength_base": 654,
|
33 |
-
"physical_attack_power_base": 1060,
|
34 |
-
"physical_critical_strike_base": 3279,
|
35 |
-
"surplus": 2915
|
36 |
-
},
|
37 |
-
"embed": {
|
38 |
-
"strength_base": 36
|
39 |
-
},
|
40 |
-
"gains": [],
|
41 |
-
"special_enchant": [],
|
42 |
-
"set_id": null,
|
43 |
-
"set_attr": {},
|
44 |
-
"set_gain": {}
|
45 |
-
},
|
46 |
-
"赋云囊 (破防 破招) 15600": {
|
47 |
-
"id": 37256,
|
48 |
-
"school": "通用",
|
49 |
-
"kind": "身法",
|
50 |
-
"level": 15600,
|
51 |
-
"max_strength": 6,
|
52 |
-
"base": {},
|
53 |
-
"magic": {
|
54 |
-
"agility_base": 654,
|
55 |
-
"physical_attack_power_base": 1060,
|
56 |
-
"physical_overcome_base": 3279,
|
57 |
-
"surplus": 2915
|
58 |
-
},
|
59 |
-
"embed": {
|
60 |
-
"agility_base": 36
|
61 |
-
},
|
62 |
-
"gains": [],
|
63 |
-
"special_enchant": [],
|
64 |
-
"set_id": null,
|
65 |
-
"set_attr": {},
|
66 |
-
"set_gain": {}
|
67 |
-
},
|
68 |
-
"同后囊 (破防 破招) 15600": {
|
69 |
-
"id": 37255,
|
70 |
-
"school": "通用",
|
71 |
-
"kind": "力道",
|
72 |
-
"level": 15600,
|
73 |
-
"max_strength": 6,
|
74 |
-
"base": {},
|
75 |
-
"magic": {
|
76 |
-
"strength_base": 654,
|
77 |
-
"physical_attack_power_base": 1060,
|
78 |
-
"physical_overcome_base": 3279,
|
79 |
-
"surplus": 2915
|
80 |
-
},
|
81 |
-
"embed": {
|
82 |
-
"strength_base": 36
|
83 |
-
},
|
84 |
-
"gains": [],
|
85 |
-
"special_enchant": [],
|
86 |
-
"set_id": null,
|
87 |
-
"set_attr": {},
|
88 |
-
"set_gain": {}
|
89 |
-
},
|
90 |
-
"救困囊 (会心 无双) 15600": {
|
91 |
-
"id": 37188,
|
92 |
-
"school": "通用",
|
93 |
-
"kind": "身法",
|
94 |
-
"level": 15600,
|
95 |
-
"max_strength": 6,
|
96 |
-
"base": {},
|
97 |
-
"magic": {
|
98 |
-
"agility_base": 654,
|
99 |
-
"physical_attack_power_base": 1060,
|
100 |
-
"physical_critical_strike_base": 3279,
|
101 |
-
"strain_base": 2915
|
102 |
-
},
|
103 |
-
"embed": {
|
104 |
-
"physical_critical_strike_base": 161
|
105 |
-
},
|
106 |
-
"gains": [],
|
107 |
-
"special_enchant": [],
|
108 |
-
"set_id": null,
|
109 |
-
"set_attr": {},
|
110 |
-
"set_gain": {}
|
111 |
-
},
|
112 |
-
"磊落囊 (会心 无双) 15600": {
|
113 |
-
"id": 37187,
|
114 |
-
"school": "通用",
|
115 |
-
"kind": "力道",
|
116 |
-
"level": 15600,
|
117 |
-
"max_strength": 6,
|
118 |
-
"base": {},
|
119 |
-
"magic": {
|
120 |
-
"strength_base": 654,
|
121 |
-
"physical_attack_power_base": 1060,
|
122 |
-
"physical_critical_strike_base": 3279,
|
123 |
-
"strain_base": 2915
|
124 |
-
},
|
125 |
-
"embed": {
|
126 |
-
"physical_critical_strike_base": 161
|
127 |
-
},
|
128 |
-
"gains": [],
|
129 |
-
"special_enchant": [],
|
130 |
-
"set_id": null,
|
131 |
-
"set_attr": {},
|
132 |
-
"set_gain": {}
|
133 |
-
},
|
134 |
-
"照耀囊 (加速 破招) 15600": {
|
135 |
-
"id": 37182,
|
136 |
-
"school": "通用",
|
137 |
-
"kind": "身法",
|
138 |
-
"level": 15600,
|
139 |
-
"max_strength": 6,
|
140 |
-
"base": {},
|
141 |
-
"magic": {
|
142 |
-
"agility_base": 654,
|
143 |
-
"physical_attack_power_base": 1060,
|
144 |
-
"haste_base": 3279,
|
145 |
-
"surplus": 2915
|
146 |
-
},
|
147 |
-
"embed": {
|
148 |
-
"agility_base": 36
|
149 |
-
},
|
150 |
-
"gains": [],
|
151 |
-
"special_enchant": [],
|
152 |
-
"set_id": null,
|
153 |
-
"set_attr": {},
|
154 |
-
"set_gain": {}
|
155 |
-
},
|
156 |
-
"如雪囊 (加速 破招) 15600": {
|
157 |
-
"id": 37181,
|
158 |
-
"school": "通用",
|
159 |
-
"kind": "力道",
|
160 |
-
"level": 15600,
|
161 |
-
"max_strength": 6,
|
162 |
-
"base": {},
|
163 |
-
"magic": {
|
164 |
-
"strength_base": 654,
|
165 |
-
"physical_attack_power_base": 1060,
|
166 |
-
"haste_base": 3279,
|
167 |
-
"surplus": 2915
|
168 |
-
},
|
169 |
-
"embed": {
|
170 |
-
"strength_base": 36
|
171 |
-
},
|
172 |
-
"gains": [],
|
173 |
-
"special_enchant": [],
|
174 |
-
"set_id": null,
|
175 |
-
"set_attr": {},
|
176 |
-
"set_gain": {}
|
177 |
-
},
|
178 |
-
"外功无封囊 (会心 会效 破招) 15200": {
|
179 |
-
"id": 37303,
|
180 |
-
"school": "精简",
|
181 |
-
"kind": "外功",
|
182 |
-
"level": 15200,
|
183 |
-
"max_strength": 3,
|
184 |
-
"base": {},
|
185 |
-
"magic": {
|
186 |
-
"physical_attack_power_base": 2305,
|
187 |
-
"surplus": 1953,
|
188 |
-
"physical_critical_strike_base": 3373,
|
189 |
-
"physical_critical_power_base": 1775
|
190 |
-
},
|
191 |
-
"embed": {
|
192 |
-
"physical_overcome_base": 161
|
193 |
-
},
|
194 |
-
"gains": [],
|
195 |
-
"special_enchant": [],
|
196 |
-
"set_id": null,
|
197 |
-
"set_attr": {},
|
198 |
-
"set_gain": {}
|
199 |
-
},
|
200 |
-
"外功无封囊 (会心 会效) 15200": {
|
201 |
-
"id": 37302,
|
202 |
-
"school": "精简",
|
203 |
-
"kind": "外功",
|
204 |
-
"level": 15200,
|
205 |
-
"max_strength": 3,
|
206 |
-
"base": {},
|
207 |
-
"magic": {
|
208 |
-
"physical_attack_power_base": 2305,
|
209 |
-
"physical_critical_strike_base": 4438,
|
210 |
-
"physical_critical_power_base": 2663
|
211 |
-
},
|
212 |
-
"embed": {
|
213 |
-
"physical_overcome_base": 161
|
214 |
-
},
|
215 |
-
"gains": [],
|
216 |
-
"special_enchant": [],
|
217 |
-
"set_id": null,
|
218 |
-
"set_attr": {},
|
219 |
-
"set_gain": {}
|
220 |
-
},
|
221 |
-
"外功无封囊 (破防) 15200": {
|
222 |
-
"id": 37301,
|
223 |
-
"school": "精简",
|
224 |
-
"kind": "外功",
|
225 |
-
"level": 15200,
|
226 |
-
"max_strength": 3,
|
227 |
-
"base": {},
|
228 |
-
"magic": {
|
229 |
-
"physical_attack_power_base": 2702,
|
230 |
-
"physical_overcome_base": 6302
|
231 |
-
},
|
232 |
-
"embed": {
|
233 |
-
"surplus": 161
|
234 |
-
},
|
235 |
-
"gains": [],
|
236 |
-
"special_enchant": [],
|
237 |
-
"set_id": null,
|
238 |
-
"set_attr": {},
|
239 |
-
"set_gain": {}
|
240 |
-
},
|
241 |
-
"外功无封囊 (破防 会心 会效) 14350": {
|
242 |
-
"id": 37297,
|
243 |
-
"school": "精简",
|
244 |
-
"kind": "外功",
|
245 |
-
"level": 14350,
|
246 |
-
"max_strength": 3,
|
247 |
-
"base": {},
|
248 |
-
"magic": {
|
249 |
-
"physical_attack_power_base": 2176,
|
250 |
-
"physical_overcome_base": 2430,
|
251 |
-
"physical_critical_strike_base": 2598,
|
252 |
-
"physical_critical_power_base": 1676
|
253 |
-
},
|
254 |
-
"embed": {
|
255 |
-
"surplus": 161
|
256 |
-
},
|
257 |
-
"gains": [],
|
258 |
-
"special_enchant": [],
|
259 |
-
"set_id": null,
|
260 |
-
"set_attr": {},
|
261 |
-
"set_gain": {}
|
262 |
-
},
|
263 |
-
"外功无封囊 (会心 破招) 14350": {
|
264 |
-
"id": 37296,
|
265 |
-
"school": "精简",
|
266 |
-
"kind": "外功",
|
267 |
-
"level": 14350,
|
268 |
-
"max_strength": 3,
|
269 |
-
"base": {},
|
270 |
-
"magic": {
|
271 |
-
"physical_attack_power_base": 2176,
|
272 |
-
"surplus": 3519,
|
273 |
-
"physical_critical_strike_base": 3352
|
274 |
-
},
|
275 |
-
"embed": {
|
276 |
-
"physical_critical_power_base": 161
|
277 |
-
},
|
278 |
-
"gains": [],
|
279 |
-
"special_enchant": [],
|
280 |
-
"set_id": null,
|
281 |
-
"set_attr": {},
|
282 |
-
"set_gain": {}
|
283 |
-
},
|
284 |
-
"外功无封囊 (无双) 14350": {
|
285 |
-
"id": 37295,
|
286 |
-
"school": "精简",
|
287 |
-
"kind": "外功",
|
288 |
-
"level": 14350,
|
289 |
-
"max_strength": 3,
|
290 |
-
"base": {},
|
291 |
-
"magic": {
|
292 |
-
"physical_attack_power_base": 2551,
|
293 |
-
"strain_base": 5949
|
294 |
-
},
|
295 |
-
"embed": {
|
296 |
-
"physical_overcome_base": 161
|
297 |
-
},
|
298 |
-
"gains": [],
|
299 |
-
"special_enchant": [],
|
300 |
-
"set_id": null,
|
301 |
-
"set_attr": {},
|
302 |
-
"set_gain": {}
|
303 |
-
},
|
304 |
-
"东方日出·天宇囊 (会心 无双) 13950": {
|
305 |
-
"id": 37408,
|
306 |
-
"school": "通用",
|
307 |
-
"kind": "身法",
|
308 |
-
"level": 13950,
|
309 |
-
"max_strength": 6,
|
310 |
-
"base": {},
|
311 |
-
"magic": {
|
312 |
-
"agility_base": 584,
|
313 |
-
"physical_attack_power_base": 948,
|
314 |
-
"physical_critical_strike_base": 2933,
|
315 |
-
"strain_base": 2607
|
316 |
-
},
|
317 |
-
"embed": {
|
318 |
-
"physical_critical_strike_base": 161
|
319 |
-
},
|
320 |
-
"gains": [],
|
321 |
-
"special_enchant": [],
|
322 |
-
"set_id": null,
|
323 |
-
"set_attr": {},
|
324 |
-
"set_gain": {}
|
325 |
-
},
|
326 |
-
"东方日出·海光囊 (会心 无双) 13950": {
|
327 |
-
"id": 37407,
|
328 |
-
"school": "通用",
|
329 |
-
"kind": "力道",
|
330 |
-
"level": 13950,
|
331 |
-
"max_strength": 6,
|
332 |
-
"base": {},
|
333 |
-
"magic": {
|
334 |
-
"strength_base": 584,
|
335 |
-
"physical_attack_power_base": 948,
|
336 |
-
"physical_critical_strike_base": 2933,
|
337 |
-
"strain_base": 2607
|
338 |
-
},
|
339 |
-
"embed": {
|
340 |
-
"physical_critical_strike_base": 161
|
341 |
-
},
|
342 |
-
"gains": [],
|
343 |
-
"special_enchant": [],
|
344 |
-
"set_id": null,
|
345 |
-
"set_attr": {},
|
346 |
-
"set_gain": {}
|
347 |
-
},
|
348 |
-
"危光囊 (会心 破招) 13950": {
|
349 |
-
"id": 37145,
|
350 |
-
"school": "通用",
|
351 |
-
"kind": "身法",
|
352 |
-
"level": 13950,
|
353 |
-
"max_strength": 6,
|
354 |
-
"base": {},
|
355 |
-
"magic": {
|
356 |
-
"agility_base": 584,
|
357 |
-
"physical_attack_power_base": 948,
|
358 |
-
"physical_critical_strike_base": 2933,
|
359 |
-
"surplus": 2607
|
360 |
-
},
|
361 |
-
"embed": {
|
362 |
-
"agility_base": 36
|
363 |
-
},
|
364 |
-
"gains": [],
|
365 |
-
"special_enchant": [],
|
366 |
-
"set_id": null,
|
367 |
-
"set_attr": {},
|
368 |
-
"set_gain": {}
|
369 |
-
},
|
370 |
-
"危雨囊 (会心 破招) 13950": {
|
371 |
-
"id": 37144,
|
372 |
-
"school": "通用",
|
373 |
-
"kind": "力道",
|
374 |
-
"level": 13950,
|
375 |
-
"max_strength": 6,
|
376 |
-
"base": {},
|
377 |
-
"magic": {
|
378 |
-
"strength_base": 584,
|
379 |
-
"physical_attack_power_base": 948,
|
380 |
-
"physical_critical_strike_base": 2933,
|
381 |
-
"surplus": 2607
|
382 |
-
},
|
383 |
-
"embed": {
|
384 |
-
"strength_base": 36
|
385 |
-
},
|
386 |
-
"gains": [],
|
387 |
-
"special_enchant": [],
|
388 |
-
"set_id": null,
|
389 |
-
"set_attr": {},
|
390 |
-
"set_gain": {}
|
391 |
-
},
|
392 |
-
"泉幽囊 (会心 破招) 13950": {
|
393 |
-
"id": 35838,
|
394 |
-
"school": "通用",
|
395 |
-
"kind": "身法",
|
396 |
-
"level": 13950,
|
397 |
-
"max_strength": 6,
|
398 |
-
"base": {},
|
399 |
-
"magic": {
|
400 |
-
"agility_base": 584,
|
401 |
-
"physical_attack_power_base": 948,
|
402 |
-
"physical_critical_strike_base": 2933,
|
403 |
-
"surplus": 2607
|
404 |
-
},
|
405 |
-
"embed": {
|
406 |
-
"agility_base": 36
|
407 |
-
},
|
408 |
-
"gains": [],
|
409 |
-
"special_enchant": [],
|
410 |
-
"set_id": null,
|
411 |
-
"set_attr": {},
|
412 |
-
"set_gain": {}
|
413 |
-
},
|
414 |
-
"泉潺囊 (会心 破招) 13950": {
|
415 |
-
"id": 35837,
|
416 |
-
"school": "通用",
|
417 |
-
"kind": "力道",
|
418 |
-
"level": 13950,
|
419 |
-
"max_strength": 6,
|
420 |
-
"base": {},
|
421 |
-
"magic": {
|
422 |
-
"strength_base": 584,
|
423 |
-
"physical_attack_power_base": 948,
|
424 |
-
"physical_critical_strike_base": 2933,
|
425 |
-
"surplus": 2607
|
426 |
-
},
|
427 |
-
"embed": {
|
428 |
-
"strength_base": 36
|
429 |
-
},
|
430 |
-
"gains": [],
|
431 |
-
"special_enchant": [],
|
432 |
-
"set_id": null,
|
433 |
-
"set_attr": {},
|
434 |
-
"set_gain": {}
|
435 |
-
},
|
436 |
-
"卓盈囊 (破防 破招) 13950": {
|
437 |
-
"id": 35785,
|
438 |
-
"school": "通用",
|
439 |
-
"kind": "身法",
|
440 |
-
"level": 13950,
|
441 |
-
"max_strength": 6,
|
442 |
-
"base": {},
|
443 |
-
"magic": {
|
444 |
-
"agility_base": 584,
|
445 |
-
"physical_attack_power_base": 948,
|
446 |
-
"physical_overcome_base": 2933,
|
447 |
-
"surplus": 2607
|
448 |
-
},
|
449 |
-
"embed": {
|
450 |
-
"agility_base": 36
|
451 |
-
},
|
452 |
-
"gains": [],
|
453 |
-
"special_enchant": [],
|
454 |
-
"set_id": null,
|
455 |
-
"set_attr": {},
|
456 |
-
"set_gain": {}
|
457 |
-
},
|
458 |
-
"越既囊 (破防 破招) 13950": {
|
459 |
-
"id": 35784,
|
460 |
-
"school": "通用",
|
461 |
-
"kind": "力道",
|
462 |
-
"level": 13950,
|
463 |
-
"max_strength": 6,
|
464 |
-
"base": {},
|
465 |
-
"magic": {
|
466 |
-
"strength_base": 584,
|
467 |
-
"physical_attack_power_base": 948,
|
468 |
-
"physical_overcome_base": 2933,
|
469 |
-
"surplus": 2607
|
470 |
-
},
|
471 |
-
"embed": {
|
472 |
-
"strength_base": 36
|
473 |
-
},
|
474 |
-
"gains": [],
|
475 |
-
"special_enchant": [],
|
476 |
-
"set_id": null,
|
477 |
-
"set_attr": {},
|
478 |
-
"set_gain": {}
|
479 |
-
},
|
480 |
-
"踏雁囊 (会心 无双) 13950": {
|
481 |
-
"id": 35717,
|
482 |
-
"school": "通用",
|
483 |
-
"kind": "身法",
|
484 |
-
"level": 13950,
|
485 |
-
"max_strength": 6,
|
486 |
-
"base": {},
|
487 |
-
"magic": {
|
488 |
-
"agility_base": 584,
|
489 |
-
"physical_attack_power_base": 948,
|
490 |
-
"physical_critical_strike_base": 2933,
|
491 |
-
"strain_base": 2607
|
492 |
-
},
|
493 |
-
"embed": {
|
494 |
-
"physical_critical_strike_base": 161
|
495 |
-
},
|
496 |
-
"gains": [],
|
497 |
-
"special_enchant": [],
|
498 |
-
"set_id": null,
|
499 |
-
"set_attr": {},
|
500 |
-
"set_gain": {}
|
501 |
-
},
|
502 |
-
"素鸦囊 (会心 无双) 13950": {
|
503 |
-
"id": 35716,
|
504 |
-
"school": "通用",
|
505 |
-
"kind": "力道",
|
506 |
-
"level": 13950,
|
507 |
-
"max_strength": 6,
|
508 |
-
"base": {},
|
509 |
-
"magic": {
|
510 |
-
"strength_base": 584,
|
511 |
-
"physical_attack_power_base": 948,
|
512 |
-
"physical_critical_strike_base": 2933,
|
513 |
-
"strain_base": 2607
|
514 |
-
},
|
515 |
-
"embed": {
|
516 |
-
"physical_critical_strike_base": 161
|
517 |
-
},
|
518 |
-
"gains": [],
|
519 |
-
"special_enchant": [],
|
520 |
-
"set_id": null,
|
521 |
-
"set_attr": {},
|
522 |
-
"set_gain": {}
|
523 |
-
},
|
524 |
-
"风掣囊 (加速 破招) 13950": {
|
525 |
-
"id": 35711,
|
526 |
-
"school": "通用",
|
527 |
-
"kind": "身法",
|
528 |
-
"level": 13950,
|
529 |
-
"max_strength": 6,
|
530 |
-
"base": {},
|
531 |
-
"magic": {
|
532 |
-
"agility_base": 584,
|
533 |
-
"physical_attack_power_base": 948,
|
534 |
-
"haste_base": 2933,
|
535 |
-
"surplus": 2607
|
536 |
-
},
|
537 |
-
"embed": {
|
538 |
-
"agility_base": 36
|
539 |
-
},
|
540 |
-
"gains": [],
|
541 |
-
"special_enchant": [],
|
542 |
-
"set_id": null,
|
543 |
-
"set_attr": {},
|
544 |
-
"set_gain": {}
|
545 |
-
},
|
546 |
-
"凛行囊 (加速 破招) 13950": {
|
547 |
-
"id": 35710,
|
548 |
-
"school": "通用",
|
549 |
-
"kind": "力道",
|
550 |
-
"level": 13950,
|
551 |
-
"max_strength": 6,
|
552 |
-
"base": {},
|
553 |
-
"magic": {
|
554 |
-
"strength_base": 584,
|
555 |
-
"physical_attack_power_base": 948,
|
556 |
-
"haste_base": 2933,
|
557 |
-
"surplus": 2607
|
558 |
-
},
|
559 |
-
"embed": {
|
560 |
-
"strength_base": 36
|
561 |
-
},
|
562 |
-
"gains": [],
|
563 |
-
"special_enchant": [],
|
564 |
-
"set_id": null,
|
565 |
-
"set_attr": {},
|
566 |
-
"set_gain": {}
|
567 |
-
},
|
568 |
-
"外功无封囊 (破防 会心 破招) 13550": {
|
569 |
-
"id": 35834,
|
570 |
-
"school": "精简",
|
571 |
-
"kind": "外功",
|
572 |
-
"level": 13550,
|
573 |
-
"max_strength": 3,
|
574 |
-
"base": {},
|
575 |
-
"magic": {
|
576 |
-
"physical_attack_power_base": 2267,
|
577 |
-
"surplus": 1899,
|
578 |
-
"physical_overcome_base": 2057,
|
579 |
-
"physical_critical_strike_base": 2057
|
580 |
-
},
|
581 |
-
"embed": {
|
582 |
-
"physical_critical_power_base": 161
|
583 |
-
},
|
584 |
-
"gains": [],
|
585 |
-
"special_enchant": [],
|
586 |
-
"set_id": null,
|
587 |
-
"set_attr": {},
|
588 |
-
"set_gain": {}
|
589 |
-
},
|
590 |
-
"外功无封囊 (破防 破招) 13550": {
|
591 |
-
"id": 35833,
|
592 |
-
"school": "精简",
|
593 |
-
"kind": "外功",
|
594 |
-
"level": 13550,
|
595 |
-
"max_strength": 3,
|
596 |
-
"base": {},
|
597 |
-
"magic": {
|
598 |
-
"physical_attack_power_base": 2054,
|
599 |
-
"surplus": 3165,
|
600 |
-
"physical_overcome_base": 3323
|
601 |
-
},
|
602 |
-
"embed": {
|
603 |
-
"physical_critical_strike_base": 161
|
604 |
-
},
|
605 |
-
"gains": [],
|
606 |
-
"special_enchant": [],
|
607 |
-
"set_id": null,
|
608 |
-
"set_attr": {},
|
609 |
-
"set_gain": {}
|
610 |
-
},
|
611 |
-
"外功无封囊 (会心) 13550": {
|
612 |
-
"id": 35832,
|
613 |
-
"school": "精简",
|
614 |
-
"kind": "外功",
|
615 |
-
"level": 13550,
|
616 |
-
"max_strength": 3,
|
617 |
-
"base": {},
|
618 |
-
"magic": {
|
619 |
-
"physical_attack_power_base": 2409,
|
620 |
-
"physical_critical_strike_base": 5618
|
621 |
-
},
|
622 |
-
"embed": {
|
623 |
-
"physical_critical_power_base": 161
|
624 |
-
},
|
625 |
-
"gains": [],
|
626 |
-
"special_enchant": [],
|
627 |
-
"set_id": null,
|
628 |
-
"set_attr": {},
|
629 |
-
"set_gain": {}
|
630 |
-
},
|
631 |
-
"西风漫·望 (破防 无双) 13400": {
|
632 |
-
"id": 37108,
|
633 |
-
"school": "通用",
|
634 |
-
"kind": "身法",
|
635 |
-
"level": 13400,
|
636 |
-
"max_strength": 6,
|
637 |
-
"base": {},
|
638 |
-
"magic": {
|
639 |
-
"agility_base": 561,
|
640 |
-
"physical_attack_power_base": 911,
|
641 |
-
"physical_overcome_base": 2817,
|
642 |
-
"strain_base": 2504
|
643 |
-
},
|
644 |
-
"embed": {
|
645 |
-
"physical_attack_power_base": 72
|
646 |
-
},
|
647 |
-
"gains": [],
|
648 |
-
"special_enchant": [],
|
649 |
-
"set_id": null,
|
650 |
-
"set_attr": {},
|
651 |
-
"set_gain": {}
|
652 |
-
},
|
653 |
-
"西风漫·聆 (破防 无双) 13400": {
|
654 |
-
"id": 37107,
|
655 |
-
"school": "通用",
|
656 |
-
"kind": "力道",
|
657 |
-
"level": 13400,
|
658 |
-
"max_strength": 6,
|
659 |
-
"base": {},
|
660 |
-
"magic": {
|
661 |
-
"strength_base": 561,
|
662 |
-
"physical_attack_power_base": 911,
|
663 |
-
"physical_overcome_base": 2817,
|
664 |
-
"strain_base": 2504
|
665 |
-
},
|
666 |
-
"embed": {
|
667 |
-
"physical_attack_power_base": 72
|
668 |
-
},
|
669 |
-
"gains": [],
|
670 |
-
"special_enchant": [],
|
671 |
-
"set_id": null,
|
672 |
-
"set_attr": {},
|
673 |
-
"set_gain": {}
|
674 |
-
},
|
675 |
-
"外功无封囊 (会心 会效 破招) 12800": {
|
676 |
-
"id": 35826,
|
677 |
-
"school": "精简",
|
678 |
-
"kind": "外功",
|
679 |
-
"level": 12800,
|
680 |
-
"max_strength": 3,
|
681 |
-
"base": {},
|
682 |
-
"magic": {
|
683 |
-
"physical_attack_power_base": 1941,
|
684 |
-
"surplus": 1644,
|
685 |
-
"physical_critical_strike_base": 2840,
|
686 |
-
"physical_critical_power_base": 1495
|
687 |
-
},
|
688 |
-
"embed": {
|
689 |
-
"physical_overcome_base": 161
|
690 |
-
},
|
691 |
-
"gains": [],
|
692 |
-
"special_enchant": [],
|
693 |
-
"set_id": null,
|
694 |
-
"set_attr": {},
|
695 |
-
"set_gain": {}
|
696 |
-
},
|
697 |
-
"外功无封囊 (会心 会效) 12800": {
|
698 |
-
"id": 35825,
|
699 |
-
"school": "精简",
|
700 |
-
"kind": "外功",
|
701 |
-
"level": 12800,
|
702 |
-
"max_strength": 3,
|
703 |
-
"base": {},
|
704 |
-
"magic": {
|
705 |
-
"physical_attack_power_base": 1941,
|
706 |
-
"physical_critical_strike_base": 3737,
|
707 |
-
"physical_critical_power_base": 2242
|
708 |
-
},
|
709 |
-
"embed": {
|
710 |
-
"physical_overcome_base": 161
|
711 |
-
},
|
712 |
-
"gains": [],
|
713 |
-
"special_enchant": [],
|
714 |
-
"set_id": null,
|
715 |
-
"set_attr": {},
|
716 |
-
"set_gain": {}
|
717 |
-
},
|
718 |
-
"外功无封囊 (破防) 12800": {
|
719 |
-
"id": 35824,
|
720 |
-
"school": "精简",
|
721 |
-
"kind": "外功",
|
722 |
-
"level": 12800,
|
723 |
-
"max_strength": 3,
|
724 |
-
"base": {},
|
725 |
-
"magic": {
|
726 |
-
"physical_attack_power_base": 2275,
|
727 |
-
"physical_overcome_base": 5307
|
728 |
-
},
|
729 |
-
"embed": {
|
730 |
-
"surplus": 161
|
731 |
-
},
|
732 |
-
"gains": [],
|
733 |
-
"special_enchant": [],
|
734 |
-
"set_id": null,
|
735 |
-
"set_attr": {},
|
736 |
-
"set_gain": {}
|
737 |
-
},
|
738 |
-
"翠林囊 (破防 无双) 12600": {
|
739 |
-
"id": 36536,
|
740 |
-
"school": "通用",
|
741 |
-
"kind": "身法",
|
742 |
-
"level": 12600,
|
743 |
-
"max_strength": 6,
|
744 |
-
"base": {},
|
745 |
-
"magic": {
|
746 |
-
"agility_base": 528,
|
747 |
-
"physical_attack_power_base": 856,
|
748 |
-
"physical_overcome_base": 2649,
|
749 |
-
"strain_base": 2354
|
750 |
-
},
|
751 |
-
"embed": {
|
752 |
-
"physical_attack_power_base": 72
|
753 |
-
},
|
754 |
-
"gains": [],
|
755 |
-
"special_enchant": [],
|
756 |
-
"set_id": null,
|
757 |
-
"set_attr": {},
|
758 |
-
"set_gain": {}
|
759 |
-
},
|
760 |
-
"静山囊 (破防 无双) 12600": {
|
761 |
-
"id": 36535,
|
762 |
-
"school": "通用",
|
763 |
-
"kind": "力道",
|
764 |
-
"level": 12600,
|
765 |
-
"max_strength": 6,
|
766 |
-
"base": {},
|
767 |
-
"magic": {
|
768 |
-
"strength_base": 528,
|
769 |
-
"physical_attack_power_base": 856,
|
770 |
-
"physical_overcome_base": 2649,
|
771 |
-
"strain_base": 2354
|
772 |
-
},
|
773 |
-
"embed": {
|
774 |
-
"physical_attack_power_base": 72
|
775 |
-
},
|
776 |
-
"gains": [],
|
777 |
-
"special_enchant": [],
|
778 |
-
"set_id": null,
|
779 |
-
"set_attr": {},
|
780 |
-
"set_gain": {}
|
781 |
-
},
|
782 |
-
"西风北啸·角寒囊 (会心 无双) 12450": {
|
783 |
-
"id": 35939,
|
784 |
-
"school": "通用",
|
785 |
-
"kind": "身法",
|
786 |
-
"level": 12450,
|
787 |
-
"max_strength": 6,
|
788 |
-
"base": {},
|
789 |
-
"magic": {
|
790 |
-
"agility_base": 522,
|
791 |
-
"physical_attack_power_base": 846,
|
792 |
-
"physical_critical_strike_base": 2617,
|
793 |
-
"strain_base": 2326
|
794 |
-
},
|
795 |
-
"embed": {
|
796 |
-
"physical_critical_strike_base": 161
|
797 |
-
},
|
798 |
-
"gains": [],
|
799 |
-
"special_enchant": [],
|
800 |
-
"set_id": null,
|
801 |
-
"set_attr": {},
|
802 |
-
"set_gain": {}
|
803 |
-
},
|
804 |
-
"西风北啸·砾漠囊 (会心 无双) 12450": {
|
805 |
-
"id": 35938,
|
806 |
-
"school": "通用",
|
807 |
-
"kind": "力道",
|
808 |
-
"level": 12450,
|
809 |
-
"max_strength": 6,
|
810 |
-
"base": {},
|
811 |
-
"magic": {
|
812 |
-
"strength_base": 522,
|
813 |
-
"physical_attack_power_base": 846,
|
814 |
-
"physical_critical_strike_base": 2617,
|
815 |
-
"strain_base": 2326
|
816 |
-
},
|
817 |
-
"embed": {
|
818 |
-
"physical_critical_strike_base": 161
|
819 |
-
},
|
820 |
-
"gains": [],
|
821 |
-
"special_enchant": [],
|
822 |
-
"set_id": null,
|
823 |
-
"set_attr": {},
|
824 |
-
"set_gain": {}
|
825 |
-
},
|
826 |
-
"湖月囊 (会心 破招) 12450": {
|
827 |
-
"id": 34819,
|
828 |
-
"school": "通用",
|
829 |
-
"kind": "身法",
|
830 |
-
"level": 12450,
|
831 |
-
"max_strength": 6,
|
832 |
-
"base": {},
|
833 |
-
"magic": {
|
834 |
-
"agility_base": 522,
|
835 |
-
"physical_attack_power_base": 846,
|
836 |
-
"physical_critical_strike_base": 2617,
|
837 |
-
"surplus": 2326
|
838 |
-
},
|
839 |
-
"embed": {
|
840 |
-
"agility_base": 36
|
841 |
-
},
|
842 |
-
"gains": [],
|
843 |
-
"special_enchant": [],
|
844 |
-
"set_id": null,
|
845 |
-
"set_attr": {},
|
846 |
-
"set_gain": {}
|
847 |
-
},
|
848 |
-
"湖静囊 (会心 破招) 12450": {
|
849 |
-
"id": 34818,
|
850 |
-
"school": "通用",
|
851 |
-
"kind": "力道",
|
852 |
-
"level": 12450,
|
853 |
-
"max_strength": 6,
|
854 |
-
"base": {},
|
855 |
-
"magic": {
|
856 |
-
"strength_base": 522,
|
857 |
-
"physical_attack_power_base": 846,
|
858 |
-
"physical_critical_strike_base": 2617,
|
859 |
-
"surplus": 2326
|
860 |
-
},
|
861 |
-
"embed": {
|
862 |
-
"strength_base": 36
|
863 |
-
},
|
864 |
-
"gains": [],
|
865 |
-
"special_enchant": [],
|
866 |
-
"set_id": null,
|
867 |
-
"set_attr": {},
|
868 |
-
"set_gain": {}
|
869 |
-
},
|
870 |
-
"度槐囊 (破防 破招) 12450": {
|
871 |
-
"id": 34769,
|
872 |
-
"school": "通用",
|
873 |
-
"kind": "身法",
|
874 |
-
"level": 12450,
|
875 |
-
"max_strength": 6,
|
876 |
-
"base": {},
|
877 |
-
"magic": {
|
878 |
-
"agility_base": 522,
|
879 |
-
"physical_attack_power_base": 846,
|
880 |
-
"physical_overcome_base": 2617,
|
881 |
-
"surplus": 2326
|
882 |
-
},
|
883 |
-
"embed": {
|
884 |
-
"agility_base": 36
|
885 |
-
},
|
886 |
-
"gains": [],
|
887 |
-
"special_enchant": [],
|
888 |
-
"set_id": null,
|
889 |
-
"set_attr": {},
|
890 |
-
"set_gain": {}
|
891 |
-
},
|
892 |
-
"微花囊 (破防 破招) 12450": {
|
893 |
-
"id": 34768,
|
894 |
-
"school": "通用",
|
895 |
-
"kind": "力道",
|
896 |
-
"level": 12450,
|
897 |
-
"max_strength": 6,
|
898 |
-
"base": {},
|
899 |
-
"magic": {
|
900 |
-
"strength_base": 522,
|
901 |
-
"physical_attack_power_base": 846,
|
902 |
-
"physical_overcome_base": 2617,
|
903 |
-
"surplus": 2326
|
904 |
-
},
|
905 |
-
"embed": {
|
906 |
-
"strength_base": 36
|
907 |
-
},
|
908 |
-
"gains": [],
|
909 |
-
"special_enchant": [],
|
910 |
-
"set_id": null,
|
911 |
-
"set_attr": {},
|
912 |
-
"set_gain": {}
|
913 |
-
},
|
914 |
-
"染辞囊 (会心 无双) 12450": {
|
915 |
-
"id": 34703,
|
916 |
-
"school": "通用",
|
917 |
-
"kind": "身法",
|
918 |
-
"level": 12450,
|
919 |
-
"max_strength": 6,
|
920 |
-
"base": {},
|
921 |
-
"magic": {
|
922 |
-
"agility_base": 522,
|
923 |
-
"physical_attack_power_base": 846,
|
924 |
-
"physical_critical_strike_base": 2617,
|
925 |
-
"strain_base": 2326
|
926 |
-
},
|
927 |
-
"embed": {
|
928 |
-
"physical_critical_strike_base": 161
|
929 |
-
},
|
930 |
-
"gains": [],
|
931 |
-
"special_enchant": [],
|
932 |
-
"set_id": null,
|
933 |
-
"set_attr": {},
|
934 |
-
"set_gain": {}
|
935 |
-
},
|
936 |
-
"温刃囊 (会心 无双) 12450": {
|
937 |
-
"id": 34702,
|
938 |
-
"school": "通用",
|
939 |
-
"kind": "力道",
|
940 |
-
"level": 12450,
|
941 |
-
"max_strength": 6,
|
942 |
-
"base": {},
|
943 |
-
"magic": {
|
944 |
-
"strength_base": 522,
|
945 |
-
"physical_attack_power_base": 846,
|
946 |
-
"physical_critical_strike_base": 2617,
|
947 |
-
"strain_base": 2326
|
948 |
-
},
|
949 |
-
"embed": {
|
950 |
-
"physical_critical_strike_base": 161
|
951 |
-
},
|
952 |
-
"gains": [],
|
953 |
-
"special_enchant": [],
|
954 |
-
"set_id": null,
|
955 |
-
"set_attr": {},
|
956 |
-
"set_gain": {}
|
957 |
-
},
|
958 |
-
"商野囊 (加速 破招) 12450": {
|
959 |
-
"id": 34697,
|
960 |
-
"school": "通用",
|
961 |
-
"kind": "身法",
|
962 |
-
"level": 12450,
|
963 |
-
"max_strength": 6,
|
964 |
-
"base": {},
|
965 |
-
"magic": {
|
966 |
-
"agility_base": 522,
|
967 |
-
"physical_attack_power_base": 846,
|
968 |
-
"haste_base": 2617,
|
969 |
-
"surplus": 2326
|
970 |
-
},
|
971 |
-
"embed": {
|
972 |
-
"agility_base": 36
|
973 |
-
},
|
974 |
-
"gains": [],
|
975 |
-
"special_enchant": [],
|
976 |
-
"set_id": null,
|
977 |
-
"set_attr": {},
|
978 |
-
"set_gain": {}
|
979 |
-
},
|
980 |
-
"安衿囊 (加速 破招) 12450": {
|
981 |
-
"id": 34696,
|
982 |
-
"school": "通用",
|
983 |
-
"kind": "力道",
|
984 |
-
"level": 12450,
|
985 |
-
"max_strength": 6,
|
986 |
-
"base": {},
|
987 |
-
"magic": {
|
988 |
-
"strength_base": 522,
|
989 |
-
"physical_attack_power_base": 846,
|
990 |
-
"haste_base": 2617,
|
991 |
-
"surplus": 2326
|
992 |
-
},
|
993 |
-
"embed": {
|
994 |
-
"strength_base": 36
|
995 |
-
},
|
996 |
-
"gains": [],
|
997 |
-
"special_enchant": [],
|
998 |
-
"set_id": null,
|
999 |
-
"set_attr": {},
|
1000 |
-
"set_gain": {}
|
1001 |
-
},
|
1002 |
-
"临晚囊 (会心 无双) 12400": {
|
1003 |
-
"id": 32547,
|
1004 |
-
"school": "通用",
|
1005 |
-
"kind": "身法",
|
1006 |
-
"level": 12400,
|
1007 |
-
"max_strength": 6,
|
1008 |
-
"base": {},
|
1009 |
-
"magic": {
|
1010 |
-
"agility_base": 520,
|
1011 |
-
"physical_attack_power_base": 843,
|
1012 |
-
"physical_critical_strike_base": 2607,
|
1013 |
-
"strain_base": 2317
|
1014 |
-
},
|
1015 |
-
"embed": {
|
1016 |
-
"physical_critical_strike_base": 161
|
1017 |
-
},
|
1018 |
-
"gains": [],
|
1019 |
-
"special_enchant": [],
|
1020 |
-
"set_id": null,
|
1021 |
-
"set_attr": {},
|
1022 |
-
"set_gain": {}
|
1023 |
-
},
|
1024 |
-
"临掣囊 (会心 无双) 12400": {
|
1025 |
-
"id": 32546,
|
1026 |
-
"school": "通用",
|
1027 |
-
"kind": "力道",
|
1028 |
-
"level": 12400,
|
1029 |
-
"max_strength": 6,
|
1030 |
-
"base": {},
|
1031 |
-
"magic": {
|
1032 |
-
"strength_base": 520,
|
1033 |
-
"physical_attack_power_base": 843,
|
1034 |
-
"physical_critical_strike_base": 2607,
|
1035 |
-
"strain_base": 2317
|
1036 |
-
},
|
1037 |
-
"embed": {
|
1038 |
-
"physical_critical_strike_base": 161
|
1039 |
-
},
|
1040 |
-
"gains": [],
|
1041 |
-
"special_enchant": [],
|
1042 |
-
"set_id": null,
|
1043 |
-
"set_attr": {},
|
1044 |
-
"set_gain": {}
|
1045 |
-
},
|
1046 |
-
"牵叶 (会心 无双) 12300": {
|
1047 |
-
"id": 32697,
|
1048 |
-
"school": "通用",
|
1049 |
-
"kind": "身法",
|
1050 |
-
"level": 12300,
|
1051 |
-
"max_strength": 6,
|
1052 |
-
"base": {},
|
1053 |
-
"magic": {
|
1054 |
-
"agility_base": 515,
|
1055 |
-
"physical_attack_power_base": 836,
|
1056 |
-
"physical_critical_strike_base": 2586,
|
1057 |
-
"strain_base": 2298
|
1058 |
-
},
|
1059 |
-
"embed": {
|
1060 |
-
"physical_critical_strike_base": 161
|
1061 |
-
},
|
1062 |
-
"gains": [],
|
1063 |
-
"special_enchant": [],
|
1064 |
-
"set_id": null,
|
1065 |
-
"set_attr": {},
|
1066 |
-
"set_gain": {}
|
1067 |
-
},
|
1068 |
-
"宸风 (会心 无双) 12300": {
|
1069 |
-
"id": 32696,
|
1070 |
-
"school": "通用",
|
1071 |
-
"kind": "力道",
|
1072 |
-
"level": 12300,
|
1073 |
-
"max_strength": 6,
|
1074 |
-
"base": {},
|
1075 |
-
"magic": {
|
1076 |
-
"strength_base": 515,
|
1077 |
-
"physical_attack_power_base": 836,
|
1078 |
-
"physical_critical_strike_base": 2586,
|
1079 |
-
"strain_base": 2298
|
1080 |
-
},
|
1081 |
-
"embed": {
|
1082 |
-
"physical_critical_strike_base": 161
|
1083 |
-
},
|
1084 |
-
"gains": [],
|
1085 |
-
"special_enchant": [],
|
1086 |
-
"set_id": null,
|
1087 |
-
"set_attr": {},
|
1088 |
-
"set_gain": {}
|
1089 |
-
},
|
1090 |
-
"久念囊 (破防 无双) 12300": {
|
1091 |
-
"id": 32661,
|
1092 |
-
"school": "通用",
|
1093 |
-
"kind": "身法",
|
1094 |
-
"level": 12300,
|
1095 |
-
"max_strength": 6,
|
1096 |
-
"base": {},
|
1097 |
-
"magic": {
|
1098 |
-
"agility_base": 515,
|
1099 |
-
"physical_attack_power_base": 836,
|
1100 |
-
"physical_overcome_base": 2586,
|
1101 |
-
"strain_base": 2298
|
1102 |
-
},
|
1103 |
-
"embed": {
|
1104 |
-
"physical_attack_power_base": 72
|
1105 |
-
},
|
1106 |
-
"gains": [],
|
1107 |
-
"special_enchant": [],
|
1108 |
-
"set_id": null,
|
1109 |
-
"set_attr": {},
|
1110 |
-
"set_gain": {}
|
1111 |
-
},
|
1112 |
-
"拭江囊 (破防 无双) 12300": {
|
1113 |
-
"id": 32660,
|
1114 |
-
"school": "通用",
|
1115 |
-
"kind": "力道",
|
1116 |
-
"level": 12300,
|
1117 |
-
"max_strength": 6,
|
1118 |
-
"base": {},
|
1119 |
-
"magic": {
|
1120 |
-
"strength_base": 515,
|
1121 |
-
"physical_attack_power_base": 836,
|
1122 |
-
"physical_overcome_base": 2586,
|
1123 |
-
"strain_base": 2298
|
1124 |
-
},
|
1125 |
-
"embed": {
|
1126 |
-
"physical_attack_power_base": 72
|
1127 |
-
},
|
1128 |
-
"gains": [],
|
1129 |
-
"special_enchant": [],
|
1130 |
-
"set_id": null,
|
1131 |
-
"set_attr": {},
|
1132 |
-
"set_gain": {}
|
1133 |
-
},
|
1134 |
-
"风岱囊 (加速 无双) 12300": {
|
1135 |
-
"id": 32625,
|
1136 |
-
"school": "通用",
|
1137 |
-
"kind": "身法",
|
1138 |
-
"level": 12300,
|
1139 |
-
"max_strength": 6,
|
1140 |
-
"base": {},
|
1141 |
-
"magic": {
|
1142 |
-
"agility_base": 515,
|
1143 |
-
"physical_attack_power_base": 836,
|
1144 |
-
"haste_base": 2586,
|
1145 |
-
"strain_base": 2298
|
1146 |
-
},
|
1147 |
-
"embed": {
|
1148 |
-
"agility_base": 36
|
1149 |
-
},
|
1150 |
-
"gains": [],
|
1151 |
-
"special_enchant": [],
|
1152 |
-
"set_id": null,
|
1153 |
-
"set_attr": {},
|
1154 |
-
"set_gain": {}
|
1155 |
-
},
|
1156 |
-
"项昌囊 (加速 无双) 12300": {
|
1157 |
-
"id": 32624,
|
1158 |
-
"school": "通用",
|
1159 |
-
"kind": "力道",
|
1160 |
-
"level": 12300,
|
1161 |
-
"max_strength": 6,
|
1162 |
-
"base": {},
|
1163 |
-
"magic": {
|
1164 |
-
"strength_base": 515,
|
1165 |
-
"physical_attack_power_base": 836,
|
1166 |
-
"haste_base": 2586,
|
1167 |
-
"strain_base": 2298
|
1168 |
-
},
|
1169 |
-
"embed": {
|
1170 |
-
"strength_base": 36
|
1171 |
-
},
|
1172 |
-
"gains": [],
|
1173 |
-
"special_enchant": [],
|
1174 |
-
"set_id": null,
|
1175 |
-
"set_attr": {},
|
1176 |
-
"set_gain": {}
|
1177 |
-
},
|
1178 |
-
"北邱囊 (破防 破招) 12300": {
|
1179 |
-
"id": 32589,
|
1180 |
-
"school": "通用",
|
1181 |
-
"kind": "身法",
|
1182 |
-
"level": 12300,
|
1183 |
-
"max_strength": 6,
|
1184 |
-
"base": {},
|
1185 |
-
"magic": {
|
1186 |
-
"agility_base": 515,
|
1187 |
-
"physical_attack_power_base": 836,
|
1188 |
-
"physical_overcome_base": 2586,
|
1189 |
-
"surplus": 2298
|
1190 |
-
},
|
1191 |
-
"embed": {
|
1192 |
-
"agility_base": 36
|
1193 |
-
},
|
1194 |
-
"gains": [],
|
1195 |
-
"special_enchant": [],
|
1196 |
-
"set_id": null,
|
1197 |
-
"set_attr": {},
|
1198 |
-
"set_gain": {}
|
1199 |
-
},
|
1200 |
-
"曲郦囊 (破防 破招) 12300": {
|
1201 |
-
"id": 32588,
|
1202 |
-
"school": "通用",
|
1203 |
-
"kind": "力道",
|
1204 |
-
"level": 12300,
|
1205 |
-
"max_strength": 6,
|
1206 |
-
"base": {},
|
1207 |
-
"magic": {
|
1208 |
-
"strength_base": 515,
|
1209 |
-
"physical_attack_power_base": 836,
|
1210 |
-
"physical_overcome_base": 2586,
|
1211 |
-
"surplus": 2298
|
1212 |
-
},
|
1213 |
-
"embed": {
|
1214 |
-
"strength_base": 36
|
1215 |
-
},
|
1216 |
-
"gains": [],
|
1217 |
-
"special_enchant": [],
|
1218 |
-
"set_id": null,
|
1219 |
-
"set_attr": {},
|
1220 |
-
"set_gain": {}
|
1221 |
-
},
|
1222 |
-
"渊忱囊 (破招 无双) 12300": {
|
1223 |
-
"id": 32553,
|
1224 |
-
"school": "通用",
|
1225 |
-
"kind": "身法",
|
1226 |
-
"level": 12300,
|
1227 |
-
"max_strength": 6,
|
1228 |
-
"base": {},
|
1229 |
-
"magic": {
|
1230 |
-
"agility_base": 515,
|
1231 |
-
"physical_attack_power_base": 836,
|
1232 |
-
"surplus": 2586,
|
1233 |
-
"strain_base": 2298
|
1234 |
-
},
|
1235 |
-
"embed": {
|
1236 |
-
"strain_base": 161
|
1237 |
-
},
|
1238 |
-
"gains": [],
|
1239 |
-
"special_enchant": [],
|
1240 |
-
"set_id": null,
|
1241 |
-
"set_attr": {},
|
1242 |
-
"set_gain": {}
|
1243 |
-
},
|
1244 |
-
"羡双囊 (破招 无双) 12300": {
|
1245 |
-
"id": 32552,
|
1246 |
-
"school": "通用",
|
1247 |
-
"kind": "力道",
|
1248 |
-
"level": 12300,
|
1249 |
-
"max_strength": 6,
|
1250 |
-
"base": {},
|
1251 |
-
"magic": {
|
1252 |
-
"strength_base": 515,
|
1253 |
-
"physical_attack_power_base": 836,
|
1254 |
-
"surplus": 2586,
|
1255 |
-
"strain_base": 2298
|
1256 |
-
},
|
1257 |
-
"embed": {
|
1258 |
-
"strain_base": 161
|
1259 |
-
},
|
1260 |
-
"gains": [],
|
1261 |
-
"special_enchant": [],
|
1262 |
-
"set_id": null,
|
1263 |
-
"set_attr": {},
|
1264 |
-
"set_gain": {}
|
1265 |
-
},
|
1266 |
-
"忆宁囊 (会心 破招) 12300": {
|
1267 |
-
"id": 32493,
|
1268 |
-
"school": "通用",
|
1269 |
-
"kind": "身法",
|
1270 |
-
"level": 12300,
|
1271 |
-
"max_strength": 6,
|
1272 |
-
"base": {},
|
1273 |
-
"magic": {
|
1274 |
-
"agility_base": 515,
|
1275 |
-
"physical_attack_power_base": 836,
|
1276 |
-
"physical_critical_strike_base": 2586,
|
1277 |
-
"surplus": 2298
|
1278 |
-
},
|
1279 |
-
"embed": {
|
1280 |
-
"agility_base": 36
|
1281 |
-
},
|
1282 |
-
"gains": [],
|
1283 |
-
"special_enchant": [],
|
1284 |
-
"set_id": null,
|
1285 |
-
"set_attr": {},
|
1286 |
-
"set_gain": {}
|
1287 |
-
},
|
1288 |
-
"忆敬囊 (会心 破招) 12300": {
|
1289 |
-
"id": 32492,
|
1290 |
-
"school": "通用",
|
1291 |
-
"kind": "力道",
|
1292 |
-
"level": 12300,
|
1293 |
-
"max_strength": 6,
|
1294 |
-
"base": {},
|
1295 |
-
"magic": {
|
1296 |
-
"strength_base": 515,
|
1297 |
-
"physical_attack_power_base": 836,
|
1298 |
-
"physical_critical_strike_base": 2586,
|
1299 |
-
"surplus": 2298
|
1300 |
-
},
|
1301 |
-
"embed": {
|
1302 |
-
"strength_base": 36
|
1303 |
-
},
|
1304 |
-
"gains": [],
|
1305 |
-
"special_enchant": [],
|
1306 |
-
"set_id": null,
|
1307 |
-
"set_attr": {},
|
1308 |
-
"set_gain": {}
|
1309 |
-
},
|
1310 |
-
"盈绝囊 (破防 无双) 12300": {
|
1311 |
-
"id": 32457,
|
1312 |
-
"school": "通用",
|
1313 |
-
"kind": "身法",
|
1314 |
-
"level": 12300,
|
1315 |
-
"max_strength": 6,
|
1316 |
-
"base": {},
|
1317 |
-
"magic": {
|
1318 |
-
"agility_base": 515,
|
1319 |
-
"physical_attack_power_base": 836,
|
1320 |
-
"physical_overcome_base": 2586,
|
1321 |
-
"strain_base": 2298
|
1322 |
-
},
|
1323 |
-
"embed": {
|
1324 |
-
"physical_attack_power_base": 72
|
1325 |
-
},
|
1326 |
-
"gains": [],
|
1327 |
-
"special_enchant": [],
|
1328 |
-
"set_id": null,
|
1329 |
-
"set_attr": {},
|
1330 |
-
"set_gain": {}
|
1331 |
-
},
|
1332 |
-
"垣翰囊 (破防 无双) 12300": {
|
1333 |
-
"id": 32456,
|
1334 |
-
"school": "通用",
|
1335 |
-
"kind": "力道",
|
1336 |
-
"level": 12300,
|
1337 |
-
"max_strength": 6,
|
1338 |
-
"base": {},
|
1339 |
-
"magic": {
|
1340 |
-
"strength_base": 515,
|
1341 |
-
"physical_attack_power_base": 836,
|
1342 |
-
"physical_overcome_base": 2586,
|
1343 |
-
"strain_base": 2298
|
1344 |
-
},
|
1345 |
-
"embed": {
|
1346 |
-
"physical_attack_power_base": 72
|
1347 |
-
},
|
1348 |
-
"gains": [],
|
1349 |
-
"special_enchant": [],
|
1350 |
-
"set_id": null,
|
1351 |
-
"set_attr": {},
|
1352 |
-
"set_gain": {}
|
1353 |
-
},
|
1354 |
-
"潋阳囊 (破防 破招) 12300": {
|
1355 |
-
"id": 32421,
|
1356 |
-
"school": "通用",
|
1357 |
-
"kind": "身法",
|
1358 |
-
"level": 12300,
|
1359 |
-
"max_strength": 6,
|
1360 |
-
"base": {},
|
1361 |
-
"magic": {
|
1362 |
-
"agility_base": 515,
|
1363 |
-
"physical_attack_power_base": 836,
|
1364 |
-
"physical_overcome_base": 2586,
|
1365 |
-
"surplus": 2298
|
1366 |
-
},
|
1367 |
-
"embed": {
|
1368 |
-
"agility_base": 36
|
1369 |
-
},
|
1370 |
-
"gains": [],
|
1371 |
-
"special_enchant": [],
|
1372 |
-
"set_id": null,
|
1373 |
-
"set_attr": {},
|
1374 |
-
"set_gain": {}
|
1375 |
-
},
|
1376 |
-
"重关囊 (破防 破招) 12300": {
|
1377 |
-
"id": 32420,
|
1378 |
-
"school": "通用",
|
1379 |
-
"kind": "力道",
|
1380 |
-
"level": 12300,
|
1381 |
-
"max_strength": 6,
|
1382 |
-
"base": {},
|
1383 |
-
"magic": {
|
1384 |
-
"strength_base": 515,
|
1385 |
-
"physical_attack_power_base": 836,
|
1386 |
-
"physical_overcome_base": 2586,
|
1387 |
-
"surplus": 2298
|
1388 |
-
},
|
1389 |
-
"embed": {
|
1390 |
-
"strength_base": 36
|
1391 |
-
},
|
1392 |
-
"gains": [],
|
1393 |
-
"special_enchant": [],
|
1394 |
-
"set_id": null,
|
1395 |
-
"set_attr": {},
|
1396 |
-
"set_gain": {}
|
1397 |
-
},
|
1398 |
-
"外功无封囊 (破防 会心 会效) 12100": {
|
1399 |
-
"id": 34815,
|
1400 |
-
"school": "精简",
|
1401 |
-
"kind": "外功",
|
1402 |
-
"level": 12100,
|
1403 |
-
"max_strength": 3,
|
1404 |
-
"base": {},
|
1405 |
-
"magic": {
|
1406 |
-
"physical_attack_power_base": 1835,
|
1407 |
-
"physical_overcome_base": 2049,
|
1408 |
-
"physical_critical_strike_base": 2190,
|
1409 |
-
"physical_critical_power_base": 1413
|
1410 |
-
},
|
1411 |
-
"embed": {
|
1412 |
-
"surplus": 161
|
1413 |
-
},
|
1414 |
-
"gains": [],
|
1415 |
-
"special_enchant": [],
|
1416 |
-
"set_id": null,
|
1417 |
-
"set_attr": {},
|
1418 |
-
"set_gain": {}
|
1419 |
-
},
|
1420 |
-
"外功无封囊 (会心 破招) 12100": {
|
1421 |
-
"id": 34814,
|
1422 |
-
"school": "精简",
|
1423 |
-
"kind": "外功",
|
1424 |
-
"level": 12100,
|
1425 |
-
"max_strength": 3,
|
1426 |
-
"base": {},
|
1427 |
-
"magic": {
|
1428 |
-
"physical_attack_power_base": 1835,
|
1429 |
-
"surplus": 2968,
|
1430 |
-
"physical_critical_strike_base": 2826
|
1431 |
-
},
|
1432 |
-
"embed": {
|
1433 |
-
"physical_critical_power_base": 161
|
1434 |
-
},
|
1435 |
-
"gains": [],
|
1436 |
-
"special_enchant": [],
|
1437 |
-
"set_id": null,
|
1438 |
-
"set_attr": {},
|
1439 |
-
"set_gain": {}
|
1440 |
-
},
|
1441 |
-
"外功无封囊 (无双) 12100": {
|
1442 |
-
"id": 34813,
|
1443 |
-
"school": "精简",
|
1444 |
-
"kind": "外功",
|
1445 |
-
"level": 12100,
|
1446 |
-
"max_strength": 3,
|
1447 |
-
"base": {},
|
1448 |
-
"magic": {
|
1449 |
-
"physical_attack_power_base": 2151,
|
1450 |
-
"strain_base": 5017
|
1451 |
-
},
|
1452 |
-
"embed": {
|
1453 |
-
"physical_overcome_base": 161
|
1454 |
-
},
|
1455 |
-
"gains": [],
|
1456 |
-
"special_enchant": [],
|
1457 |
-
"set_id": null,
|
1458 |
-
"set_attr": {},
|
1459 |
-
"set_gain": {}
|
1460 |
-
},
|
1461 |
-
"龙目·嘲风 (破防 无双) 12000": {
|
1462 |
-
"id": 35637,
|
1463 |
-
"school": "通用",
|
1464 |
-
"kind": "身法",
|
1465 |
-
"level": 12000,
|
1466 |
-
"max_strength": 6,
|
1467 |
-
"base": {},
|
1468 |
-
"magic": {
|
1469 |
-
"agility_base": 503,
|
1470 |
-
"physical_attack_power_base": 816,
|
1471 |
-
"physical_overcome_base": 2523,
|
1472 |
-
"strain_base": 2242
|
1473 |
-
},
|
1474 |
-
"embed": {
|
1475 |
-
"physical_attack_power_base": 72
|
1476 |
-
},
|
1477 |
-
"gains": [],
|
1478 |
-
"special_enchant": [],
|
1479 |
-
"set_id": null,
|
1480 |
-
"set_attr": {},
|
1481 |
-
"set_gain": {}
|
1482 |
-
},
|
1483 |
-
"龙目·螭吻 (破防 无双) 12000": {
|
1484 |
-
"id": 35636,
|
1485 |
-
"school": "通用",
|
1486 |
-
"kind": "力道",
|
1487 |
-
"level": 12000,
|
1488 |
-
"max_strength": 6,
|
1489 |
-
"base": {},
|
1490 |
-
"magic": {
|
1491 |
-
"strength_base": 503,
|
1492 |
-
"physical_attack_power_base": 816,
|
1493 |
-
"physical_overcome_base": 2523,
|
1494 |
-
"strain_base": 2242
|
1495 |
-
},
|
1496 |
-
"embed": {
|
1497 |
-
"physical_attack_power_base": 72
|
1498 |
-
},
|
1499 |
-
"gains": [],
|
1500 |
-
"special_enchant": [],
|
1501 |
-
"set_id": null,
|
1502 |
-
"set_attr": {},
|
1503 |
-
"set_gain": {}
|
1504 |
-
}
|
1505 |
-
}
|
|
|
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": 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": 2915}, "embed": {"strength_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": 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": 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": 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": 2915}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 2607}, "embed": {"strength_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": 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": 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": 2607}, "embed": {"strength_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": 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": 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": 2607}, "embed": {"strength_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": 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": 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": 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": 2607}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 2326}, "embed": {"strength_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": 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": 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": 2326}, "embed": {"strength_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": 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": 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": 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": 2326}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": 2298}, "embed": {"strength_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": 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": 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": 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": 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": 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": 2298}, "embed": {"strength_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": 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": 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": 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": 2298}, "embed": {"strength_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": 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": 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": 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": 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": 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": 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": {}}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
qt/assets/equipments/wrist
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
schools/ling_hai_jue/skills.py
CHANGED
@@ -175,6 +175,28 @@ SKILLS: Dict[int, Skill | dict] = {
|
|
175 |
"bind_skill": 18386,
|
176 |
"max_stack": 6,
|
177 |
"tick": 6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
179 |
}
|
180 |
|
|
|
175 |
"bind_skill": 18386,
|
176 |
"max_stack": 6,
|
177 |
"tick": 6
|
178 |
+
},
|
179 |
+
25783: {
|
180 |
+
"skill_class": PhysicalDamage,
|
181 |
+
"skill_name": "木落雁归·神兵",
|
182 |
+
"damage_base": 20,
|
183 |
+
"damage_rand": 2,
|
184 |
+
"attack_power_cof": 50
|
185 |
+
},
|
186 |
+
19557: {
|
187 |
+
"skill_class": PhysicalDotDamage,
|
188 |
+
"skill_name": "御波驾澜(DOT)",
|
189 |
+
"damage_base": 25,
|
190 |
+
"attack_power_cof": 680,
|
191 |
+
"interval": 48
|
192 |
+
|
193 |
+
},
|
194 |
+
26935: {
|
195 |
+
"skill_class": DotSkill,
|
196 |
+
"skill_name": "御波驾澜",
|
197 |
+
"bind_skill": 19557,
|
198 |
+
"max_stack": 3,
|
199 |
+
"tick": 6
|
200 |
}
|
201 |
}
|
202 |
|
schools/shan_hai_xin_jue/talents.py
CHANGED
@@ -23,6 +23,16 @@ class 素矰(Gain):
|
|
23 |
skills[26856].attack_power_cof_gain -= 0.05
|
24 |
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
class 桑柘(Gain):
|
27 |
def add_skills(self, skills: Dict[int, Skill]):
|
28 |
skills[35771].tick += 1
|
@@ -47,16 +57,6 @@ class 贯侯(Gain):
|
|
47 |
skills[36157].skill_pve_addition -= 205
|
48 |
|
49 |
|
50 |
-
class 孰湖(Gain):
|
51 |
-
def add_skills(self, skills: Dict[int, Skill]):
|
52 |
-
for skill_id in (36056, 36057, 36111, 36112, 36113, 36114):
|
53 |
-
skills[skill_id].skill_damage_addition += 62
|
54 |
-
|
55 |
-
def sub_skills(self, skills: Dict[int, Skill]):
|
56 |
-
for skill_id in (36056, 36057, 36111, 36112, 36113, 36114):
|
57 |
-
skills[skill_id].skill_damage_addition -= 62
|
58 |
-
|
59 |
-
|
60 |
TALENT_GAINS: Dict[int, Gain] = {
|
61 |
35715: 素矰("素矰"),
|
62 |
35714: 彤弓("彤弓"),
|
|
|
23 |
skills[26856].attack_power_cof_gain -= 0.05
|
24 |
|
25 |
|
26 |
+
class 孰湖(Gain):
|
27 |
+
def add_skills(self, skills: Dict[int, Skill]):
|
28 |
+
for skill_id in (36056, 36057, 36111, 36112, 36113, 36114):
|
29 |
+
skills[skill_id].skill_damage_addition += 62
|
30 |
+
|
31 |
+
def sub_skills(self, skills: Dict[int, Skill]):
|
32 |
+
for skill_id in (36056, 36057, 36111, 36112, 36113, 36114):
|
33 |
+
skills[skill_id].skill_damage_addition -= 62
|
34 |
+
|
35 |
+
|
36 |
class 桑柘(Gain):
|
37 |
def add_skills(self, skills: Dict[int, Skill]):
|
38 |
skills[35771].tick += 1
|
|
|
57 |
skills[36157].skill_pve_addition -= 205
|
58 |
|
59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
TALENT_GAINS: Dict[int, Gain] = {
|
61 |
35715: 素矰("素矰"),
|
62 |
35714: 彤弓("彤弓"),
|
schools/wu_fang/__init__.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from schools.wu_fang.skills import SKILLS
|
2 |
+
from schools.wu_fang.buffs import BUFFS
|
3 |
+
from schools.wu_fang.talents import TALENT_GAINS, TALENTS, TALENT_DECODER, TALENT_ENCODER
|
4 |
+
from schools.wu_fang.recipes import RECIPE_GAINS, RECIPES
|
5 |
+
from schools.wu_fang.gains import GAINS
|
6 |
+
from schools.wu_fang.attribute import WuFang
|
schools/wu_fang/attribute.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from base.attribute import MagicalAttribute
|
2 |
+
from base.constant import *
|
3 |
+
|
4 |
+
|
5 |
+
class WuFang(MagicalAttribute):
|
6 |
+
SPIRIT_TO_ATTACK_POWER = 1788 / BINARY_SCALE
|
7 |
+
SPIRIT_TO_OVERCOME = 481 / BINARY_SCALE
|
8 |
+
|
9 |
+
def __init__(self):
|
10 |
+
super().__init__()
|
11 |
+
self.magical_attack_power_base += 3808
|
12 |
+
self.magical_overcome_base += 1788
|
13 |
+
self.pve_addition += 51
|
14 |
+
|
15 |
+
@property
|
16 |
+
def extra_magical_attack_power(self):
|
17 |
+
return int(self.spirit * self.SPIRIT_TO_ATTACK_POWER)
|
18 |
+
|
19 |
+
@property
|
20 |
+
def extra_magical_overcome(self):
|
21 |
+
return int(self.spirit * self.SPIRIT_TO_OVERCOME)
|
schools/wu_fang/buffs.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from base.buff import Buff
|
2 |
+
from general.buffs import GENERAL_BUFFS
|
3 |
+
|
4 |
+
BUFFS = {
|
5 |
+
21758: {
|
6 |
+
"buff_name": "断肠",
|
7 |
+
"gain_attributes": {
|
8 |
+
"magical_critical_strike_gain": 400,
|
9 |
+
"magical_critical_power_gain": 41
|
10 |
+
}
|
11 |
+
},
|
12 |
+
14083: {
|
13 |
+
"buff_name": "相使",
|
14 |
+
"gain_attributes": {
|
15 |
+
"magical_attack_power_gain": 154,
|
16 |
+
}
|
17 |
+
},
|
18 |
+
# 21607: {
|
19 |
+
# "buff_name": "灵荆",
|
20 |
+
# },
|
21 |
+
21168: {
|
22 |
+
"buff_name": "植物温性",
|
23 |
+
"gain_skills": {
|
24 |
+
27657: {
|
25 |
+
"skill_damage_addition": [51, 717, 0],
|
26 |
+
}
|
27 |
+
}
|
28 |
+
},
|
29 |
+
20696: {
|
30 |
+
"buff_name": "凄骨",
|
31 |
+
"gain_attributes": {
|
32 |
+
"all_shield_ignore": 512
|
33 |
+
}
|
34 |
+
},
|
35 |
+
24659: {
|
36 |
+
"buff_name": "应理以药",
|
37 |
+
"gain_skills": {
|
38 |
+
28081: {
|
39 |
+
"skill_damage_addition": 3277,
|
40 |
+
}
|
41 |
+
}
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
for buff_id, detail in BUFFS.items():
|
46 |
+
BUFFS[buff_id] = Buff(buff_id, detail.pop("buff_name"))
|
47 |
+
for attr, value in detail.items():
|
48 |
+
setattr(BUFFS[buff_id], attr, value)
|
49 |
+
|
50 |
+
for buff_id, buff in GENERAL_BUFFS.items():
|
51 |
+
BUFFS[buff_id] = buff
|
schools/wu_fang/gains.py
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from base.recipe import damage_addition_recipe, critical_strike_recipe
|
2 |
+
from general.gains.equipment import EQUIPMENT_GAINS, CriticalSet
|
3 |
+
from base.gain import Gain
|
4 |
+
|
5 |
+
|
6 |
+
GAINS = {
|
7 |
+
2125: CriticalSet(21758),
|
8 |
+
2839: damage_addition_recipe([27557], 102),
|
9 |
+
2840: damage_addition_recipe([27552], 102),
|
10 |
+
2842: damage_addition_recipe([27557], 51),
|
11 |
+
2843: damage_addition_recipe([27555], 51),
|
12 |
+
2841: critical_strike_recipe([27557], 500),
|
13 |
+
2414: Gain(),
|
14 |
+
2138: Gain(),
|
15 |
+
17458: Gain(),
|
16 |
+
17239: Gain(),
|
17 |
+
17459: Gain(),
|
18 |
+
**EQUIPMENT_GAINS,
|
19 |
+
}
|
schools/wu_fang/recipes.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict, List
|
2 |
+
|
3 |
+
from base.gain import Gain
|
4 |
+
from base.recipe import damage_addition_recipe, critical_strike_recipe
|
5 |
+
|
6 |
+
RECIPE_GAINS: Dict[str, Dict[str, Gain]] = {
|
7 |
+
"商陆缀寒": {
|
8 |
+
"3%伤害": damage_addition_recipe([27552], 31),
|
9 |
+
"2%伤害": damage_addition_recipe([27552], 21),
|
10 |
+
"4%会心": critical_strike_recipe([27552], 400),
|
11 |
+
"3%会心": critical_strike_recipe([27552], 300),
|
12 |
+
},
|
13 |
+
"钩吻断肠": {
|
14 |
+
"3%伤害": damage_addition_recipe([27555], 41),
|
15 |
+
"2%伤害": damage_addition_recipe([27555], 31),
|
16 |
+
"4%会心": critical_strike_recipe([27555], 400),
|
17 |
+
"3%会心": critical_strike_recipe([27555], 300),
|
18 |
+
"2%会心": critical_strike_recipe([27555], 200),
|
19 |
+
},
|
20 |
+
"川乌射罔": {
|
21 |
+
"3%伤害": damage_addition_recipe([27557], 31),
|
22 |
+
"2%伤害": damage_addition_recipe([27557], 21),
|
23 |
+
"4%会心": critical_strike_recipe([27557], 400),
|
24 |
+
"3%会心": critical_strike_recipe([27557], 300),
|
25 |
+
},
|
26 |
+
"且待时休": {
|
27 |
+
"3%伤害": damage_addition_recipe([27584], 31),
|
28 |
+
"2%伤害": damage_addition_recipe([27584], 21),
|
29 |
+
},
|
30 |
+
"银光照雪": {
|
31 |
+
"3%伤害": damage_addition_recipe([28346], 31),
|
32 |
+
"2%伤害": damage_addition_recipe([28346], 21),
|
33 |
+
"5%会心": critical_strike_recipe([28346], 500),
|
34 |
+
"4%会心": critical_strike_recipe([28346], 400),
|
35 |
+
},
|
36 |
+
}
|
37 |
+
|
38 |
+
RECIPES: Dict[str, List[str]] = {
|
39 |
+
"商陆缀寒": ["4%会心", "3%伤害", "3%会心", "2%伤害"],
|
40 |
+
"钩吻断肠": ["4%会心", "3%伤害", "3%会心", "2%伤害", "2%会心"],
|
41 |
+
"川乌射罔": ["4%会心", "3%伤害", "3%会心", "2%伤害"],
|
42 |
+
"且待时休": ["3%伤害", "2%伤害"],
|
43 |
+
"银光照雪": ["5%会心", "4%会心", "3%伤害", "2%伤害"],
|
44 |
+
}
|
schools/wu_fang/skills.py
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict
|
2 |
+
|
3 |
+
from base.skill import Skill, DotSkill, PhysicalDamage, MagicalDamage, MagicalDotDamage
|
4 |
+
from general.skills import GENERAL_SKILLS
|
5 |
+
|
6 |
+
SKILLS: Dict[int, Skill | dict] = {
|
7 |
+
32841: {
|
8 |
+
"skill_class": MagicalDamage,
|
9 |
+
"skill_name": "破",
|
10 |
+
"surplus_cof": [
|
11 |
+
1048576 * (0.525 * 1.2 - 1),
|
12 |
+
1048576 * (1.008 * 1.2 - 1),
|
13 |
+
1048576 * (0.21 * 1.2 - 1),
|
14 |
+
1048576 * (0.35 * 1.2 - 1),
|
15 |
+
1048576 * (0.7 * 1.2 - 1),
|
16 |
+
1048576 * (1.05 * 1.2 - 1)
|
17 |
+
]
|
18 |
+
},
|
19 |
+
27451: {
|
20 |
+
"skill_class": PhysicalDamage,
|
21 |
+
"skill_name": "裁叶饮刃",
|
22 |
+
"attack_power_cof": 16,
|
23 |
+
"weapon_damage_cof": 1024,
|
24 |
+
"skill_damage_addition": 205 + 250
|
25 |
+
},
|
26 |
+
28081: {
|
27 |
+
"skill_class": MagicalDamage,
|
28 |
+
"skill_name": "无方中和",
|
29 |
+
"damage_base": [10, 20, 30, 40, 50, 60, 70, 80, 90, 100],
|
30 |
+
"damage_rand": 10,
|
31 |
+
"attack_power_cof": [20 * 0.9 * 0.92 * 1.1 * 1.1] * 3 +
|
32 |
+
[(20 * (i - 4) + 20) * 0.9 * 0.92 * 1.1 * 1.1 for i in range(4, 9)] +
|
33 |
+
[160 * 0.9 * 0.92 * 1.1 * 1.1] * 2,
|
34 |
+
},
|
35 |
+
20052: {
|
36 |
+
"skill_class": MagicalDotDamage,
|
37 |
+
"skill_name": "逆乱(DOT)",
|
38 |
+
"damage_base": 95,
|
39 |
+
"attack_power_cof": 90 * 1.5 * 0.8 * 1.05 * 1.1,
|
40 |
+
"interval": 32
|
41 |
+
|
42 |
+
},
|
43 |
+
27560: {
|
44 |
+
"skill_class": DotSkill,
|
45 |
+
"skill_name": "逆乱",
|
46 |
+
"bind_skill": 20052,
|
47 |
+
"max_stack": 8,
|
48 |
+
"tick": 7
|
49 |
+
},
|
50 |
+
27552: {
|
51 |
+
"skill_class": MagicalDamage,
|
52 |
+
"skill_name": "商陆缀寒",
|
53 |
+
"damage_base": [38, 49, 60, 71, 82, 93, 104, 115, 126, 137, 148, 159, 170, 181, 192, 203, 214, 225, 236, 247,
|
54 |
+
258, 269, 280, 291, 302, 313, 324, 335, 346, 357, 368, 379],
|
55 |
+
"damage_rand": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 20, 20, 20, 20,
|
56 |
+
20, 20, 20, 20, 20, 20, 20, 20],
|
57 |
+
"attack_power_cof": [43 * 1.15] * 6 +
|
58 |
+
[(4 * i + 43) * 1.15 for i in range(7, 32)] +
|
59 |
+
[200 * 1.15],
|
60 |
+
},
|
61 |
+
27555: {
|
62 |
+
"skill_class": MagicalDamage,
|
63 |
+
"skill_name": "钩吻断肠",
|
64 |
+
"damage_base": [24, 34, 44, 54, 64, 74, 84, 94, 104, 114],
|
65 |
+
"damage_rand": 10,
|
66 |
+
"attack_power_cof": [16] * 3 +
|
67 |
+
[(12 * (i - 4) + 16) for i in range(4, 9)] +
|
68 |
+
[120] * 2,
|
69 |
+
},
|
70 |
+
27557: {
|
71 |
+
"skill_class": MagicalDamage,
|
72 |
+
"skill_name": "川乌射罔",
|
73 |
+
"damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
|
74 |
+
281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
|
75 |
+
"damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
|
76 |
+
15, 15, 15, 15, 15, 15],
|
77 |
+
"attack_power_cof": [25] * 2 +
|
78 |
+
[(12 * (i - 3) + 25) for i in range(3, 9)] +
|
79 |
+
[208] * 2,
|
80 |
+
},
|
81 |
+
27579: {
|
82 |
+
"skill_class": MagicalDamage,
|
83 |
+
"skill_name": "沾衣未妨",
|
84 |
+
"damage_base": 125,
|
85 |
+
"damage_rand": 10,
|
86 |
+
"attack_power_cof": 150 * 0.8,
|
87 |
+
},
|
88 |
+
27584: {
|
89 |
+
"skill_class": MagicalDamage,
|
90 |
+
"skill_name": "且待时休",
|
91 |
+
"damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
|
92 |
+
281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
|
93 |
+
"damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
|
94 |
+
15, 15, 15, 15, 15, 15],
|
95 |
+
"attack_power_cof": [30 * 1.8 * 1.2 * 1.15] * 6 +
|
96 |
+
[(3 * (i - 7) + 40) * 1.8 * 1.2 * 1.15 for i in range(7, 14)] +
|
97 |
+
[72 * 1.8 * 1.2 * 1.15] * 2,
|
98 |
+
},
|
99 |
+
28346: {
|
100 |
+
"skill_class": MagicalDamage,
|
101 |
+
"skill_name": "银光照雪",
|
102 |
+
"damage_base": [50, 62, 74, 86, 98, 110, 134, 170, 230, 242, 290, 302, 338, 350, 410],
|
103 |
+
"damage_rand": [10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 20, 20, 20, 20, 20],
|
104 |
+
"attack_power_cof": [20] * 5 +
|
105 |
+
[(10 * (i -6) + 24) for i in range(6, 15)] +
|
106 |
+
[120],
|
107 |
+
},
|
108 |
+
27636: {
|
109 |
+
"skill_class": MagicalDamage,
|
110 |
+
"skill_name": "含锋破月",
|
111 |
+
"damage_base": [35, 53, 71, 89, 107, 125, 143, 161, 179, 197, 215, 233, 251, 269, 287, 305, 323, 341, 359, 377,
|
112 |
+
395, 413, 431, 449, 467, 485, 503, 521, 539, 557, 575],
|
113 |
+
"damage_rand": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 20, 20, 20, 20,
|
114 |
+
20, 20, 20, 20, 20, 20, 20],
|
115 |
+
"attack_power_cof": [50 * 1.15 * 0.85] * 5 +
|
116 |
+
[(9 * (i - 6) + 50) * 1.15 * 0.85 for i in range(6, 31)] +
|
117 |
+
[280 * 1.15 * 0.85] * 2,
|
118 |
+
},
|
119 |
+
27638: {
|
120 |
+
"skill_class": MagicalDamage,
|
121 |
+
"skill_name": "飞叶满襟",
|
122 |
+
"damage_base": [55, 74, 93, 112, 131, 150, 169, 188, 207, 226, 245, 264, 283, 302, 321, 340, 359, 378, 397, 416,
|
123 |
+
435, 454, 473, 492, 511, 530, 549, 568, 587, 606, 625],
|
124 |
+
"damage_rand": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 20, 20, 20, 20,
|
125 |
+
20, 20, 20, 20, 20, 20, 20],
|
126 |
+
"attack_power_cof": [55 * 1.15 * 0.85] * 5 +
|
127 |
+
[(9 * (i - 6) + 55) * 1.15 * 0.85 for i in range(6, 31)] +
|
128 |
+
[340 * 1.15 * 0.85] * 2,
|
129 |
+
},
|
130 |
+
27657: {
|
131 |
+
"skill_class": MagicalDamage,
|
132 |
+
"skill_name": "苍棘缚地",
|
133 |
+
"damage_base": [20, 33, 46, 59, 72, 85, 98, 111, 124, 137],
|
134 |
+
"damage_rand": 10,
|
135 |
+
"attack_power_cof": [70 * 0.9] * 3 +
|
136 |
+
[(3 * (i - 4) + 70) * 0.9 for i in range(4, 9)] +
|
137 |
+
[300 * 0.9] * 2,
|
138 |
+
},
|
139 |
+
29674: {
|
140 |
+
"skill_class": MagicalDamage,
|
141 |
+
"skill_name": "疾根",
|
142 |
+
"damage_base": 120,
|
143 |
+
"damage_rand": 10,
|
144 |
+
"attack_power_cof": 170 * 0.5 * 0.7 * 1.1
|
145 |
+
},
|
146 |
+
28385: {
|
147 |
+
"skill_class": MagicalDamage,
|
148 |
+
"skill_name": "紫叶沉疴",
|
149 |
+
"damage_base": 417,
|
150 |
+
"damage_rand": 15,
|
151 |
+
"attack_power_cof": 190
|
152 |
+
},
|
153 |
+
28434: {
|
154 |
+
"skill_class": MagicalDamage,
|
155 |
+
"skill_name": "紫伏",
|
156 |
+
"damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
|
157 |
+
281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
|
158 |
+
"damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
|
159 |
+
15, 15, 15, 15, 15, 15],
|
160 |
+
"attack_power_cof": 125 * 1.5
|
161 |
+
},
|
162 |
+
35367: {
|
163 |
+
"skill_class": MagicalDamage,
|
164 |
+
"skill_name": "应理与药",
|
165 |
+
"damage_base": 100,
|
166 |
+
"damage_rand": 10,
|
167 |
+
"attack_power_cof": 580 * 1.15 * 1.5
|
168 |
+
},
|
169 |
+
29698: {
|
170 |
+
"skill_class": MagicalDamage,
|
171 |
+
"skill_name": "商陆缀寒·神兵",
|
172 |
+
"damage_base": 20,
|
173 |
+
"damage_rand": 2,
|
174 |
+
"attack_power_cof": 65
|
175 |
+
},
|
176 |
+
36580: {
|
177 |
+
"skill_class": MagicalDamage,
|
178 |
+
"skill_name": "银羽南徊",
|
179 |
+
"damage_base": 20,
|
180 |
+
"damage_rand": 2,
|
181 |
+
"attack_power_cof": 390
|
182 |
+
}
|
183 |
+
}
|
184 |
+
|
185 |
+
for skill_id, detail in SKILLS.items():
|
186 |
+
SKILLS[skill_id] = detail.pop('skill_class')(skill_id, detail.pop('skill_name'))
|
187 |
+
for attr, value in detail.items():
|
188 |
+
setattr(SKILLS[skill_id], attr, value)
|
189 |
+
|
190 |
+
for skill_id, skill in GENERAL_SKILLS.items():
|
191 |
+
SKILLS[skill_id] = skill
|
schools/wu_fang/talents.py
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict
|
2 |
+
|
3 |
+
from base.attribute import Attribute
|
4 |
+
from base.gain import Gain
|
5 |
+
from base.skill import Skill
|
6 |
+
|
7 |
+
|
8 |
+
class 鸩羽(Gain):
|
9 |
+
def add_skills(self, skills: Dict[int, Skill]):
|
10 |
+
skills[27557].skill_critical_strike += 102
|
11 |
+
|
12 |
+
def sub_skills(self, skills: Dict[int, Skill]):
|
13 |
+
skills[27557].skill_critical_strike -= 102
|
14 |
+
|
15 |
+
|
16 |
+
class 疾根(Gain):
|
17 |
+
def add_skills(self, skills: Dict[int, Skill]):
|
18 |
+
skills[27560].tick += 1
|
19 |
+
|
20 |
+
def sub_skills(self, skills: Dict[int, Skill]):
|
21 |
+
skills[27560].tick -= 1
|
22 |
+
|
23 |
+
|
24 |
+
TALENT_GAINS: Dict[int, Gain] = {
|
25 |
+
28343: Gain("淮茵"),
|
26 |
+
28344: 鸩羽("鸩羽"),
|
27 |
+
28361: Gain("结草"),
|
28 |
+
29498: Gain("灵荆"),
|
29 |
+
29499: Gain("苦苛"),
|
30 |
+
28410: Gain("坚阴"),
|
31 |
+
28413: Gain("相使"),
|
32 |
+
28419: Gain("凄骨"),
|
33 |
+
28432: 疾根("疾根"),
|
34 |
+
28433: Gain("紫伏"),
|
35 |
+
28443: Gain("甘遂"),
|
36 |
+
32896: Gain("应理与药")
|
37 |
+
}
|
38 |
+
|
39 |
+
TALENTS = [
|
40 |
+
[28343],
|
41 |
+
[28344],
|
42 |
+
[28361],
|
43 |
+
[29498],
|
44 |
+
[29499],
|
45 |
+
[28410],
|
46 |
+
[28413],
|
47 |
+
[28419],
|
48 |
+
[28432],
|
49 |
+
[28433],
|
50 |
+
[28443],
|
51 |
+
[32896]
|
52 |
+
]
|
53 |
+
TALENT_DECODER = {talent_id: talent.gain_name for talent_id, talent in TALENT_GAINS.items()}
|
54 |
+
TALENT_ENCODER = {v: k for k, v in TALENT_DECODER.items()}
|
utils/parser.py
CHANGED
@@ -6,7 +6,7 @@ from base.attribute import Attribute
|
|
6 |
from base.buff import Buff
|
7 |
from base.gain import Gain
|
8 |
from base.skill import Skill, DotSkill, DotConsumeSkill, Damage, DotDamage
|
9 |
-
from schools import bei_ao_jue, shan_hai_xin_jue, ling_hai_jue
|
10 |
from utils.lua import parse
|
11 |
|
12 |
SKILL_TYPE = Tuple[int, int, int]
|
@@ -63,6 +63,22 @@ PHYSICAL_DISPLAY_ATTRS = {
|
|
63 |
"strain": "无双",
|
64 |
"surplus": "破招",
|
65 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
SUPPORT_SCHOOL = {
|
68 |
10464: School(
|
@@ -89,6 +105,14 @@ SUPPORT_SCHOOL = {
|
|
89 |
recipe_gains=ling_hai_jue.RECIPE_GAINS, recipes=ling_hai_jue.RECIPES,
|
90 |
gains=ling_hai_jue.GAINS, display_attrs={"agility": "身法", **PHYSICAL_DISPLAY_ATTRS}
|
91 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
|
94 |
LABEL_MAPPING = {
|
@@ -105,11 +129,16 @@ LABEL_MAPPING = {
|
|
105 |
12: "护腕",
|
106 |
0: "近战武器"
|
107 |
}
|
108 |
-
EMBED_MAPPING = {(5, 24449 - i): 8 - i for i in range(8)}
|
|
|
|
|
|
|
109 |
|
110 |
|
111 |
class Parser:
|
112 |
current_player: int
|
|
|
|
|
113 |
id2name: Dict[int, str]
|
114 |
name2id: Dict[str, int]
|
115 |
records: Dict[int, List[RECORD_TYPE]]
|
|
|
6 |
from base.buff import Buff
|
7 |
from base.gain import Gain
|
8 |
from base.skill import Skill, DotSkill, DotConsumeSkill, Damage, DotDamage
|
9 |
+
from schools import bei_ao_jue, shan_hai_xin_jue, ling_hai_jue, wu_fang
|
10 |
from utils.lua import parse
|
11 |
|
12 |
SKILL_TYPE = Tuple[int, int, int]
|
|
|
63 |
"strain": "无双",
|
64 |
"surplus": "破招",
|
65 |
}
|
66 |
+
MAGICAL_DISPLAY_ATTRS = {
|
67 |
+
"base_magical_attack_power": "基础攻击",
|
68 |
+
"magical_attack_power": "攻击",
|
69 |
+
"base_magical_critical_strike": "会心等级",
|
70 |
+
"magical_critical_strike": "会心",
|
71 |
+
"magical_critical_power_base": "会效等级",
|
72 |
+
"magical_critical_power": "会效",
|
73 |
+
"base_magical_overcome": "基础破防",
|
74 |
+
"final_magical_overcome": "最终破防",
|
75 |
+
"magical_overcome": "破防",
|
76 |
+
"weapon_damage_base": "基础武器伤害",
|
77 |
+
"weapon_damage_rand": "浮动武器伤害",
|
78 |
+
"strain_base": "无双等级",
|
79 |
+
"strain": "无双",
|
80 |
+
"surplus": "破招",
|
81 |
+
}
|
82 |
|
83 |
SUPPORT_SCHOOL = {
|
84 |
10464: School(
|
|
|
105 |
recipe_gains=ling_hai_jue.RECIPE_GAINS, recipes=ling_hai_jue.RECIPES,
|
106 |
gains=ling_hai_jue.GAINS, display_attrs={"agility": "身法", **PHYSICAL_DISPLAY_ATTRS}
|
107 |
),
|
108 |
+
10627: School(
|
109 |
+
school="药宗", major="根骨", kind="内功", attribute=wu_fang.WuFang, formation="乱暮浊茵阵",
|
110 |
+
skills=wu_fang.SKILLS, buffs=wu_fang.BUFFS,
|
111 |
+
talent_gains=wu_fang.TALENT_GAINS, talents=wu_fang.TALENTS,
|
112 |
+
talent_decoder=wu_fang.TALENT_DECODER, talent_encoder=wu_fang.TALENT_ENCODER,
|
113 |
+
recipe_gains=wu_fang.RECIPE_GAINS, recipes=wu_fang.RECIPES,
|
114 |
+
gains=wu_fang.GAINS, display_attrs={"spirit": "根骨", **MAGICAL_DISPLAY_ATTRS}
|
115 |
+
),
|
116 |
}
|
117 |
|
118 |
LABEL_MAPPING = {
|
|
|
129 |
12: "护腕",
|
130 |
0: "近战武器"
|
131 |
}
|
132 |
+
EMBED_MAPPING: Dict[tuple, int] = {(5, 24449 - i): 8 - i for i in range(8)}
|
133 |
+
|
134 |
+
|
135 |
+
BUFF_DELAY = 4
|
136 |
|
137 |
|
138 |
class Parser:
|
139 |
current_player: int
|
140 |
+
current_flame: int
|
141 |
+
|
142 |
id2name: Dict[int, str]
|
143 |
name2id: Dict[str, int]
|
144 |
records: Dict[int, List[RECORD_TYPE]]
|