Spaces:
Runtime error
Runtime error
ango
commited on
Commit
·
f0b1638
1
Parent(s):
b8aecdd
04.09 commit
Browse files- base/buff.py +3 -3
- base/calculator.py +22 -21
- base/recipe.py +22 -0
- parse.py → parser.py +43 -17
- qt/__init__.py +0 -0
- qt/app.py +97 -0
- qt/assets/enchants/belt +1 -0
- qt/assets/enchants/bottoms +1 -0
- qt/assets/enchants/hat +1 -0
- qt/assets/enchants/jacket +1 -0
- qt/assets/enchants/necklace +1 -0
- qt/assets/enchants/pendant +1 -0
- qt/assets/enchants/primary_weapon +1 -0
- qt/assets/enchants/ring +1 -0
- qt/assets/enchants/secondary_weapon +1 -0
- qt/assets/enchants/shoes +1 -0
- qt/assets/enchants/tertiary_weapon +1 -0
- qt/assets/enchants/wrist +1 -0
- qt/assets/equipments/belt +1 -0
- qt/assets/equipments/bottoms +1 -0
- qt/assets/equipments/hat +1 -0
- qt/assets/equipments/jacket +1 -0
- qt/assets/equipments/necklace +1 -0
- qt/assets/equipments/pendant +1 -0
- qt/assets/equipments/primary_weapon +0 -0
- qt/assets/equipments/ring +1 -0
- qt/assets/equipments/secondary_weapon +1 -0
- qt/assets/equipments/shoes +1 -0
- qt/assets/equipments/tertiary_weapon +1 -0
- qt/assets/equipments/wrist +1 -0
- qt/assets/icon.ico +0 -0
- qt/assets/stones.json +1 -0
- qt/components/__init__.py +175 -0
- qt/components/equipments.py +100 -0
- qt/components/talents.py +30 -0
- qt/components/top.py +12 -0
- qt/constant.py +217 -0
- qt/scripts/equipments.py +327 -0
- qt/scripts/talents.py +38 -0
- qt/scripts/top.py +143 -0
- schools/first/__init__.py +2 -0
- schools/first/recipes.py +71 -0
- schools/first/skills.py +11 -9
- schools/first/talents.py +69 -49
- schools/first/test.py +2 -4
- utils/__init__.py +0 -0
- utils/lua.py +350 -0
base/buff.py
CHANGED
@@ -15,14 +15,14 @@ class Buff:
|
|
15 |
|
16 |
stack: int = 1
|
17 |
|
18 |
-
gain_skills: Dict[
|
19 |
gain_attributes: ATTR_DICT = None
|
20 |
|
21 |
def __post_init__(self):
|
22 |
self.gain_skills = {}
|
23 |
self.gain_attributes = {}
|
24 |
|
25 |
-
def __radd__(self, other: Tuple[Attribute, Dict[
|
26 |
attribute, skills = other
|
27 |
for skill_id, gain in self.gain_skills.items():
|
28 |
skill = skills[skill_id]
|
@@ -32,7 +32,7 @@ class Buff:
|
|
32 |
setattr(attribute, attr, getattr(attribute, attr) + value)
|
33 |
return attribute, skills
|
34 |
|
35 |
-
def __rsub__(self, other: Tuple[Attribute, Dict[
|
36 |
attribute, skills = other
|
37 |
for skill_id, gain in self.gain_skills.items():
|
38 |
skill = skills[skill_id]
|
|
|
15 |
|
16 |
stack: int = 1
|
17 |
|
18 |
+
gain_skills: Dict[int, ATTR_DICT] = None
|
19 |
gain_attributes: ATTR_DICT = None
|
20 |
|
21 |
def __post_init__(self):
|
22 |
self.gain_skills = {}
|
23 |
self.gain_attributes = {}
|
24 |
|
25 |
+
def __radd__(self, other: Tuple[Attribute, Dict[int, Skill]]):
|
26 |
attribute, skills = other
|
27 |
for skill_id, gain in self.gain_skills.items():
|
28 |
skill = skills[skill_id]
|
|
|
32 |
setattr(attribute, attr, getattr(attribute, attr) + value)
|
33 |
return attribute, skills
|
34 |
|
35 |
+
def __rsub__(self, other: Tuple[Attribute, Dict[int, Skill]]):
|
36 |
attribute, skills = other
|
37 |
for skill_id, gain in self.gain_skills.items():
|
38 |
skill = skills[skill_id]
|
base/calculator.py
CHANGED
@@ -1,42 +1,43 @@
|
|
1 |
from base.attribute import Attribute
|
2 |
-
from
|
3 |
|
4 |
|
5 |
-
def refresh_status(existed_buffs, buffs, attribute,
|
6 |
for buff in [buff for buff in existed_buffs if buff not in buffs]:
|
7 |
existed_buffs.remove(buff)
|
8 |
buff_id, buff_level, buff_stack = buff
|
9 |
-
buff =
|
10 |
buff.buff_level = buff_level
|
11 |
for _ in range(buff_stack):
|
12 |
-
attribute,
|
13 |
|
14 |
for buff in [buff for buff in buffs if buff not in existed_buffs]:
|
15 |
existed_buffs.append(buff)
|
16 |
buff_id, buff_level, buff_stack = buff
|
17 |
-
buff =
|
18 |
buff.buff_level = buff_level
|
19 |
for _ in range(buff_stack):
|
20 |
-
attribute,
|
21 |
|
22 |
|
23 |
def analyze_details(parser: Parser, attribute: Attribute):
|
24 |
existed_buffs = []
|
25 |
-
for
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
40 |
|
41 |
|
42 |
def analyze_gradients(skill, attribute):
|
|
|
1 |
from base.attribute import Attribute
|
2 |
+
from qt.scripts.top import Parser, School
|
3 |
|
4 |
|
5 |
+
def refresh_status(existed_buffs, buffs, attribute: Attribute, school: School):
|
6 |
for buff in [buff for buff in existed_buffs if buff not in buffs]:
|
7 |
existed_buffs.remove(buff)
|
8 |
buff_id, buff_level, buff_stack = buff
|
9 |
+
buff = school.buffs[buff_id]
|
10 |
buff.buff_level = buff_level
|
11 |
for _ in range(buff_stack):
|
12 |
+
attribute, school.skills = (attribute, school.skills) - buff
|
13 |
|
14 |
for buff in [buff for buff in buffs if buff not in existed_buffs]:
|
15 |
existed_buffs.append(buff)
|
16 |
buff_id, buff_level, buff_stack = buff
|
17 |
+
buff = school.buffs[buff_id]
|
18 |
buff.buff_level = buff_level
|
19 |
for _ in range(buff_stack):
|
20 |
+
attribute, school.skills = (attribute, school.skills) + buff
|
21 |
|
22 |
|
23 |
def analyze_details(parser: Parser, attribute: Attribute):
|
24 |
existed_buffs = []
|
25 |
+
for start_time, record in parser.records.items():
|
26 |
+
for skill, status in record.items():
|
27 |
+
skill_id, skill_level = skill
|
28 |
+
skill = parser.school.skills[skill_id]
|
29 |
+
skill.skill_level = skill_level
|
30 |
+
for buffs, timeline in status.items():
|
31 |
+
refresh_status(existed_buffs, buffs, attribute, parser.school)
|
32 |
+
|
33 |
+
damage, critical_damage, expected_damage = skill(attribute)
|
34 |
+
|
35 |
+
status[buffs] = {
|
36 |
+
"damage": damage, "critical_damage": critical_damage, "expected_damage": expected_damage,
|
37 |
+
"timeline": [round(t / 1000, 2) for t in timeline],
|
38 |
+
"gradients": analyze_gradients(skill, attribute)
|
39 |
+
}
|
40 |
+
refresh_status(existed_buffs, [], attribute, parser.school)
|
41 |
|
42 |
|
43 |
def analyze_gradients(skill, attribute):
|
base/recipe.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
def damage_addition_recipe(skill_ids, value, name="伤害增加"):
|
4 |
+
return {
|
5 |
+
"buff_name": name,
|
6 |
+
"gain_skills": {
|
7 |
+
skill_id: {
|
8 |
+
"skill_damage_addition": value
|
9 |
+
} for skill_id in skill_ids
|
10 |
+
}
|
11 |
+
}
|
12 |
+
|
13 |
+
|
14 |
+
def critical_strike_recipe(skill_ids, value, name="会心增加"):
|
15 |
+
return {
|
16 |
+
"buff_name": name,
|
17 |
+
"gain_skills": {
|
18 |
+
skill_id: {
|
19 |
+
"skill_critical_strike": value
|
20 |
+
} for skill_id in skill_ids
|
21 |
+
}
|
22 |
+
}
|
parse.py → parser.py
RENAMED
@@ -1,28 +1,48 @@
|
|
1 |
from typing import Dict
|
2 |
|
3 |
-
from luadata import unserialize
|
4 |
-
|
5 |
from base.buff import Buff
|
6 |
from base.skill import Skill
|
|
|
7 |
|
8 |
|
9 |
class Parser:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
def __init__(self, skills: Dict[str, Skill], buffs: Dict[str, Buff]):
|
11 |
self.skills = skills
|
12 |
self.buffs = buffs
|
13 |
|
|
|
|
|
|
|
|
|
14 |
self.records = {}
|
15 |
self.status = {}
|
16 |
|
17 |
-
self.start_time =
|
18 |
-
self.end_time =
|
|
|
|
|
|
|
|
|
19 |
|
20 |
def parse_time(self, detail, timestamp):
|
21 |
if detail[1]:
|
22 |
-
self.start_time
|
|
|
|
|
23 |
else:
|
24 |
-
self.end_time
|
25 |
-
|
26 |
|
27 |
def parse_buff(self, detail):
|
28 |
buff_id, buff_stack, buff_level = detail[4], detail[5], detail[8]
|
@@ -38,22 +58,28 @@ class Parser:
|
|
38 |
if skill[0] not in self.skills:
|
39 |
return
|
40 |
|
41 |
-
|
42 |
-
|
|
|
43 |
status = tuple(
|
44 |
(buff_id, buff_level, buff_stack) for (buff_id, buff_level), buff_stack in self.status.items()
|
45 |
)
|
46 |
-
if status not in
|
47 |
-
|
48 |
-
|
49 |
|
50 |
def __call__(self, file_name):
|
|
|
|
|
51 |
for line in open(file_name):
|
52 |
row = line.split("\t")
|
53 |
-
if row[4] == "
|
54 |
-
|
|
|
|
|
55 |
elif row[4] == "13":
|
56 |
-
self.parse_buff(
|
57 |
-
elif row[4] == "21":
|
58 |
-
self.parse_skill(
|
|
|
59 |
return self.records
|
|
|
1 |
from typing import Dict
|
2 |
|
|
|
|
|
3 |
from base.buff import Buff
|
4 |
from base.skill import Skill
|
5 |
+
from utils.lua import parse
|
6 |
|
7 |
|
8 |
class Parser:
|
9 |
+
records: dict
|
10 |
+
status: dict
|
11 |
+
|
12 |
+
start_time: list
|
13 |
+
end_time: list
|
14 |
+
|
15 |
+
info_flag: bool
|
16 |
+
fight_flag: bool
|
17 |
+
|
18 |
+
school: int
|
19 |
+
|
20 |
def __init__(self, skills: Dict[str, Skill], buffs: Dict[str, Buff]):
|
21 |
self.skills = skills
|
22 |
self.buffs = buffs
|
23 |
|
24 |
+
def reset(self):
|
25 |
+
self.info_flag = True
|
26 |
+
self.fight_flag = False
|
27 |
+
|
28 |
self.records = {}
|
29 |
self.status = {}
|
30 |
|
31 |
+
self.start_time = []
|
32 |
+
self.end_time = []
|
33 |
+
|
34 |
+
def parse_info(self, detail):
|
35 |
+
if isinstance(detail, list):
|
36 |
+
self.info_flag = False
|
37 |
|
38 |
def parse_time(self, detail, timestamp):
|
39 |
if detail[1]:
|
40 |
+
self.start_time.append(int(timestamp))
|
41 |
+
self.records[self.start_time[-1]] = {}
|
42 |
+
self.fight_flag = True
|
43 |
else:
|
44 |
+
self.end_time.append(int(timestamp))
|
45 |
+
self.fight_flag = False
|
46 |
|
47 |
def parse_buff(self, detail):
|
48 |
buff_id, buff_stack, buff_level = detail[4], detail[5], detail[8]
|
|
|
58 |
if skill[0] not in self.skills:
|
59 |
return
|
60 |
|
61 |
+
current_record = self.records[self.start_time[-1]]
|
62 |
+
if skill not in current_record:
|
63 |
+
current_record[skill] = {}
|
64 |
status = tuple(
|
65 |
(buff_id, buff_level, buff_stack) for (buff_id, buff_level), buff_stack in self.status.items()
|
66 |
)
|
67 |
+
if status not in current_record[skill]:
|
68 |
+
current_record[skill][status] = []
|
69 |
+
current_record[skill][status].append(int(timestamp) - self.start_time[-1])
|
70 |
|
71 |
def __call__(self, file_name):
|
72 |
+
self.reset()
|
73 |
+
|
74 |
for line in open(file_name):
|
75 |
row = line.split("\t")
|
76 |
+
if row[4] == "4" and self.info_flag:
|
77 |
+
self.parse_info(parse(row[-1]))
|
78 |
+
elif row[4] == "5":
|
79 |
+
self.parse_time(parse(row[-1]), row[3])
|
80 |
elif row[4] == "13":
|
81 |
+
self.parse_buff(parse(row[-1]))
|
82 |
+
elif row[4] == "21" and self.fight_flag:
|
83 |
+
self.parse_skill(parse(row[-1]), row[3])
|
84 |
+
|
85 |
return self.records
|
qt/__init__.py
ADDED
File without changes
|
qt/app.py
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import sys
|
2 |
+
|
3 |
+
|
4 |
+
from PySide6.QtGui import QIcon
|
5 |
+
|
6 |
+
from qt.components.top import TopWidget
|
7 |
+
from qt.scripts.top import top_script
|
8 |
+
from qt.components.equipments import EquipmentsWidget
|
9 |
+
from qt.scripts.equipments import equipments_script
|
10 |
+
from qt.components.talents import TalentsWidget
|
11 |
+
# from qt.scripts.talents import talents_script
|
12 |
+
# from qt.components.recipes import RecipesWidget
|
13 |
+
# from qt.scripts.recipes import recipes_script
|
14 |
+
# from qt.components.consumables import ConsumablesWidget
|
15 |
+
# from qt.scripts.consumables import consumables_script
|
16 |
+
# from qt.components.bonuses import BonusesWidget
|
17 |
+
# from qt.scripts.bonuses import bonuses_script
|
18 |
+
# from qt.components.combat import CombatWidget
|
19 |
+
# from qt.scripts.combat import combat_script
|
20 |
+
|
21 |
+
from PySide6.QtWidgets import QApplication, QMainWindow, QStyleFactory, QMessageBox, QVBoxLayout, QWidget, QTabWidget, \
|
22 |
+
QGridLayout
|
23 |
+
|
24 |
+
|
25 |
+
class MainWindow(QMainWindow):
|
26 |
+
def __init__(self):
|
27 |
+
super().__init__()
|
28 |
+
|
29 |
+
self.setWindowTitle("Simulator")
|
30 |
+
|
31 |
+
icon = QIcon("qt/assets/icon.ico")
|
32 |
+
self.setWindowIcon(icon)
|
33 |
+
self.message_box = QMessageBox()
|
34 |
+
|
35 |
+
self.message_box.setWindowIcon(icon)
|
36 |
+
|
37 |
+
self.central_widget = QWidget(self)
|
38 |
+
self.setCentralWidget(self.central_widget)
|
39 |
+
|
40 |
+
self.showMaximized()
|
41 |
+
layout = QVBoxLayout(self.central_widget)
|
42 |
+
|
43 |
+
self.top_widget = TopWidget()
|
44 |
+
self.config_widget = QWidget()
|
45 |
+
config_layout = QGridLayout(self.config_widget)
|
46 |
+
layout.addWidget(self.top_widget)
|
47 |
+
layout.addWidget(self.config_widget)
|
48 |
+
|
49 |
+
self.equipments_widget = EquipmentsWidget()
|
50 |
+
config_layout.addWidget(self.equipments_widget, 0, 0)
|
51 |
+
|
52 |
+
self.talent_widget = TalentsWidget()
|
53 |
+
config_layout.addWidget(self.talent_widget, 0, 1)
|
54 |
+
|
55 |
+
parser = top_script(self.top_widget, self.config_widget, self.equipments_widget, self.talent_widget)
|
56 |
+
equipments = equipments_script(self.equipments_widget)
|
57 |
+
|
58 |
+
#
|
59 |
+
# config_layout.addWidget(self.equipments_widget, 1, 0)
|
60 |
+
#
|
61 |
+
# config_layout.addWidget(self.equipments_widget, 1, 1)
|
62 |
+
#
|
63 |
+
# self.talents_widget = TalentsWidget()
|
64 |
+
# self.tab_widget.addTab(self.talents_widget, "奇穴")
|
65 |
+
#
|
66 |
+
# self.recipes_widget = RecipesWidget()
|
67 |
+
# self.tab_widget.addTab(self.recipes_widget, "秘籍")
|
68 |
+
#
|
69 |
+
# self.consumables_widget = ConsumablesWidget()
|
70 |
+
# self.tab_widget.addTab(self.consumables_widget, "消耗品")
|
71 |
+
#
|
72 |
+
# self.bonuses_widget = BonusesWidget()
|
73 |
+
# self.tab_widget.addTab(self.bonuses_widget, "增益")
|
74 |
+
#
|
75 |
+
# self.combat_widget = CombatWidget()
|
76 |
+
# self.tab_widget.addTab(self.combat_widget, "战斗")
|
77 |
+
#
|
78 |
+
# school = top_script(self.top_widget, self.tab_widget,
|
79 |
+
# self.equipments_widget, self.talents_widget, self.recipes_widget,
|
80 |
+
# self.consumables_widget, self.bonuses_widget,
|
81 |
+
# self.combat_widget)
|
82 |
+
# equipments = equipments_script(self.equipments_widget)
|
83 |
+
# talents = talents_script(self.talents_widget)
|
84 |
+
# recipes = recipes_script(self.recipes_widget)
|
85 |
+
# consumables = consumables_script(self.consumables_widget)
|
86 |
+
# bonuses = bonuses_script(school, self.bonuses_widget)
|
87 |
+
# combat_script(self.message_box, school, equipments, talents, recipes, consumables, bonuses, self.combat_widget)
|
88 |
+
|
89 |
+
self.config_widget.hide()
|
90 |
+
|
91 |
+
|
92 |
+
if __name__ == "__main__":
|
93 |
+
app = QApplication(sys.argv)
|
94 |
+
app.setStyle(QStyleFactory.create('Fusion'))
|
95 |
+
window = MainWindow()
|
96 |
+
window.show()
|
97 |
+
sys.exit(app.exec())
|
qt/assets/enchants/belt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"连雾·腰·无双 腰带无双等级提高264": {"score": 380, "attr": {"strain_base": 264}}, "连雾·腰·无双 腰带无双等级提高240": {"score": 313, "attr": {"strain_base": 240}}, "连雾·腰·无双 腰带无双等级提高217": {"score": 258, "attr": {"strain_base": 217}}}
|
qt/assets/enchants/bottoms
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断浪·裤·铸(无双) 无双等级提升883点": {"score": 952, "attr": {"strain_base": 883}}, "断浪·裤·铸(会心) 全会心提升883点": {"score": 952, "attr": {"all_critical_strike_base": 883}}, "断浪·裤·铸(内破) 内功破防等级提升883点": {"score": 952, "attr": {"magical_overcome_base": 883}}, "断浪·裤·铸(外破) 外功破防等级提升883点": {"score": 952, "attr": {"physical_overcome_base": 883}}, "断浪·裤·铸(根骨) 根骨提升198点": {"score": 952, "attr": {"spirit_base": 198}}, "断浪·裤·铸(力道) 力道提升198点": {"score": 952, "attr": {"strength_base": 198}}, "断浪·裤·铸(元气) 元气提升198点": {"score": 952, "attr": {"spunk_base": 198}}, "断浪·裤·铸(身法) 身法提升198点": {"score": 952, "attr": {"agility_base": 198}}, "断浪·裤·铸(无双) 无双等级提升799点": {"score": 783, "attr": {"strain_base": 799}}, "断浪·裤·铸(会心) 全会心提升799点": {"score": 783, "attr": {"all_critical_strike_base": 799}}, "断浪·裤·铸(内破) 内功破防等级提升799点": {"score": 783, "attr": {"magical_overcome_base": 799}}, "断浪·裤·铸(外破) 外功破防等级提升799点": {"score": 783, "attr": {"physical_overcome_base": 799}}, "断浪·裤·铸(根骨) 根骨提升179点": {"score": 783, "attr": {"spirit_base": 179}}, "断浪·裤·铸(力道) 力道提升179点": {"score": 783, "attr": {"strength_base": 179}}, "断浪·裤·铸(元气) 元气提升179点": {"score": 783, "attr": {"spunk_base": 179}}, "断浪·裤·铸(身法) 身法提升179点": {"score": 783, "attr": {"agility_base": 179}}, "断浪·裤·铸(无双) 无双等级提升723点": {"score": 644, "attr": {"strain_base": 723}}, "断浪·裤·铸(会心) 全会心提升723点": {"score": 644, "attr": {"all_critical_strike_base": 723}}, "断浪·裤·铸(内破) 内功破防等级提升723点": {"score": 644, "attr": {"magical_overcome_base": 723}}, "断浪·裤·铸(外破) 外功破防等级提升723点": {"score": 644, "attr": {"physical_overcome_base": 723}}, "断浪·裤·铸(根骨) 根骨提升162点": {"score": 644, "attr": {"spirit_base": 162}}, "断浪·裤·铸(力道) 力道提升162点": {"score": 644, "attr": {"strength_base": 162}}, "断浪·裤·铸(元气) 元气提升162点": {"score": 644, "attr": {"spunk_base": 162}}, "断浪·裤·铸(身法) 身法提升162点": {"score": 644, "attr": {"agility_base": 162}}, "断浪·裤·甲(无双) 无双等级提升442点": {"score": 475, "attr": {"strain_base": 442}}, "断浪·裤·甲(会心) 全会心提升442点": {"score": 475, "attr": {"all_critical_strike_base": 442}}, "断浪·裤·甲(内破) 内功破防等级提升442点": {"score": 475, "attr": {"magical_overcome_base": 442}}, "断浪·裤·甲(外破) 外功破防等级提升442点": {"score": 475, "attr": {"physical_overcome_base": 442}}, "断浪·裤·甲(根骨) 根骨提升99点": {"score": 475, "attr": {"spirit_base": 99}}, "断浪·裤·甲(力道) 力道提升99点": {"score": 475, "attr": {"strength_base": 99}}, "断浪·裤·甲(元气) 元气提升99点": {"score": 475, "attr": {"spunk_base": 99}}, "断浪·裤·甲(身法) 身法提升99点": {"score": 475, "attr": {"agility_base": 99}}, "断浪·裤·甲(无双) 无双等级提升400点": {"score": 391, "attr": {"strain_base": 400}}, "断浪·裤·甲(会心) 全会心提升400点": {"score": 391, "attr": {"all_critical_strike_base": 400}}, "断浪·裤·甲(内破) 内功破防等级提升400点": {"score": 391, "attr": {"magical_overcome_base": 400}}, "断浪·裤·甲(外破) 外功破防等级提升400点": {"score": 391, "attr": {"physical_overcome_base": 400}}, "断浪·裤·甲(根骨) 根骨提升90点": {"score": 391, "attr": {"spirit_base": 90}}, "断浪·裤·甲(力道) 力道提升90点": {"score": 391, "attr": {"strength_base": 90}}, "断浪·裤·甲(元气) 元气提升90点": {"score": 391, "attr": {"spunk_base": 90}}, "断浪·裤·甲(身法) 身法提升90点": {"score": 391, "attr": {"agility_base": 90}}, "连雾·裤·无双 下装无双等级提高353": {"score": 380, "attr": {"strain_base": 353}}, "连雾·裤·内破 下装内功破防等级提高353": {"score": 380, "attr": {"magical_overcome_base": 353}}, "连雾·裤·外破 下装外功破防等级提高353": {"score": 380, "attr": {"physical_overcome_base": 353}}, "连雾·裤·会心 下装全会心等级提高353": {"score": 380, "attr": {"all_critical_strike_base": 353}}, "断浪·裤·甲(无双) 无双等级提升362点": {"score": 322, "attr": {"strain_base": 362}}, "断浪·裤·甲(会心) 全会心提升362点": {"score": 322, "attr": {"all_critical_strike_base": 362}}, "断浪·裤·甲(内破) 内功破防等级提升362点": {"score": 322, "attr": {"magical_overcome_base": 362}}, "断浪·裤·甲(外破) 外功破防等级提升362点": {"score": 322, "attr": {"physical_overcome_base": 362}}, "��浪·裤·甲(根骨) 根骨提升81点": {"score": 322, "attr": {"spirit_base": 81}}, "断浪·裤·甲(力道) 力道提升81点": {"score": 322, "attr": {"strength_base": 81}}, "断浪·裤·甲(元气) 元气提升81点": {"score": 322, "attr": {"spunk_base": 81}}, "断浪·裤·甲(身法) 身法提升81点": {"score": 322, "attr": {"agility_base": 81}}, "连雾·裤·无双 下装无双等级提高320": {"score": 313, "attr": {"strain_base": 320}}, "连雾·裤·内破 下装内功破防等级提高320": {"score": 313, "attr": {"magical_overcome_base": 320}}, "连雾·裤·外破 下装外功破防等级提高320": {"score": 313, "attr": {"physical_overcome_base": 320}}, "连雾·裤·会心 下装全会心等级提高320": {"score": 313, "attr": {"all_critical_strike_base": 320}}, "连雾·裤·无双 下装无双等级提高289": {"score": 258, "attr": {"strain_base": 289}}, "连雾·裤·内破 下装内功破防等级提高289": {"score": 258, "attr": {"magical_overcome_base": 289}}, "连雾·裤·外破 下装外功破防等级提高289": {"score": 258, "attr": {"physical_overcome_base": 289}}, "连雾·裤·会心 下装全会心等级提高289": {"score": 258, "attr": {"all_critical_strike_base": 289}}}
|
qt/assets/enchants/hat
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断浪·头·铸(急速) 加速提升883点": {"score": 952, "attr": {"haste_base": 883}}, "断浪·头·铸(破招) 破招提升883点": {"score": 952, "attr": {"surplus": 883}}, "断浪·头·铸(内攻) 内功攻击提升475点": {"score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·头·铸(外攻) 外功攻击提升398点": {"score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·头·铸(急速) 加速提升799点": {"score": 783, "attr": {"haste_base": 799}}, "断浪·头·铸(破招) 破招提升799点": {"score": 783, "attr": {"surplus": 799}}, "断浪·头·铸(内攻) 内功攻击提升430点": {"score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·头·铸(外攻) 外功攻击提升360点": {"score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·头·铸(急速) 加速提升723点": {"score": 644, "attr": {"haste_base": 723}}, "断浪·头·铸(破招) 破招提升723点": {"score": 644, "attr": {"surplus": 723}}, "断浪·头·铸(内攻) 内功攻击提升389点": {"score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·头·铸(外攻) 外功攻击提升326点": {"score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·头·甲(急速) 加速提升442点": {"score": 475, "attr": {"haste_base": 442}}, "断浪·头·甲(破招) 破招提升442点": {"score": 475, "attr": {"surplus": 442}}, "断浪·头·甲(内攻) 内功攻击提升237点": {"score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·头·甲(外攻) 外功攻击提升199点": {"score": 475, "attr": {"physical_attack_power_base": 199}}, "断浪·头·甲(急速) 加速提升400点": {"score": 391, "attr": {"haste_base": 400}}, "断浪·头·甲(破招) 破招提升400点": {"score": 391, "attr": {"surplus": 400}}, "断浪·头·甲(内攻) 内功攻击提升215点": {"score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·头·甲(外攻) 外功攻击提升180点": {"score": 391, "attr": {"physical_attack_power_base": 180}}, "连雾·头·内攻 帽子内功攻击提高190": {"score": 380, "attr": {"magical_attack_power_base": 190}}, "连雾·头·外攻 帽子外功攻击提高159": {"score": 380, "attr": {"physical_attack_power_base": 159}}, "连雾·头·急速 帽子加速等级提高353": {"score": 380, "attr": {"haste_base": 353}}, "断浪·头·甲(急速) 加速提升362点": {"score": 322, "attr": {"haste_base": 362}}, "断浪·头·甲(破招) 破招提升362点": {"score": 322, "attr": {"surplus": 362}}, "断浪·头·甲(内攻) 内功攻击提升195点": {"score": 322, "attr": {"magical_attack_power_base": 195}}, "断浪·头·甲(外攻) 外功攻击提升163点": {"score": 322, "attr": {"physical_attack_power_base": 163}}, "连雾·头·内攻 帽子内功攻击提高172": {"score": 313, "attr": {"magical_attack_power_base": 172}}, "连雾·头·外攻 帽子外功攻击提高144": {"score": 313, "attr": {"physical_attack_power_base": 144}}, "连雾·头·急速 帽子加速等级提高320": {"score": 313, "attr": {"haste_base": 320}}, "连雾·头·内攻 帽子内功攻击提高156": {"score": 258, "attr": {"magical_attack_power_base": 156}}, "连雾·头·外攻 帽子外功攻击提高130": {"score": 258, "attr": {"physical_attack_power_base": 130}}, "连雾·头·急速 帽子加速等级提高289": {"score": 258, "attr": {"haste_base": 289}}}
|
qt/assets/enchants/jacket
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"连雾·衣·无双 上衣无双等级提高264": {"score": 380, "attr": {"strain_base": 264}}, "连雾·衣·无双 上衣无双等级提高240": {"score": 313, "attr": {"strain_base": 240}}, "连雾·衣·无双 上衣无双等级提高217": {"score": 258, "attr": {"strain_base": 217}}}
|
qt/assets/enchants/necklace
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{}
|
qt/assets/enchants/pendant
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{}
|
qt/assets/enchants/primary_weapon
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断浪·兵·铸(武伤) 武器伤害提升597点": {"score": 952, "attr": {"weapon_damage_base": 597}}, "断浪·兵·铸(内攻) 内功攻击提升475点": {"score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·兵·铸(外攻) 外功攻击提升398点": {"score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·兵·铸(武伤) 武器伤害提升540点": {"score": 783, "attr": {"weapon_damage_base": 540}}, "断浪·兵·铸(内攻) 内功攻击提升430点": {"score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·兵·铸(外攻) 外功攻击提升360点": {"score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·兵·铸(武伤) 武器伤害提升489点": {"score": 644, "attr": {"weapon_damage_base": 489}}, "断浪·兵·铸(内攻) 内功攻击提升389点": {"score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·兵·铸(外攻) 外功攻击提升326点": {"score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·兵·甲(武伤) 武器伤害提升298点": {"score": 475, "attr": {"weapon_damage_base": 298}}, "断浪·兵·甲(内攻) 内功攻击提升237点": {"score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·兵·甲(外攻) 外功攻击提升199点": {"score": 475, "attr": {"physical_attack_power_base": 199}}, "断浪·兵·甲(武伤) 武器伤害提升270点": {"score": 391, "attr": {"weapon_damage_base": 270}}, "断浪·兵·甲(内攻) 内功攻击提升215点": {"score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·兵·甲(外攻) 外功攻击提升180点": {"score": 391, "attr": {"physical_attack_power_base": 180}}, "断浪·兵·甲(武伤) 武器伤害提升244点": {"score": 322, "attr": {"weapon_damage_base": 244}}, "断浪·兵·甲(内攻) 内功攻击提升194点": {"score": 322, "attr": {"magical_attack_power_base": 194}}, "断浪·兵·甲(外攻) 外功攻击提升163点": {"score": 322, "attr": {"physical_attack_power_base": 163}}}
|
qt/assets/enchants/ring
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断流心岩·戒指(破招) 破招等级提升883点": {"score": 952, "attr": {"surplus": 883}}, "断流心岩·戒指(内伤) 内功攻击提升475点": {"score": 952, "attr": {"magical_attack_power_base": 475}}, "断流心岩·戒指(外伤) 外功攻击提升398点": {"score": 952, "attr": {"physical_attack_power_base": 398}}, "断流心岩·戒指(身法) 身法提升198点": {"score": 952, "attr": {"agility_base": 198}}, "断流心岩·戒指(元气) 元气提升198点": {"score": 952, "attr": {"spunk_base": 198}}, "断流心岩·戒指(力道) 力道提升198点": {"score": 952, "attr": {"strength_base": 198}}, "断流心岩·戒指(根骨) 根骨提升198点": {"score": 952, "attr": {"spirit_base": 198}}, "断流心岩·戒指(破招) 破招等级提升799点": {"score": 783, "attr": {"surplus": 799}}, "断流心岩·戒指(内伤) 内功攻击提升430点": {"score": 783, "attr": {"magical_attack_power_base": 430}}, "断流心岩·戒指(外伤) 外功攻击提升360点": {"score": 783, "attr": {"physical_attack_power_base": 360}}, "断流心岩·戒指(身法) 身法提升179点": {"score": 783, "attr": {"agility_base": 179}}, "断流心岩·戒指(元气) 元气提升179点": {"score": 783, "attr": {"spunk_base": 179}}, "断流心岩·戒指(力道) 力道提升179点": {"score": 783, "attr": {"strength_base": 179}}, "断流心岩·戒指(根骨) 根骨提升179点": {"score": 783, "attr": {"spirit_base": 179}}, "断流心岩·戒指(破招) 破招等级提升723点": {"score": 644, "attr": {"surplus": 723}}, "断流心岩·戒指(内伤) 内功攻击提升389点": {"score": 644, "attr": {"magical_attack_power_base": 389}}, "断流心岩·戒指(外伤) 外功攻击提升326点": {"score": 644, "attr": {"physical_attack_power_base": 326}}, "断流心岩·戒指(身法) 身法提升162点": {"score": 644, "attr": {"agility_base": 162}}, "断流心岩·戒指(元气) 元气提升162点": {"score": 644, "attr": {"spunk_base": 162}}, "断流心岩·戒指(力道) 力道提升162点": {"score": 644, "attr": {"strength_base": 162}}, "断流心岩·戒指(根骨) 根骨提升162点": {"score": 644, "attr": {"spirit_base": 162}}}
|
qt/assets/enchants/secondary_weapon
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347597\u70b9": {"score": 952, "attr": {"weapon_damage_base": 597}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347475\u70b9": {"score": 952, "attr": {"magical_attack_power_base": 475}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347398\u70b9": {"score": 952, "attr": {"physical_attack_power_base": 398}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347540\u70b9": {"score": 783, "attr": {"weapon_damage_base": 540}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347430\u70b9": {"score": 783, "attr": {"magical_attack_power_base": 430}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347360\u70b9": {"score": 783, "attr": {"physical_attack_power_base": 360}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347489\u70b9": {"score": 644, "attr": {"weapon_damage_base": 489}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347389\u70b9": {"score": 644, "attr": {"magical_attack_power_base": 389}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347326\u70b9": {"score": 644, "attr": {"physical_attack_power_base": 326}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347298\u70b9": {"score": 475, "attr": {"weapon_damage_base": 298}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347237\u70b9": {"score": 475, "attr": {"magical_attack_power_base": 237}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347199\u70b9": {"score": 475, "attr": {"physical_attack_power_base": 199}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347270\u70b9": {"score": 391, "attr": {"weapon_damage_base": 270}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347215\u70b9": {"score": 391, "attr": {"magical_attack_power_base": 215}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347180\u70b9": {"score": 391, "attr": {"physical_attack_power_base": 180}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347244\u70b9": {"score": 322, "attr": {"weapon_damage_base": 244}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347194\u70b9": {"score": 322, "attr": {"magical_attack_power_base": 194}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347163\u70b9": {"score": 322, "attr": {"physical_attack_power_base": 163}}}
|
qt/assets/enchants/shoes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断浪·鞋·绣(急速) 加速提升883点": {"score": 952, "attr": {"haste_base": 883}}, "断浪·鞋·绣(破招) 破招提升883点": {"score": 952, "attr": {"surplus": 883}}, "断浪·鞋·绣(内攻) 内功攻击提升475点": {"score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·鞋·绣(外攻) 外功攻击提升398点": {"score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·鞋·绣(急速) 加速提升799点": {"score": 783, "attr": {"haste_base": 799}}, "断浪·鞋·绣(破招) 破招提升799点": {"score": 783, "attr": {"surplus": 799}}, "断浪·鞋·绣(内功) 内功攻击提升430点": {"score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·鞋·绣(外攻) 外功攻击提升360点": {"score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·鞋·绣(急速) 加速提升723点": {"score": 644, "attr": {"haste_base": 723}}, "断浪·鞋·绣(破招) 破招提升723点": {"score": 644, "attr": {"surplus": 723}}, "断浪·鞋·绣(内功) 内功攻击提升389点": {"score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·鞋·绣(外攻) 外功攻击提升326点": {"score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·鞋·染(急速) 加速提升442点": {"score": 475, "attr": {"haste_base": 442}}, "断浪·鞋·染(破招) 破招提升442点": {"score": 475, "attr": {"surplus": 442}}, "断浪·鞋·染(内攻) 内功攻击提升237点": {"score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·鞋·染(外攻) 外功攻击提升199点": {"score": 475, "attr": {"physical_attack_power_base": 199}}, "断浪·鞋·染(急速) 加速提升400点": {"score": 391, "attr": {"haste_base": 400}}, "断浪·鞋·染(破招) 破招提升400点": {"score": 391, "attr": {"surplus": 400}}, "断浪·鞋·染(内功) 内功攻击提升215点": {"score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·鞋·染(外攻) 外功攻击提升180点": {"score": 391, "attr": {"physical_attack_power_base": 180}}, "连雾·鞋·内攻 鞋子内功攻击提高190": {"score": 380, "attr": {"magical_attack_power_base": 190}}, "连雾·鞋·外攻 鞋子外功攻击提高159": {"score": 380, "attr": {"physical_attack_power_base": 159}}, "连雾·鞋·破招 鞋子破招等级提高353": {"score": 380, "attr": {"surplus": 353}}, "连雾·鞋·急速 鞋子加速等级提高353": {"score": 380, "attr": {"haste_base": 353}}, "断浪·鞋·染(急速) 加速提升362点": {"score": 322, "attr": {"haste_base": 362}}, "断浪·鞋·染(破招) 破招提升362点": {"score": 322, "attr": {"surplus": 362}}, "断浪·鞋·染(内功) 内功攻击提升194点": {"score": 322, "attr": {"magical_attack_power_base": 194}}, "断浪·鞋·染(外攻) 外功攻击提升163点": {"score": 322, "attr": {"physical_attack_power_base": 163}}, "连雾·鞋·内功 鞋子内功攻击提高172": {"score": 313, "attr": {"magical_attack_power_base": 172}}, "连雾·鞋·外功 鞋子外功攻击提高144": {"score": 313, "attr": {"physical_attack_power_base": 144}}, "连雾·鞋·破招 鞋子破招等级提高320": {"score": 313, "attr": {"surplus": 320}}, "连雾·鞋·急速 鞋子加速等级提高320": {"score": 313, "attr": {"haste_base": 320}}, "连雾·鞋·内功 鞋子内功攻击提高156": {"score": 258, "attr": {"magical_attack_power_base": 156}}, "连雾·鞋·外功 鞋子外功攻击提高130": {"score": 258, "attr": {"physical_attack_power_base": 130}}, "连雾·鞋·破招 鞋子破招等级提高289": {"score": 258, "attr": {"surplus": 289}}, "连雾·鞋·急速 鞋子加速等级提高289": {"score": 258, "attr": {"haste_base": 289}}}
|
qt/assets/enchants/tertiary_weapon
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断流心岩·暗器(加速) 加速提升883点": {"score": 952, "attr": {"haste_base": 883}}, "断流心岩·暗器(内破) 内功破防等级提升883点": {"score": 952, "attr": {"magical_overcome_base": 883}}, "断流心岩·暗器(外破) 外功破防等级提升883点": {"score": 952, "attr": {"physical_overcome_base": 883}}, "断流心岩·暗器(身法) 身法提升198点": {"score": 952, "attr": {"agility_base": 198}}, "断流心岩·暗器(元气) 元气提升198点": {"score": 952, "attr": {"spunk_base": 198}}, "断流心岩·暗器(力道) 力道提升198点": {"score": 952, "attr": {"strength_base": 198}}, "断流心岩·暗器(根骨) 根骨提升198点": {"score": 952, "attr": {"spirit_base": 198}}, "断流心岩·暗器(加速) 加速提升799点": {"score": 783, "attr": {"haste_base": 799}}, "断流心岩·暗器(内破) 内功破防等级提升799点": {"score": 783, "attr": {"magical_overcome_base": 799}}, "断流心岩·暗器(外破) 外功破防等级提升799点": {"score": 783, "attr": {"physical_overcome_base": 799}}, "断流心岩·暗器(身法) 身法提升179点": {"score": 783, "attr": {"agility_base": 179}}, "断流心岩·暗器(元气) 元气提升179点": {"score": 783, "attr": {"spunk_base": 179}}, "断流心岩·暗器(力道) 力道提升179点": {"score": 783, "attr": {"strength_base": 179}}, "断流心岩·暗器(根骨) 根骨提升179点": {"score": 783, "attr": {"spirit_base": 179}}, "断流心岩·暗器(加速) 加速提升723点": {"score": 644, "attr": {"haste_base": 723}}, "断流心岩·暗器(内破) 内功破防等级提升723点": {"score": 644, "attr": {"magical_overcome_base": 723}}, "断流心岩·暗器(外破) 外功破防等级提升723点": {"score": 644, "attr": {"physical_overcome_base": 723}}, "断流心岩·暗器(身法) 身法提升162点": {"score": 644, "attr": {"agility_base": 162}}, "断流心岩·暗器(元气) 元气提升162点": {"score": 644, "attr": {"spunk_base": 162}}, "断流心岩·暗器(力道) 力道提升162点": {"score": 644, "attr": {"strength_base": 162}}, "断流心岩·暗器(根骨) 根骨提升162点": {"score": 644, "attr": {"spirit_base": 162}}}
|
qt/assets/enchants/wrist
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"断浪·腕·绣(无双) 无双等级提升883点": {"score": 952, "attr": {"strain_base": 883}}, "断浪·腕·绣(会心) 全会心提升883点": {"score": 952, "attr": {"all_critical_strike_base": 883}}, "断浪·腕·绣(内破) 内功破防等级提升883点": {"score": 952, "attr": {"magical_overcome_base": 883}}, "断浪·腕·绣(外破) 外功破防等级提升883点": {"score": 952, "attr": {"physical_overcome_base": 883}}, "断浪·腕·绣(根骨) 根骨提升198点": {"score": 952, "attr": {"spirit_base": 198}}, "断浪·腕·绣(力道) 力道提升198点": {"score": 952, "attr": {"strength_base": 198}}, "断浪·腕·绣(元气) 元气提升198点": {"score": 952, "attr": {"spunk_base": 198}}, "断浪·腕·绣(身法) 身法提升198点": {"score": 952, "attr": {"agility_base": 198}}, "断浪·腕·绣(无双) 无双等级提升799点": {"score": 783, "attr": {"strain_base": 799}}, "断浪·腕·绣(会心) 全会心提升799点": {"score": 783, "attr": {"all_critical_strike_base": 799}}, "断浪·腕·绣(内破) 内功破防等级提升799点": {"score": 783, "attr": {"magical_overcome_base": 799}}, "断浪·腕·绣(外破) 外功破防等级提升799点": {"score": 783, "attr": {"physical_overcome_base": 799}}, "断浪·腕·绣(根骨) 根骨提升179点": {"score": 783, "attr": {"spirit_base": 179}}, "断浪·腕·绣(力道) 力道提升179点": {"score": 783, "attr": {"strength_base": 179}}, "断浪·腕·绣(元气) 元气提升179点": {"score": 783, "attr": {"spunk_base": 179}}, "断浪·腕·绣(身法) 身法提升179点": {"score": 783, "attr": {"agility_base": 179}}, "断浪·腕·绣(无双) 无双等级提升723点": {"score": 644, "attr": {"strain_base": 723}}, "断浪·腕·绣(会心) 全会心提升723点": {"score": 644, "attr": {"all_critical_strike_base": 723}}, "断浪·腕·绣(内破) 内功破防等级提升723点": {"score": 644, "attr": {"magical_overcome_base": 723}}, "断浪·腕·绣(外破) 外功破防等级提升723点": {"score": 644, "attr": {"physical_overcome_base": 723}}, "断浪·腕·绣(根骨) 根骨提升162点": {"score": 644, "attr": {"spirit_base": 162}}, "断浪·腕·绣(力道) 力道提升162点": {"score": 644, "attr": {"strength_base": 162}}, "断浪·腕·绣(元气) 元气提升162点": {"score": 644, "attr": {"spunk_base": 162}}, "断浪·腕·绣(身法) 身法提升162点": {"score": 644, "attr": {"agility_base": 162}}, "断浪·腕·染(无双) 无双等级提升442点": {"score": 475, "attr": {"strain_base": 442}}, "断浪·腕·染(会心) 全会心提升442点": {"score": 475, "attr": {"all_critical_strike_base": 442}}, "断浪·腕·染(内破) 内功破防等级提升442点": {"score": 475, "attr": {"magical_overcome_base": 442}}, "断浪·腕·染(外破) 外功破防等级提升442点": {"score": 475, "attr": {"physical_overcome_base": 442}}, "断浪·腕·染(根骨) 根骨提升99点": {"score": 475, "attr": {"spirit_base": 99}}, "断浪·腕·染(力道) 力道提升99点": {"score": 475, "attr": {"strength_base": 99}}, "断浪·腕·染(元气) 元气提升99点": {"score": 475, "attr": {"spunk_base": 99}}, "断浪·腕·染(身法) 身法提升99点": {"score": 475, "attr": {"agility_base": 99}}, "断浪·腕·染(无双) 无双等级提升400点": {"score": 391, "attr": {"strain_base": 400}}, "断浪·腕·染(会心) 全会心提升400点": {"score": 391, "attr": {"all_critical_strike_base": 400}}, "断浪·腕·染(内破) 内功破防等级提升400点": {"score": 391, "attr": {"magical_overcome_base": 400}}, "断浪·腕·染(外破) 外功破防等级提升400点": {"score": 391, "attr": {"physical_overcome_base": 400}}, "断浪·腕·染(根骨) 根骨提升90点": {"score": 391, "attr": {"spirit_base": 90}}, "断浪·腕·染(力道) 力道提升90点": {"score": 391, "attr": {"strength_base": 90}}, "断浪·腕·染(元气) 元气提升90点": {"score": 391, "attr": {"spunk_base": 90}}, "断浪·腕·染(身法) 身法提升90点": {"score": 391, "attr": {"agility_base": 90}}, "连雾·腕·无双 护腕无双等级提高353": {"score": 380, "attr": {"strain_base": 353}}, "连雾·腕·内破 护腕内功破防等级提高353": {"score": 380, "attr": {"magical_overcome_base": 353}}, "连雾·腕·外破 护腕外功破防等级提高353": {"score": 380, "attr": {"physical_overcome_base": 353}}, "连雾·腕·会心 护腕全会心等级提高353": {"score": 380, "attr": {"all_critical_strike_base": 353}}, "断浪·腕·染(无双) 无双等级提升362点": {"score": 322, "attr": {"strain_base": 362}}, "断浪·腕·染(会心) 全会心提升362点": {"score": 322, "attr": {"all_critical_strike_base": 362}}, "断浪·腕·染(内破) 内功破防等级提升362点": {"score": 322, "attr": {"magical_overcome_base": 362}}, "断浪·腕·染(外破) 外功破防等级提升362点": {"score": 322, "attr": {"physical_overcome_base": 362}}, "��浪·腕·染(根骨) 根骨提升81点": {"score": 322, "attr": {"spirit_base": 81}}, "断浪·腕·染(力道) 力道提升81点": {"score": 322, "attr": {"strength_base": 81}}, "断浪·腕·染(元气) 元气提升81点": {"score": 322, "attr": {"spunk_base": 81}}, "断浪·腕·染(身法) 身法提升81点": {"score": 322, "attr": {"agility_base": 81}}, "连雾·腕·无双 护腕无双等级提高320": {"score": 313, "attr": {"strain_base": 320}}, "连雾·腕·内破 护腕内功破防等级提高320": {"score": 313, "attr": {"magical_overcome_base": 320}}, "连雾·腕·外破 护腕外功破防等级提高320": {"score": 313, "attr": {"physical_overcome_base": 320}}, "连雾·腕·会心 护腕全会心等级提高320": {"score": 313, "attr": {"all_critical_strike_base": 320}}, "连雾·腕·无双 护腕无双等级提高289": {"score": 258, "attr": {"strain_base": 289}}, "连雾·腕·内破 护腕内功破防等级提高289": {"score": 258, "attr": {"magical_overcome_base": 289}}, "连雾·腕·外破 护腕外功破防等级提高289": {"score": 258, "attr": {"physical_overcome_base": 289}}, "连雾·腕·会心 护腕全会心等级提高289": {"score": 258, "attr": {"all_critical_strike_base": 289}}}
|
qt/assets/equipments/belt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩腰带 (加速 破招) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"haste_base": 1542, "surplus": 771}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷腰带 () 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停腰带 (会心 破招) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "all_critical_strike_base": 3470, "surplus": 3085}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻腰带 (会心 破招) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微腰带 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "haste_base": 3421}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽腰带 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus": 3041}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合腰带 (会心 破招) 13950": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1521, "strain_base": 1330}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷带 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁带 (加速 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡带 (加速 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 2091, "strain_base": 760}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露腰带 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "haste_base": 3421}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣腰带 (破防 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英腰带 (破防 无双) 13950": {"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": {"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]}}, "灵源·休归腰带 (会心 无双) 13750": {"school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188]}}, "灵源·醉华腰带 () 13750": {"school": "药宗", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "191846", "set_attr": {}, "set_gain": {"2": [1910], "4": [2844]}}, "灵源·采芳腰带 (会心 无双) 13750": {"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": {"school": "衍天", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191844", "set_attr": {}, "set_gain": {"2": [1956], "4": [5321, 5322]}}, "灵源·歃血腰带 (会心 无双) 13750": {"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": "191843", "set_attr": {}, "set_gain": {"2": [1927], "4": [5037, 5038]}}, "灵源·风涛腰带 (会心 无双) 13750": {"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": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·清雨腰带 (会心) 13750": {"school": "长歌", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_critical_strike_base": 3372}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191840", "set_attr": {}, "set_gain": {"2": [1910], "4": [2211, 2212]}}, "灵源·识音腰带 (破防 无双) 13750": {"school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·空虏腰带 (无双) 13750": {"school": "苍云", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2810}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191838", "set_attr": {}, "set_gain": {"2": [1222], "4": [1976]}}, "灵源·肃晓腰带 (会心 无双) 13750": {"school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·启心腰带 (无双) 13750": {"school": "明教", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2248}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191836", "set_attr": {}, "set_gain": {"2": [801], "4": [1974]}}, "灵源·永狱腰带 (会心 无双) 13750": {"school": "明教", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": "191835", "set_attr": {}, "set_gain": {"2": [1922], "4": [948]}}, "灵源·一醉腰带 (会心 无双) 13750": {"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": "191834", "set_attr": {}, "set_gain": {"2": [1921], "4": [1548]}}, "灵源·窗寒腰带 (会心 无双) 13750": {"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": "191833", "set_attr": {}, "set_gain": {"2": [1920], "4": [818, 4347]}}, "灵源·闻箫腰带 (会心 无双) 13750": {"school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿腰带 (会心 无双) 13750": {"school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·云绕腰带 () 13750": {"school": "五毒", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "191830", "set_attr": {}, "set_gain": {"2": [1910], "4": [1972]}}, "灵源·萧疏腰带 (破防 无双) 13750": {"school": "五毒", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191829", "set_attr": {}, "set_gain": {"2": [1917], "4": [818, 4678]}}, "灵源·冷露腰带 (会心) 13750": {"school": "七秀", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_critical_strike_base": 3372}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191828", "set_attr": {}, "set_gain": {"2": [1910], "4": [1971]}}, "灵源·轻雪腰带 (破防 无双) 13750": {"school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547]}}, "灵源·暮鸿腰带 (会心 无双) 13750": {"school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818]}}, "灵源·期颐腰带 (会心 无双) 13750": {"school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·寒关腰带 (破招 无双) 13750": {"school": "天策", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 1873, "strain_base": 937}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191824", "set_attr": {}, "set_gain": {"2": [311], "4": [1973]}}, "灵源·断戍腰带 (会心 无双) 13750": {"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": "191823", "set_attr": {}, "set_gain": {"2": [1913], "4": [817]}}, "灵源·秋声腰带 (会心) 13750": {"school": "万花", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_critical_strike_base": 3372}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191822", "set_attr": {}, "set_gain": {"2": [1910], "4": [1970]}}, "灵源·月胧腰带 (会心 无双) 13750": {"school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·空法腰带 (无双) 13750": {"school": "少林", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2248}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191820", "set_attr": {}, "set_gain": {"2": [542], "4": [1975, 4517]}}, "灵源·寂行腰带 (会心 无双) 13750": {"school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "天岳腰带 (破招 无双) 12600": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 1373, "strain_base": 687}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "净溪腰带 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "翠林腰带 (破防 破招) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus": 2747}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月腰带 (破防 破招) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"haste_base": 1373, "surplus": 687}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融腰带 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫腰带 (会心 破招) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "all_critical_strike_base": 3090, "surplus": 2747}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满腰带 (会心 破招) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾腰带 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒腰带 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus": 2714}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书腰带 (破防 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠腰带 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月腰带 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus": 2714}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂腰带 (会心 破招) 12450": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1357, "strain_base": 1187}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔带 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞带 (加速 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华带 (加速 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1866, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎腰带 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野腰带 (破防 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓腰带 (破防 无双) 12450": {"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": {}}, "御厨腰带·星月万里 () 12300": {"school": "通用", "kind": "通用", "level": 12300, "max_strength": 0, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨腰带·刀功 (会心 破招) 12300": {"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": {"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": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨腰带·火候 (会心 破招) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "surplus": 2681}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "凌晓御厨腰带·刀功 (会心 破招) 12300": {"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": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨腰带·火候 (会心 破招) 12300": {"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": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨腰带·清蒸 (加速 无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1341, "strain_base": 1173}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨腰带·刀工 (会心 破招) 12300": {"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": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1341, "strain_base": 670, "surplus": 503}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "妙火御厨腰带·火候 (会心 破招) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "醉梦逍遥腰带·刀功 (会心 破招) 12300": {"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": {"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": {"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": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "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": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "瑶星御厨腰带·火候 (会心 破招) 12300": {"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": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨腰带·火候 (会心 破招) 12300": {"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": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨腰带·刀功 (会心 破招) 12300": {"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": {"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": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1341, "strain_base": 670}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "御赐御厨腰带·刀功 (会心 破招) 12300": {"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": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨腰带·火候 (会心 破招) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "surplus": 2681}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨腰带·清蒸 (加速 无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1341, "strain_base": 1173}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨腰带·火候 (会心 破招) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风腰带 (会心 无双) 12300": {"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], "4": [2568]}}, "寻踪觅宝·恨露腰带 (加速 破招 无双) 12300": {"school": "通用", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1341, "strain_base": 670, "surplus": 503}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "191818", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·争霜腰带 (加速) 12300": {"school": "通用", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "191817", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·屠云腰带 (加速 破招) 12300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "haste_base": 3017, "surplus": 2681}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪腰带 (加速 破招) 12300": {"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": {"school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188], "4": [1925]}}, "濯心·浅溪腰带 () 12300": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "190676", "set_attr": {}, "set_gain": {"2": [2844], "4": [1910]}}, "濯心·采青腰带 (会心 无双) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190674", "set_attr": {}, "set_gain": {"2": [5321, 5322], "4": [1956]}}, "濯心·寂青腰带 (会心 无双) 12300": {"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": "190673", "set_attr": {}, "set_gain": {"2": [5037, 5038], "4": [1927]}}, "濯心·盈怀腰带 (会心 无双) 12300": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190670", "set_attr": {}, "set_gain": {"2": [2211, 2212], "4": [1910]}}, "濯心·对酒腰带 (破防 无双) 12300": {"school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·封关腰带 (无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190668", "set_attr": {}, "set_gain": {"2": [1976], "4": [1222]}}, "濯心·弦夜腰带 (会心 无双) 12300": {"school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·乱云腰带 (无双) 12300": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2011}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190666", "set_attr": {}, "set_gain": {"2": [1974], "4": [801]}}, "濯心·影空腰带 (会心 无双) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": "190665", "set_attr": {}, "set_gain": {"2": [948], "4": [1922]}}, "濯心·心游腰带 (会心 无双) 12300": {"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": "190664", "set_attr": {}, "set_gain": {"2": [1548], "4": [1921]}}, "濯心·吟光腰带 (会心 无双) 12300": {"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": "190663", "set_attr": {}, "set_gain": {"2": [818, 4347], "4": [1920]}}, "濯心·霜故腰带 (会心 无双) 12300": {"school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼腰带 (会心 无双) 12300": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·云笼腰带 () 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22169], "set_id": "190660", "set_attr": {}, "set_gain": {"2": [1972], "4": [1910]}}, "濯心·凉秋腰带 (破防 无双) 12300": {"school": "五毒", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190659", "set_attr": {}, "set_gain": {"2": [818, 4678], "4": [1917]}}, "濯心·蹁跹腰带 (会心) 12300": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {"magical_critical_power_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190658", "set_attr": {}, "set_gain": {"2": [1971], "4": [1910]}}, "濯心·染妆腰带 (破防 无双) 12300": {"school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22169], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547], "4": [1916]}}, "濯心·深玄腰带 (会心 无双) 12300": {"school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22169], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818], "4": [1915]}}, "濯心·归心腰带 (会心 无双) 12300": {"school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·四野腰带 (破招 无双) 12300": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 1676, "strain_base": 838}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190654", "set_attr": {}, "set_gain": {"2": [1973], "4": [311]}}, "濯心·映寒腰带 (会心 无双) 12300": {"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": "190653", "set_attr": {}, "set_gain": {"2": [817], "4": [1913]}}, "濯心·照月腰带 (会心) 12300": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190652", "set_attr": {}, "set_gain": {"2": [1970], "4": [1910]}}, "濯心·松声腰带 (会心 无双) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·通明腰带 (无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2011}, "embed": {}, "gains": [], "special_enchant": [22169], "set_id": "190650", "set_attr": {}, "set_gain": {"2": [1975, 4517], "4": [542]}}, "濯心·莲台腰带 (会心 无双) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22169], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}}
|
qt/assets/equipments/bottoms
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩裤 (破招 无双) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 1928, "strain_base": 2203}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷裤 () 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停裤 (会心 无双) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "all_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻裤 (会心 无双) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1901, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微裤 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽裤 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合裤 (会心 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 3258, "surplus": 815}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·林谈下裳 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月下裳 (破防 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠下裳 (破防 无双) 13950": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 2715, "strain_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷裤 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "haste_base": 4888}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁裤 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 3258}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露裤 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_critical_strike_base": 4888}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣裤 (加速 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英裤 (加速 无双) 13950": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封裤 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 1717, "strain_base": 1962}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融裤 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫裤 (会心 无双) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "all_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满裤 (会心 无双) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾裤 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒裤 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠裤 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月裤 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂裤 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2908, "surplus": 727}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·大乐下裳 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配下裳 (破防 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓下裳 (破防 无双) 12450": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 2423, "strain_base": 1212}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔裤 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "haste_base": 4362}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞裤 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2908}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎裤 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_critical_strike_base": 4362}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野裤 (加速 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓裤 (加速 无双) 12450": {"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": {}}, "外功无封裤 (破防 会心 破招) 12100": {"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": {"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": {"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": {"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": {"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": {"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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩冠 (加速 破招) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"haste_base": 1983, "surplus": 992}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷冠 () 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 889}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停冠 (会心 破招) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 889, "magical_attack_power_base": 1731, "all_critical_strike_base": 4462, "surplus": 3966}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻冠 (会心 破招) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1955, "strain_base": 978, "surplus": 733}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微冠 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "haste_base": 4399}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽冠 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 2444, "strain_base": 1222}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·林谈冠 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_critical_strike_base": 4399}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月冠 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1955, "strain_base": 1711}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷冠 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "haste_base": 4399}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁冠 (加速 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "haste_base": 4399, "surplus": 3910}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡冠 (加速 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1955, "strain_base": 978}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露冠 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 877, "magical_critical_strike_base": 4399}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣冠 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 877, "magical_attack_power_base": 1707, "all_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [[15436, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英冠 (会心 无双) 13950": {"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": {"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]}}, "灵源·休归冠 (破防 破招) 13750": {"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": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188]}}, "灵源·醉华冠 () 13750": {"school": "药宗", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191846", "set_attr": {}, "set_gain": {"2": [1910], "4": [2844]}}, "灵源·采芳冠 (破防 破招) 13750": {"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": {"school": "衍天", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "surplus": 3854}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191844", "set_attr": {}, "set_gain": {"2": [1956], "4": [5321, 5322]}}, "灵源·歃血冠 (破防 破招) 13750": {"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": "191843", "set_attr": {}, "set_gain": {"2": [1927], "4": [5037, 5038]}}, "灵源·风涛冠 (破防 破招) 13750": {"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": {"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]}}, "灵源·清雨冠 () 13750": {"school": "长歌", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191840", "set_attr": {}, "set_gain": {"2": [1910], "4": [2211, 2212]}}, "灵源·识音冠 (破防 破招) 13750": {"school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·空虏冠 (加速 无双) 13750": {"school": "苍云", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"haste_base": 1927, "strain_base": 1686}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191838", "set_attr": {}, "set_gain": {"2": [1222], "4": [1976]}}, "灵源·肃晓冠 (破防 破招) 13750": {"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": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·启心冠 (加速 无双) 13750": {"school": "明教", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"haste_base": 1927, "strain_base": 963}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191836", "set_attr": {}, "set_gain": {"2": [801], "4": [1974]}}, "灵源·永狱冠 (破防 破招) 13750": {"school": "明教", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191835", "set_attr": {}, "set_gain": {"2": [1922], "4": [948]}}, "灵源·一醉冠 (破防 破招) 13750": {"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": "191834", "set_attr": {}, "set_gain": {"2": [1921], "4": [1548]}}, "灵源·窗寒冠 (破防 破招) 13750": {"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": "191833", "set_attr": {}, "set_gain": {"2": [1920], "4": [818, 4347]}}, "灵源·闻箫冠 (破防 破招) 13750": {"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": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿冠 (破防 破招) 13750": {"school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "surplus": 3854}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·云绕冠 () 13750": {"school": "五毒", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191830", "set_attr": {}, "set_gain": {"2": [1910], "4": [1972]}}, "灵源·萧疏冠 (破防 破招) 13750": {"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": "191829", "set_attr": {}, "set_gain": {"2": [1917], "4": [818, 4678]}}, "灵源·冷露冠 () 13750": {"school": "七秀", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191828", "set_attr": {}, "set_gain": {"2": [1910], "4": [1971]}}, "灵源·轻雪冠 (破防 破招) 13750": {"school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus": 3854}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547]}}, "灵源·暮鸿冠 (破防 破招) 13750": {"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": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818]}}, "灵源·期颐冠 (破防 破招) 13750": {"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": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·寒关冠 (无双) 13750": {"school": "天策", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2890}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191824", "set_attr": {}, "set_gain": {"2": [311], "4": [1973]}}, "灵源·断戍冠 (破防 破招) 13750": {"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": "191823", "set_attr": {}, "set_gain": {"2": [1913], "4": [817]}}, "灵源·秋声冠 () 13750": {"school": "万花", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 864}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191822", "set_attr": {}, "set_gain": {"2": [1910], "4": [1970]}}, "灵源·月胧冠 (破防 破招) 13750": {"school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "surplus": 3854}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·空法冠 (加速 无双) 13750": {"school": "少林", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"haste_base": 1927, "strain_base": 1686}, "embed": {}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191820", "set_attr": {}, "set_gain": {"2": [542], "4": [1975, 4517]}}, "灵源·寂行冠 (破防 破招) 13750": {"school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 864, "magical_attack_power_base": 1682, "magical_overcome_base": 4336, "surplus": 3854}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 11]], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封头饰 (破防 会心 无双) 13550": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封头饰 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防 会心 破招) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"haste_base": 1766, "surplus": 883}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融冠 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 792}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫冠 (会心 破招) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 792, "magical_attack_power_base": 1541, "all_critical_strike_base": 3973, "surplus": 3532}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满冠 (会心 破招) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1745, "strain_base": 872, "surplus": 654}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾冠 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "haste_base": 3926}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒冠 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书冠 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1745, "strain_base": 872, "surplus": 654}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠冠 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "haste_base": 3926}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月冠 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 2181, "strain_base": 1091}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·大乐冠 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_critical_strike_base": 3926}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配冠 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1745, "strain_base": 1527}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔冠 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "haste_base": 3926}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞冠 (加速 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "haste_base": 3926, "surplus": 3490}, "embed": {"magical_overcome_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华冠 (加速 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1745, "strain_base": 872}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎冠 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 782, "magical_critical_strike_base": 3926}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野冠 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 782, "magical_attack_power_base": 1523, "all_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓冠 (会心 无双) 12450": {"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": {}}, "濯心·猎风冠 (破防 破招) 12300": {"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], "4": [2568]}}, "寻踪觅宝·恨露帽 (加速 无双) 12300": {"school": "通用", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1724, "strain_base": 1508}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "191818", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·争霜帽 () 12300": {"school": "通用", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "191817", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·屠云帽 (会心 无双) 12300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "all_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪帽 (会心 无双) 12300": {"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": {"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": "190677", "set_attr": {}, "set_gain": {"2": [3188], "4": [1925]}}, "濯心·浅溪冠 () 12300": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190676", "set_attr": {}, "set_gain": {"2": [2844], "4": [1910]}}, "濯心·采青冠 (破防 破招) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "surplus": 3448}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190674", "set_attr": {}, "set_gain": {"2": [5321, 5322], "4": [1956]}}, "濯心·寂青冠 (破防 破招) 12300": {"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": "190673", "set_attr": {}, "set_gain": {"2": [5037, 5038], "4": [1927]}}, "濯心·盈怀冠 (破防 破招) 12300": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190670", "set_attr": {}, "set_gain": {"2": [2211, 2212], "4": [1910]}}, "濯心·对酒冠 (破防 破招) 12300": {"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": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·封关冠 (加速 无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1724, "strain_base": 1508}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190668", "set_attr": {}, "set_gain": {"2": [1976], "4": [1222]}}, "濯心·弦夜冠 (破防 破招) 12300": {"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": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·乱云冠 (加速 无双) 12300": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1724, "strain_base": 862}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190666", "set_attr": {}, "set_gain": {"2": [1974], "4": [801]}}, "濯心·影空冠 (破防 破招) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190665", "set_attr": {}, "set_gain": {"2": [948], "4": [1922]}}, "濯心·心游冠 (破防 破招) 12300": {"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": "190664", "set_attr": {}, "set_gain": {"2": [1548], "4": [1921]}}, "濯心·吟光冠 (破防 破招) 12300": {"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": "190663", "set_attr": {}, "set_gain": {"2": [818, 4347], "4": [1920]}}, "濯心·霜故冠 (破防 破招) 12300": {"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": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼冠 (破防 破招) 12300": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "surplus": 3448}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·云笼冠 () 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190660", "set_attr": {}, "set_gain": {"2": [1972], "4": [1910]}}, "濯心·凉秋冠 (破防 破招) 12300": {"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": "190659", "set_attr": {}, "set_gain": {"2": [818, 4678], "4": [1917]}}, "濯心·蹁跹冠 () 12300": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190658", "set_attr": {}, "set_gain": {"2": [1971], "4": [1910]}}, "濯心·染妆冠 (破防 破招) 12300": {"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": "190657", "set_attr": {}, "set_gain": {"2": [1547], "4": [1916]}}, "濯心·深玄冠 (破防 破招) 12300": {"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": "190656", "set_attr": {}, "set_gain": {"2": [818], "4": [1915]}}, "濯心·归心冠 (破防 破招) 12300": {"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": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·四野冠 (无双) 12300": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2586}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190654", "set_attr": {}, "set_gain": {"2": [1973], "4": [311]}}, "濯心·映寒冠 (破防 破招) 12300": {"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": "190653", "set_attr": {}, "set_gain": {"2": [817], "4": [1913]}}, "濯心·照月冠 () 12300": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 773}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190652", "set_attr": {}, "set_gain": {"2": [1970], "4": [1910]}}, "濯心·松声冠 (破防 破招) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "surplus": 3448}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·通明冠 (加速 无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1724, "strain_base": 1508}, "embed": {}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190650", "set_attr": {}, "set_gain": {"2": [1975, 4517], "4": [542]}}, "濯心·莲台冠 (破防 破招) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 773, "magical_attack_power_base": 1505, "magical_overcome_base": 3879, "surplus": 3448}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [[15436, 10]], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封头饰 (会心 破招 无双) 12100": {"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": {"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": {"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": {"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": {"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": {"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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩衣 (破招) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 4131}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷衣 (加速) 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "haste_base": 4958}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停衣 (破防 无双) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "magical_overcome_base": 4958, "strain_base": 4407}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻衣 (破防 无双) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 4073}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微衣 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽衣 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合衣 (会心 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 3258, "surplus": 815}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷衣 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "haste_base": 4888}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁衣 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡衣 (会心 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 2172, "strain_base": 1086}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露衫 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣衫 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus": 4344}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英衫 (破防 破招) 13950": {"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": {"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]}}, "灵源·休归衣 (会心 无双) 13750": {"school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188]}}, "灵源·醉华衣 (会心) 13750": {"school": "药宗", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_critical_strike_base": 4817}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191846", "set_attr": {}, "set_gain": {"2": [1910], "4": [2844]}}, "灵源·采芳衣 (会心 无双) 13750": {"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": {"school": "衍天", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "strain_base": 4282}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191844", "set_attr": {}, "set_gain": {"2": [1956], "4": [5321, 5322]}}, "灵源·歃血衣 (会心 无双) 13750": {"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": "191843", "set_attr": {}, "set_gain": {"2": [1927], "4": [5037, 5038]}}, "灵源·风涛衣 (会心 无双) 13750": {"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": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·清雨衣 (会心) 13750": {"school": "长歌", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_critical_strike_base": 4817}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191840", "set_attr": {}, "set_gain": {"2": [1910], "4": [2211, 2212]}}, "灵源·识音衣 (加速 无双) 13750": {"school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·空虏衣 (破招 无双) 13750": {"school": "苍云", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 1873, "strain_base": 2141}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191838", "set_attr": {}, "set_gain": {"2": [1222], "4": [1976]}}, "灵源·肃晓衣 (会心 无双) 13750": {"school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·启心衣 (破招 无双) 13750": {"school": "明教", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 2944, "strain_base": 1071}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191836", "set_attr": {}, "set_gain": {"2": [801], "4": [1974]}}, "灵源·永狱衣 (会心 无双) 13750": {"school": "明教", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191835", "set_attr": {}, "set_gain": {"2": [1922], "4": [948]}}, "灵源·一醉衣 (会心 无双) 13750": {"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": "191834", "set_attr": {}, "set_gain": {"2": [1921], "4": [1548]}}, "灵源·窗寒衣 (会心 无双) 13750": {"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": "191833", "set_attr": {}, "set_gain": {"2": [1920], "4": [818, 4347]}}, "灵源·闻箫衣 (会心 无双) 13750": {"school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿衣 (会心 无双) 13750": {"school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·云绕衣 (会心) 13750": {"school": "五毒", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_critical_strike_base": 4817}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191830", "set_attr": {}, "set_gain": {"2": [1910], "4": [1972]}}, "灵源·萧疏衣 (会心 无双) 13750": {"school": "五毒", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "strain_base": 4282}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191829", "set_attr": {}, "set_gain": {"2": [1917], "4": [818, 4678]}}, "灵源·冷露衣 (会心) 13750": {"school": "七秀", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_critical_strike_base": 4817}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191828", "set_attr": {}, "set_gain": {"2": [1910], "4": [1971]}}, "灵源·轻雪衣 (加速 无双) 13750": {"school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_attack_power_base": 1869, "haste_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547]}}, "灵源·暮鸿衣 (会心 无双) 13750": {"school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818]}}, "灵源·期颐衣 (会心 无双) 13750": {"school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "strain_base": 4282}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·寒关衣 (加速 无双) 13750": {"school": "天策", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"haste_base": 2141, "strain_base": 1071}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191824", "set_attr": {}, "set_gain": {"2": [311], "4": [1973]}}, "灵源·断戍衣 (会心 无双) 13750": {"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": "191823", "set_attr": {}, "set_gain": {"2": [1913], "4": [817]}}, "灵源·秋声衣 (会心) 13750": {"school": "万花", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 960, "magical_critical_strike_base": 4817}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191822", "set_attr": {}, "set_gain": {"2": [1910], "4": [1970]}}, "灵源·月胧衣 (会心 无双) 13750": {"school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "strain_base": 4282}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵��·空法衣 (破招 无双) 13750": {"school": "少林", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 2676, "strain_base": 1338}, "embed": {}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191820", "set_attr": {}, "set_gain": {"2": [542], "4": [1975, 4517]}}, "灵源·寂行衣 (会心 无双) 13750": {"school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 960, "magical_attack_power_base": 1869, "magical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 11]], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "雪藏衣 (破招) 12600": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 3679}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融衣 (加速) 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "haste_base": 4415}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫衣 (破防 无双) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "magical_overcome_base": 4415, "strain_base": 3924}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满衣 (破防 无双) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 3635}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾衣 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒衣 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书衣 (破防 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 3635}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠衣 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月衣 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"all_critical_strike_base": 161, "all_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂衣 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2908, "surplus": 727}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔衣 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "haste_base": 4362}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞衣 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华衣 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1939, "strain_base": 969}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎衫 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野衫 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓衫 (破防 破招) 12450": {"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": {"school": "通用", "kind": "通用", "level": 12300, "max_strength": 0, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": null, "set_attr": {}, "set_gain": {}}, "梧风御厨上衣·刀功 (破防 无双) 12300": {"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": {"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": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨上衣·火候 (破防 无双) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "strain_base": 3831}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "凌晓御厨上衣·刀功 (破防 无双) 12300": {"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": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨上衣·火候 (破防 无双) 12300": {"school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨上衣·清蒸 (无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 3591}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨上衣·刀工 (破防 无双) 12300": {"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": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2873, "surplus": 718}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "妙火御厨上衣·火候 (破防 无双) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "醉梦逍遥上衣·刀功 (破防 无双) 12300": {"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": {"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": {"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": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "strain_base": 3831}, "embed": {"spunk_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "瑶星御厨上衣·水煮 (会心) 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "瑶星御厨上衣·火候 (破防 无双) 12300": {"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": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨上衣·火候 (破防 无双) 12300": {"school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spirit_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨上衣·刀功 (破防 无双) 12300": {"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": {"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": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 2394, "strain_base": 1197}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "御赐御厨上衣·刀功 (破防 无双) 12300": {"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": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨上衣·火候 (破防 无双) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "strain_base": 3831}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨上衣·清蒸 (破招 无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 1915, "strain_base": 958}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨上衣·火候 (破防 无双) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_overcome_base": 4309, "strain_base": 3831}, "embed": {"spunk_base": 36, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "濯心·猎风衣 (会心 无双) 12300": {"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], "4": [2568]}}, "寻踪觅宝·恨露衣 (加速 无双) 12300": {"school": "通用", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1915, "strain_base": 958}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "191818", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·争霜衣 (会心) 12300": {"school": "通用", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "191817", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·屠云衣 (加速 破招) 12300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "haste_base": 4309, "surplus": 3831}, "embed": {"spunk_base": 36, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪衣 (加速 破招) 12300": {"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": {"school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188], "4": [1925]}}, "濯心·浅溪衣 (会心) 12300": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190676", "set_attr": {}, "set_gain": {"2": [2844], "4": [1910]}}, "濯心·采青衣 (会心 无双) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "strain_base": 3831}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190674", "set_attr": {}, "set_gain": {"2": [5321, 5322], "4": [1956]}}, "濯心·寂青衣 (会心 无双) 12300": {"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": "190673", "set_attr": {}, "set_gain": {"2": [5037, 5038], "4": [1927]}}, "濯心·盈怀衣 (会心 无双) 12300": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190670", "set_attr": {}, "set_gain": {"2": [2211, 2212], "4": [1910]}}, "濯心·对酒衣 (加速 无双) 12300": {"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": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·封关衣 (破招 无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 1676, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190668", "set_attr": {}, "set_gain": {"2": [1976], "4": [1222]}}, "濯心·弦夜衣 (会心 无双) 12300": {"school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·乱云衣 (破招 无双) 12300": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 2634, "strain_base": 958}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190666", "set_attr": {}, "set_gain": {"2": [1974], "4": [801]}}, "濯心·影空衣 (会心 无双) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190665", "set_attr": {}, "set_gain": {"2": [948], "4": [1922]}}, "濯心·心游衣 (会心 无双) 12300": {"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": "190664", "set_attr": {}, "set_gain": {"2": [1548], "4": [1921]}}, "濯心·吟光衣 (会心 无双) 12300": {"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": "190663", "set_attr": {}, "set_gain": {"2": [818, 4347], "4": [1920]}}, "濯心·霜故衣 (会心 无双) 12300": {"school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼衣 (会心 无双) 12300": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·云笼衣 (会心) 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190660", "set_attr": {}, "set_gain": {"2": [1972], "4": [1910]}}, "濯心·凉秋衣 (加速 无双) 12300": {"school": "五毒", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "haste_base": 4309, "strain_base": 3831}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190659", "set_attr": {}, "set_gain": {"2": [818, 4678], "4": [1917]}}, "濯心·蹁跹衣 (会心) 12300": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"magical_critical_power_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190658", "set_attr": {}, "set_gain": {"2": [1971], "4": [1910]}}, "濯心·染妆衣 (加速 无双) 12300": {"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": "190657", "set_attr": {}, "set_gain": {"2": [1547], "4": [1916]}}, "濯心·深玄衣 (会心 无双) 12300": {"school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818], "4": [1915]}}, "濯心·归心衣 (会心 无双) 12300": {"school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "strain_base": 3831}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·四野衣 (加速 无双) 12300": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1915, "strain_base": 958}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190654", "set_attr": {}, "set_gain": {"2": [1973], "4": [311]}}, "濯心·映寒衣 (会心 无双) 12300": {"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": "190653", "set_attr": {}, "set_gain": {"2": [817], "4": [1913]}}, "濯心·照月衣 (会心) 12300": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 859, "magical_critical_strike_base": 4309}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190652", "set_attr": {}, "set_gain": {"2": [1970], "4": [1910]}}, "濯心·松声衣 (会心 无双) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "strain_base": 3831}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·通明衣 (破招 无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 2394, "strain_base": 1197}, "embed": {}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190650", "set_attr": {}, "set_gain": {"2": [1975, 4517], "4": [542]}}, "濯心·莲台衣 (会心 无双) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 859, "magical_attack_power_base": 1672, "magical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"magical_critical_strike_base": 161, "magical_critical_power_base": 161}, "gains": [], "special_enchant": [[22151, 10]], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}}
|
qt/assets/equipments/necklace
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"远影链 (加速 无双) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"haste_base": 1102, "strain_base": 964}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离链 () 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_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": {}}, "寒霖链 (破防 破招) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1629, "strain_base": 407}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷链 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁链 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡链 (会心 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1086, "strain_base": 950}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露链 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣链 (破防 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英链 (破防 无双) 13950": {"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": {}}, "外功无封项链 (会心 破招 无双) 13550": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1036, "strain_base": 906}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离链 () 13300": {"school": "通用", "kind": "治疗", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 13300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_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": {}}, "寒霖链 (破防 破招) 13300": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封项链 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"haste_base": 981, "strain_base": 858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "青味链 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林链 (破防 破招) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_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": {}}, "游零链 (破防 破招) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离链 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨链 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1212, "strain_base": 606}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠链 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月链 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂链 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1454, "strain_base": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔链 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞链 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华链 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎链 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野链 (破防 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓链 (破防 无双) 12450": {"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": {}}, "外功无封项链 (会心 会效 破招) 12100": {"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": {"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": {"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": {"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": {"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": {"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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"远影坠 (破招 无双) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 1102, "strain_base": 551}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离坠 (会心) 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_critical_strike_base": 2479}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "all_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 4, "base": {}, "magic": {"surplus": 1086, "strain_base": 543}, "embed": {}, "gains": ["6800-117"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "小荷翻 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {"spirit_base": 36}, "gains": ["6800-114"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "变星霜 (破防 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": ["6800-115"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池上雨 (破防 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷坠 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁坠 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "surplus": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡坠 (会心 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露坠 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣坠 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英坠 (破防 破招) 13950": {"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": {}}, "外功无封腰坠 (破防 会心 会效) 13550": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13300, "max_strength": 6, "base": {}, "magic": {"surplus": 1036, "strain_base": 518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离坠 (会心) 13300": {"school": "通用", "kind": "治疗", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_critical_strike_base": 2330}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 13300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "all_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 13300": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封腰坠 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 981, "strain_base": 491}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "青味坠 (会心) 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_critical_strike_base": 2207}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "欺林坠 (会心 无双) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "all_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游零坠 (会心 无双) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 969, "strain_base": 485}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "付离坠 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "逢杨坠 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒霖坠 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 485, "surplus": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠坠 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月坠 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂坠 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 4, "base": {}, "magic": {"surplus": 969, "strain_base": 485}, "embed": {}, "gains": ["6800-110"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "红萼枝 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": ["6800-107"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雁无意 (破防 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": ["6800-108"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮天阳 (破防 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔坠 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞坠 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华坠 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎坠 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野坠 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓坠 (破防 破招) 12450": {"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": {}}, "外功无封腰坠 (破防 会心 无双) 12100": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1752}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "顾月坠 (加速) 12000": {"school": "通用", "kind": "治疗", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 419, "haste_base": 2102}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "歌月坠 (破防 无双) 12000": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "淡月坠 (破防 无双) 12000": {"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
ADDED
The diff for this file is too large to render.
See raw diff
|
|
qt/assets/equipments/ring
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"越州戒 (破招 无双) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1358, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绵连戒 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叠武戒 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·林谈戒 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月戒 (破防 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠戒 (破防 无双) 13950": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 1629, "surplus": 407}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷戒 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁戒 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡戒 (会心 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1358, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露指环 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣指环 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_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": {"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": {"school": "通用", "kind": "防御", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strain_base": 1565}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨珠 (会心) 13400": {"school": "通用", "kind": "治疗", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 468, "magical_critical_strike_base": 2347}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨玉 (会心 无双) 13400": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 468, "magical_attack_power_base": 911, "all_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨戒 (会心 无双) 13400": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1454}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠戒 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月戒 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂戒 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·大乐戒 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配戒 (破防 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓戒 (破防 无双) 12450": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1454, "surplus": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔戒 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞戒 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华戒 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1212, "strain_base": 606}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎指环 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野指环 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓指环 (破防 破招) 12450": {"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": {}}, "梧风御厨戒指·刀功 (会心 无双) 12300": {"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": {"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": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "迎新御厨戒指·火候 (会心 无双) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "凌晓御厨戒指·刀功 (会心 无双) 12300": {"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": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "古意御厨戒指·火候 (会心 无双) 12300": {"school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨戒指·清蒸 (加速 无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 958, "strain_base": 838}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "塞雪御厨戒指·刀工 (会心 无双) 12300": {"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": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1436, "surplus": 359}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "妙火御厨戒指·火候 (会心 无双) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "醉梦逍遥戒指·刀功 (会心 无双) 12300": {"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": {"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": {"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": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "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": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "瑶星御厨戒指·火候 (会心 无双) 12300": {"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": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "霓裳御厨戒指·火候 (会心 无双) 12300": {"school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "灵虚御厨戒指·刀功 (会心 无双) 12300": {"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": {"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": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1436}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "御赐御厨戒指·刀功 (会心 无双) 12300": {"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": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "翡翠御厨戒指·火候 (会心 无双) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨戒指·清蒸 (无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1796}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "菩提御厨戒指·火候 (会心 无双) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}}
|
qt/assets/equipments/secondary_weapon
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"秋声 (会心 破招) 14150": {"school": "藏剑", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 4388, "weapon_damage_rand": 2926}, "magic": {"agility_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus": 6346}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苍松重剑 (会心 无双) 13950": {"school": "藏剑", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 4326, "weapon_damage_rand": 2884}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "听寥重剑 (破防 无双) 13950": {"school": "藏剑", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 4326, "weapon_damage_rand": 2884}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["2540"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "白石清泉 (破防 破招) 13950": {"school": "藏剑", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 4326, "weapon_damage_rand": 2884}, "magic": {"agility_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus": 6256}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "青衣子母剑·重 (破防 破招) 13200": {"school": "藏剑", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 4094, "weapon_damage_rand": 2729}, "magic": {"agility_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus": 5920}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": ["2584", "26060-4"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "柳岸 (会心 破招) 12600": {"school": "藏剑", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 3908, "weapon_damage_rand": 2605}, "magic": {"agility_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus": 5651}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天海长 (会心 无双) 12450": {"school": "藏剑", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3861, "weapon_damage_rand": 2574}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云中重剑 (破防 无双) 12450": {"school": "藏剑", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 3861, "weapon_damage_rand": 2574}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["2498"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "秋色浮光 (破防 破招) 12450": {"school": "藏剑", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3861, "weapon_damage_rand": 2574}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus": 5583}, "embed": {"agility_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·月疏风 (破防 无双) 12450": {"school": "藏剑", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 3861, "weapon_damage_rand": 2574}, "magic": {"agility_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "至尊熏猪腿·刀功 (破防 无双) 12300": {"school": "藏剑", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3814, "weapon_damage_rand": 2543}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "至尊熏猪腿·星月万里 () 12300": {"school": "通用", "kind": "通用", "level": 12300, "max_strength": 0, "base": {"weapon_damage_base": 3814, "weapon_damage_rand": 2543}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·晓山重剑 (会心 破招) 12300": {"school": "藏剑", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 3814, "weapon_damage_rand": 2543}, "magic": {"agility_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1194"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "测试武器 (破防 会心 加速) 11650": {"school": "藏剑", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 5018, "weapon_damage_rand": 3345}, "magic": {"agility_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 6047, "physical_overcome_base": 5291, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1142"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "螭尘 (破防 会心 加速) 11300": {"school": "藏剑", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 4867, "weapon_damage_rand": 3245}, "magic": {"agility_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5865, "physical_overcome_base": 5132, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1538", "1539", "2426", "1937"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金山月·夕照 (破防 会心 加速) 10900": {"school": "藏剑", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 4695, "weapon_damage_rand": 3130}, "magic": {"agility_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 5658, "physical_overcome_base": 4950, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1142"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "螭尘 (破防 会心 加速) 10800": {"school": "藏剑", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 4652, "weapon_damage_rand": 3101}, "magic": {"agility_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 5606, "physical_overcome_base": 4905, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1538", "1539", "2426", "1937"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金山月·夕照 (破防 会心 加速) 10300": {"school": "藏剑", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 4436, "weapon_damage_rand": 2957}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5346, "physical_overcome_base": 4678, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "螭尘 (破防 会心 加速) 10300": {"school": "藏剑", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 4436, "weapon_damage_rand": 2957}, "magic": {"agility_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 5346, "physical_overcome_base": 4678, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1538", "1539", "2426", "1937"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "螭尘 (破防 会心 加速) 9800": {"school": "藏剑", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 4221, "weapon_damage_rand": 2814}, "magic": {"agility_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 5087, "physical_overcome_base": 4451, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1538", "1539", "2426", "1937"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金山月·夕照 (破防 会心 加速) 9700": {"school": "藏剑", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 4178, "weapon_damage_rand": 2785}, "magic": {"agility_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 5035, "physical_overcome_base": 4405, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "螭尘 (破防 会心 加速) 9300": {"school": "藏剑", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 4005, "weapon_damage_rand": 2670}, "magic": {"agility_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4827, "physical_overcome_base": 4224, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": ["1538", "1539", "2426", "1937"], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金山月·夕照 (破防 会心 加速) 9100": {"school": "藏剑", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 3919, "weapon_damage_rand": 2613}, "magic": {"agility_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4723, "physical_overcome_base": 4133, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "agility_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/shoes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩靴 (破招) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 2892}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷靴 (会心) 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_critical_strike_base": 3470}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [33247], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停靴 (破防 破招) 14150": {"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": {"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": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus": 3085}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻靴 (破防 破招) 14150": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1521, "surplus": 760}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微靴 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "haste_base": 3421}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽靴 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus": 3041}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合靴 (会心 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷靴 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_critical_strike_base": 3421}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁靴 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡靴 (会心 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1521, "strain_base": 760, "surplus": 570}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露靴 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣靴 (加速 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "haste_base": 3421, "surplus": 3041}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英靴 (加速 破招) 13950": {"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": {"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]}}, "灵源·休归靴 (破防 无双) 13750": {"school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188]}}, "灵源·醉华靴 (加速) 13750": {"school": "药宗", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191846", "set_attr": {}, "set_gain": {"2": [1910], "4": [2844]}}, "灵源·采芳靴 (破防 无双) 13750": {"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": {"school": "衍天", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191844", "set_attr": {}, "set_gain": {"2": [1956], "4": [5321, 5322]}}, "灵源·歃血靴 (破防 无双) 13750": {"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": "191843", "set_attr": {}, "set_gain": {"2": [1927], "4": [5037, 5038]}}, "灵源·风涛靴 (破防 无双) 13750": {"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": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·清雨靴 (加速) 13750": {"school": "长歌", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191840", "set_attr": {}, "set_gain": {"2": [1910], "4": [2211, 2212]}}, "灵源·识音靴 (破防 无双) 13750": {"school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·空虏靴 (无双) 13750": {"school": "苍云", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2810}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191838", "set_attr": {}, "set_gain": {"2": [1222], "4": [1976]}}, "灵源·肃晓靴 (破防 无双) 13750": {"school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·启心靴 (破招 无双) 13750": {"school": "明教", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2248, "surplus": 562}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191836", "set_attr": {}, "set_gain": {"2": [801], "4": [1974]}}, "灵源·永狱靴 (破防 无双) 13750": {"school": "明教", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191835", "set_attr": {}, "set_gain": {"2": [1922], "4": [948]}}, "灵源·一醉靴 (破防 无双) 13750": {"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": "191834", "set_attr": {}, "set_gain": {"2": [1921], "4": [1548]}}, "灵源·窗寒靴 (破防 无双) 13750": {"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": "191833", "set_attr": {}, "set_gain": {"2": [1920], "4": [818, 4347]}}, "灵源·闻箫靴 (破防 无双) 13750": {"school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿靴 (破防 无双) 13750": {"school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·云绕靴 (加速) 13750": {"school": "五毒", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191830", "set_attr": {}, "set_gain": {"2": [1910], "4": [1972]}}, "灵源·萧疏靴 (破防 无双) 13750": {"school": "五毒", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191829", "set_attr": {}, "set_gain": {"2": [1917], "4": [818, 4678]}}, "灵源·冷露靴 (加速) 13750": {"school": "七秀", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191828", "set_attr": {}, "set_gain": {"2": [1910], "4": [1971]}}, "灵源·轻雪靴 (破防 无双) 13750": {"school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547]}}, "灵源·暮鸿靴 (破防 无双) 13750": {"school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818]}}, "灵源·期颐靴 (破防 无双) 13750": {"school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·寒关靴 (无双) 13750": {"school": "天策", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2810}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191824", "set_attr": {}, "set_gain": {"2": [311], "4": [1973]}}, "灵源·断戍靴 (破防 无双) 13750": {"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": "191823", "set_attr": {}, "set_gain": {"2": [1913], "4": [817]}}, "灵源·秋声靴 (加速) 13750": {"school": "万花", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191822", "set_attr": {}, "set_gain": {"2": [1910], "4": [1970]}}, "灵源·月胧靴 (破防 无双) 13750": {"school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "strain_base": 2998}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·空法靴 (破招 无双) 13750": {"school": "少林", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2248, "surplus": 562}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191820", "set_attr": {}, "set_gain": {"2": [542], "4": [1975, 4517]}}, "灵源·寂行靴 (破防 无双) 13750": {"school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_overcome_base": 3372, "strain_base": 2998}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封鞋 (会心 会效 无双) 13550": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封鞋 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心 破招 无双) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 2575}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融靴 (会心) 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_critical_strike_base": 3090}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [33247], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫靴 (破防 破招) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus": 2747}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满靴 (破防 破招) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1357, "surplus": 679}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾靴 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒靴 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书靴 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1357, "surplus": 679}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠靴 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月靴 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus": 2714}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂靴 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔靴 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_critical_strike_base": 3053}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞靴 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华靴 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1357, "strain_base": 679, "surplus": 509}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎靴 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野靴 (加速 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "haste_base": 3053, "surplus": 2714}, "embed": {"magical_attack_power_base": 86, "spunk_base": 36}, "gains": [], "special_enchant": [33247], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓靴 (加速 破招) 12450": {"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": {}}, "濯心·猎风靴 (破防 无双) 12300": {"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], "4": [2568]}}, "寻踪觅宝·恨露靴 (无双) 12300": {"school": "通用", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2011}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "191818", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·争霜靴 () 12300": {"school": "通用", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191817", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·屠云靴 (会心 无双) 12300": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "all_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"spunk_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪靴 (会心 无双) 12300": {"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": {"school": "刀宗", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188], "4": [1925]}}, "濯心·浅溪靴 (加速) 12300": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190676", "set_attr": {}, "set_gain": {"2": [2844], "4": [1910]}}, "濯心·采青靴 (破防 无双) 12300": {"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": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190674", "set_attr": {}, "set_gain": {"2": [5321, 5322], "4": [1956]}}, "濯心·寂青靴 (破防 无双) 12300": {"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": "190673", "set_attr": {}, "set_gain": {"2": [5037, 5038], "4": [1927]}}, "濯心·盈怀靴 (破防 无双) 12300": {"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": {"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": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190670", "set_attr": {}, "set_gain": {"2": [2211, 2212], "4": [1910]}}, "濯心·对酒靴 (破防 无双) 12300": {"school": "长歌", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·封关靴 (无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190668", "set_attr": {}, "set_gain": {"2": [1976], "4": [1222]}}, "濯心·弦夜靴 (破防 无双) 12300": {"school": "苍云", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·乱云靴 (破招 无双) 12300": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2011, "surplus": 503}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190666", "set_attr": {}, "set_gain": {"2": [1974], "4": [801]}}, "濯心·影空靴 (破防 无双) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190665", "set_attr": {}, "set_gain": {"2": [948], "4": [1922]}}, "濯心·心游靴 (破防 无双) 12300": {"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": "190664", "set_attr": {}, "set_gain": {"2": [1548], "4": [1921]}}, "濯心·吟光靴 (破防 无双) 12300": {"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": "190663", "set_attr": {}, "set_gain": {"2": [818, 4347], "4": [1920]}}, "濯心·霜故靴 (破防 无双) 12300": {"school": "唐门", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼靴 (破防 无双) 12300": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·云笼靴 (加速) 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190660", "set_attr": {}, "set_gain": {"2": [1972], "4": [1910]}}, "濯心·凉秋靴 (破防 无双) 12300": {"school": "五毒", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190659", "set_attr": {}, "set_gain": {"2": [818, 4678], "4": [1917]}}, "濯心·蹁跹靴 (加速) 12300": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190658", "set_attr": {}, "set_gain": {"2": [1971], "4": [1910]}}, "濯心·染妆靴 (破防 无双) 12300": {"school": "七秀", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547], "4": [1916]}}, "濯心·深玄靴 (破防 无双) 12300": {"school": "纯阳", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818], "4": [1915]}}, "濯心·归心靴 (破防 无双) 12300": {"school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·四野靴 (无双) 12300": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190654", "set_attr": {}, "set_gain": {"2": [1973], "4": [311]}}, "濯心·映寒靴 (破防 无双) 12300": {"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": "190653", "set_attr": {}, "set_gain": {"2": [817], "4": [1913]}}, "濯心·照月靴 (加速) 12300": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190652", "set_attr": {}, "set_gain": {"2": [1970], "4": [1910]}}, "濯心·松声靴 (破防 无双) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "strain_base": 2681}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·通明靴 (破招 无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2011, "surplus": 503}, "embed": {}, "gains": [], "special_enchant": [33247], "set_id": "190650", "set_attr": {}, "set_gain": {"2": [1975, 4517], "4": [542]}}, "濯心·莲台靴 (破防 无双) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "strain_base": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [33247], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封鞋 (破防 破招 无双) 12100": {"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": {"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": {"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": {"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": {"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": {"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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"泉璨囊 (加速 无双) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1303, "strain_base": 1140}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微囊 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽囊 (会心 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合囊 (会心 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 1955, "surplus": 489}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "穗语囊 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓盈囊 (破防 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枝绫囊 (破防 破招) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1303, "strain_base": 652}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷囊 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "haste_base": 2933}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁囊 (会心 无双) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡囊 (会心 无双) 13950": {"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": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露囊 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_critical_strike_base": 2933}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣囊 (加速 破招) 13950": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英囊 (加速 破招) 13950": {"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": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strain_base": 2347}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·诺 (加速) 13400": {"school": "通用", "kind": "治疗", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 561, "haste_base": 2817}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·望 (破防 无双) 13400": {"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": {"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": {"school": "通用", "kind": "元气", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·琢 (破防 无双) 13400": {"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": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封囊 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 12800": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strain_base": 2207}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "净溪囊 () 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 528}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "翠林囊 (破防 无双) 12600": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "碧月囊 (破防 无双) 12600": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1163, "strain_base": 1018}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾囊 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "haste_base": 2617}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒囊 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书囊 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1163, "strain_base": 1018}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠囊 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月囊 (会心 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂囊 (会心 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1745, "surplus": 436}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风染囊 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "度槐囊 (破防 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "溪柔囊 (破防 破招) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1163, "strain_base": 582}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔囊 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "haste_base": 2617}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞囊 (会心 无双) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华囊 (会心 无双) 12450": {"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": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎囊 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_critical_strike_base": 2617}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野囊 (加速 破招) 12450": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓囊 (加速 破招) 12450": {"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": {}}, "外功无封囊 (破防 会心 会效) 12100": {"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": {"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": {"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": {"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": {"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": {"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": {"school": "通用", "kind": "防御", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1682}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·蒲牢 (会心) 12000": {"school": "通用", "kind": "治疗", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 503, "magical_critical_strike_base": 2523}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·嘲风 (破防 无双) 12000": {"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": {"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": {"school": "通用", "kind": "元气", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·囚牛 (破防 无双) 12000": {"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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"风漩袖 (破招) 14150": {"school": "通用", "kind": "防御", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 2892}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "风荷袖 (会心) 14150": {"school": "通用", "kind": "治疗", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_critical_strike_base": 3470}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "风停袖 (破防 破招) 14150": {"school": "通用", "kind": "身法", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风烈袖 (破防 破招) 14150": {"school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus": 3085}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风绫袖 (破防 破招) 14150": {"school": "通用", "kind": "元气", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "风轻袖 (破防 破招) 14150": {"school": "通用", "kind": "根骨", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 692, "magical_attack_power_base": 1346, "magical_overcome_base": 3470, "surplus": 3085}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "泉璨护手 (破招 无双) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1901, "strain_base": 950}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉微护手 (会心) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_critical_strike_base": 3421}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉幽护手 (会心 破招) 13950": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺护手 (会心 破招) 13950": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉麓护手 (会心 破招) 13950": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "surplus": 3041}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉合护手 (会心 破招) 13950": {"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": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·吹霜护手 (破招 无双) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1521, "strain_base": 760}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·林谈护手 (会心) 13950": {"school": "通用", "kind": "治��", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_critical_strike_base": 3421}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·霄月护手 (破防 破招) 13950": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手 (破防 破招) 13950": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·断意护手 (破防 破招) 13950": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "surplus": 3041}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·意悠护手 (破防 破招) 13950": {"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_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "流晖护臂 (破防 破招) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "surplus": 3991, "physical_overcome_base": 3611}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "星风护臂 (无双) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6367}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "松辉护臂 (破防 破招) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2859, "surplus": 3991, "magical_overcome_base": 3611}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪遥护臂 (无双) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3472, "strain_base": 6367}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "灭影护腕 (破防 会心 破招) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2723, "surplus": 2281, "physical_overcome_base": 2471, "physical_critical_strike_base": 2471}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "双河护腕 (破防 会心 破招) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3267, "surplus": 2281, "magical_overcome_base": 2471, "all_critical_strike_base": 2471}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "逸遥护腕 (破防 会心 会效) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 2756, "physical_critical_strike_base": 2946, "physical_critical_power_base": 1901}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "道尘护腕 (破防 无双) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮峰护腕 (会心) 13950": {"school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "淮泽护腕 (破防 会心 会效) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 2756, "all_critical_strike_base": 2946, "all_critical_power_base": 1901}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "言寓护腕 (破防 无双) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2961, "magical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "雨杨护腕 (会心) 13950": {"school": "精简", "kind": "内功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3472, "all_critical_strike_base": 6748}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉檀护手 (无双) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2281}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "缀荷护手 (加速) 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "haste_base": 3421}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "踏雁护手 (破防 无双) 13950": {"school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦护手 (破防 无双) 13950": {"school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "壑云护手 (破防 无双) 13950": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "寒绡护手 (破防 无双) 13950": {"school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "齐峰护手 (加速 破招) 13950": {"school": "通用", "kind": "防御", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1521, "surplus": 1330}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "微露护手 () 13950": {"school": "通用", "kind": "治疗", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "风掣护手 (会心 无双) 13950": {"school": "通用", "kind": "身法", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行护手 (会心 无双) 13950": {"school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "开颐护手 (会心 无双) 13950": {"school": "通用", "kind": "元气", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 682, "magical_attack_power_base": 1327, "all_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "扬英护手 (会心 无双) 13950": {"school": "通用", "kind": "根骨", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 682, "magical_attack_power_base": 1327, "magical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·寂林护手 (会心 破招) 13750": {"school": "万灵", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191848", "set_attr": {}, "set_gain": {"2": [2568], "4": [5438]}}, "灵源·休归护手 (会心 破招) 13750": {"school": "刀宗", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191847", "set_attr": {}, "set_gain": {"2": [1925], "4": [3188]}}, "灵源·醉华护手 () 13750": {"school": "药宗", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191846", "set_attr": {}, "set_gain": {"2": [1910], "4": [2844]}}, "灵源·采芳护手 (会心 破招) 13750": {"school": "药宗", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "surplus": 2998}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191845", "set_attr": {}, "set_gain": {"2": [2125], "4": [2839, 2840]}}, "灵源·沉辉护手 (会心 破招) 13750": {"school": "衍天", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "surplus": 2998}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191844", "set_attr": {}, "set_gain": {"2": [1956], "4": [5321, 5322]}}, "灵源·歃血护手 (会心 破招) 13750": {"school": "凌雪", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191843", "set_attr": {}, "set_gain": {"2": [1927], "4": [5037, 5038]}}, "灵源·风涛护手 (会心 破招) 13750": {"school": "蓬莱", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191842", "set_attr": {}, "set_gain": {"2": [1926], "4": [4816, 4817]}}, "灵源·折霜护手 (会心 破招) 13750": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "灵源·清雨护手 (加速) 13750": {"school": "长歌", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "haste_base": 3372}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191840", "set_attr": {}, "set_gain": {"2": [1910], "4": [2211, 2212]}}, "灵源·识音护手 (会心 破招) 13750": {"school": "长歌", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "191839", "set_attr": {}, "set_gain": {"2": [1924], "4": [2209, 2210]}}, "灵源·空虏护手 (无双) 13750": {"school": "苍云", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2810}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191838", "set_attr": {}, "set_gain": {"2": [1222], "4": [1976]}}, "灵源·肃晓护手 (会心 破招) 13750": {"school": "苍云", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191837", "set_attr": {}, "set_gain": {"2": [1923], "4": [1932, 1933]}}, "灵源·启心护手 (破招 无双) 13750": {"school": "明教", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 1873, "strain_base": 937}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191836", "set_attr": {}, "set_gain": {"2": [801], "4": [1974]}}, "灵源·永狱护手 (会心 破招) 13750": {"school": "明教", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "191835", "set_attr": {}, "set_gain": {"2": [1922], "4": [948]}}, "灵源·一醉护手 (会心 破招) 13750": {"school": "丐帮", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191834", "set_attr": {}, "set_gain": {"2": [1921], "4": [1548]}}, "灵源·窗寒护手 (会心 破招) 13750": {"school": "藏剑", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191833", "set_attr": {}, "set_gain": {"2": [1920], "4": [818, 4347]}}, "灵源·闻箫护手 (会心 破招) 13750": {"school": "唐门", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191832", "set_attr": {}, "set_gain": {"2": [1919], "4": [946, 1969]}}, "灵源·惊宿护手 (会心 破招) 13750": {"school": "唐门", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191831", "set_attr": {}, "set_gain": {"2": [1918], "4": [947, 4120]}}, "灵源·云绕护手 () 13750": {"school": "五毒", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191830", "set_attr": {}, "set_gain": {"2": [1910], "4": [1972]}}, "灵源·萧疏护手 (会心 破招) 13750": {"school": "五毒", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "surplus": 2998}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191829", "set_attr": {}, "set_gain": {"2": [1917], "4": [818, 4678]}}, "灵源·冷露护手 () 13750": {"school": "七秀", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191828", "set_attr": {}, "set_gain": {"2": [1910], "4": [1971]}}, "灵源·轻雪护手 (会心 破招) 13750": {"school": "七秀", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "191827", "set_attr": {}, "set_gain": {"2": [1916], "4": [1547]}}, "灵源·暮鸿护手 (会心 破招) 13750": {"school": "纯阳", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"agility_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191826", "set_attr": {}, "set_gain": {"2": [1915], "4": [818]}}, "灵源·期颐护手 (会心 破招) 13750": {"school": "纯阳", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "surplus": 2998}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191825", "set_attr": {}, "set_gain": {"2": [1914], "4": [818, 4602]}}, "灵源·寒关护手 (破招 无双) 13750": {"school": "天策", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"surplus": 1311, "strain_base": 1499}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191824", "set_attr": {}, "set_gain": {"2": [311], "4": [1973]}}, "灵源·断戍护手 (会��� 破招) 13750": {"school": "天策", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191823", "set_attr": {}, "set_gain": {"2": [1913], "4": [817]}}, "灵源·秋声护手 (会心) 13750": {"school": "万花", "kind": "治疗", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spirit_base": 672, "magical_critical_strike_base": 3372}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191822", "set_attr": {}, "set_gain": {"2": [1910], "4": [1970]}}, "灵源·月胧护手 (会心 破招) 13750": {"school": "万花", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "surplus": 2998}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191821", "set_attr": {}, "set_gain": {"2": [1912], "4": [817, 1546]}}, "灵源·空法护手 (无双) 13750": {"school": "少林", "kind": "防御", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strain_base": 2810}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191820", "set_attr": {}, "set_gain": {"2": [542], "4": [1975, 4517]}}, "灵源·寂行护手 (会心 破招) 13750": {"school": "少林", "kind": "内功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"spunk_base": 672, "magical_attack_power_base": 1308, "magical_critical_strike_base": 3372, "surplus": 2998}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "191819", "set_attr": {}, "set_gain": {"2": [1911], "4": [818, 1147]}}, "外功无封护臂 (会心 会效 破招) 13550": {"school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus": 2031, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效) 13550": {"school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 4616, "physical_critical_power_base": 2769}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防) 13550": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效 破招) 13550": {"school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "surplus": 2031, "all_critical_strike_base": 3508, "all_critical_power_base": 1846}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效) 13550": {"school": "精简", "kind": "内功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2876, "all_critical_strike_base": 4616, "all_critical_power_base": 2769}, "embed": {"magical_overcome_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防) 13550": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "防御无封护臂 () 12800": {"school": "精简", "kind": "防御", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "治疗无封护臂 () 12800": {"school": "精简", "kind": "治疗", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心 会效) 12800": {"school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 2529, "physical_critical_strike_base": 2703, "physical_critical_power_base": 1744}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功��封护臂 (破防 会心) 12800": {"school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_critical_strike_base": 3575, "physical_overcome_base": 3575}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 12800": {"school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "physical_critical_strike_base": 6191}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心 会效) 12800": {"school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "magical_overcome_base": 2529, "all_critical_strike_base": 2703, "all_critical_power_base": 1744}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 会心) 12800": {"school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2717, "all_critical_strike_base": 3575, "magical_overcome_base": 3575}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心) 12800": {"school": "精简", "kind": "内功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3185, "all_critical_strike_base": 6191}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪藏袖 (破招) 12600": {"school": "通用", "kind": "防御", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 2575}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "雪融袖 (会心) 12600": {"school": "通用", "kind": "治疗", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 616, "magical_critical_strike_base": 3090}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "雪漫袖 (破防 破招) 12600": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪舞袖 (破防 破招) 12600": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪洁袖 (破防 破招) 12600": {"school": "通用", "kind": "元气", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 616, "magical_attack_power_base": 1199, "magical_overcome_base": 3090, "surplus": 2747}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "雪满袖 (破防 破招) 12600": {"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_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·星川护手 (破招 无双) 12450": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·团栾护手 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·角寒护手 (���心 破招) 12450": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠护手 (会心 破招) 12450": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·离声护手 (会心 破招) 12450": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·音书护手 (会心 破招) 12450": {"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": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖怜护手 (破招 无双) 12450": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖翠护手 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_critical_strike_base": 3053}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖月护手 (会心 破招) 12450": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静护手 (会心 破招) 12450": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖烟护手 (会心 破招) 12450": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "surplus": 2714}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖寂护手 (会心 破招) 12450": {"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": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·东令护手 (破招 无双) 12450": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1357, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·大乐护手 (会心) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_critical_strike_base": 3053}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·天配护手 (破防 破招) 12450": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花护手 (破防 破招) 12450": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·千世护手 (破防 破招) 12450": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "surplus": 2714}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·渐浓护手 (破防 破招) 12450": {"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_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "夙辰护腕 (破招) 12450": {"school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "surplus": 5683}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "熠羽护腕 (破招) 12450": {"school": "精简", "kind": "内功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3098, "surplus": 5683}, "embed": {"all_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "零雨护腕 (会心 无双) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "制野护腕 (破防 无双) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "雨膏护腕 (破防 破招) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "维则护腕 (会心 无双) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "风重护腕 (破防 无双) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "狂耳护腕 (破防 破招) 12450": {"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": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "尘屿护手 (无双) 12450": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "饮阔护手 (加速) 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "haste_base": 3053}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "染辞护手 (破防 无双) 12450": {"school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "agility_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃护手 (破防 无双) 12450": {"school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "沁渡护手 (破防 无双) 12450": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "朝华护手 (破防 无双) 12450": {"school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "隐犀护手 (加速 破招) 12450": {"school": "通用", "kind": "防御", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1357, "surplus": 1187}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "楚黎护手 () 12450": {"school": "通用", "kind": "治疗", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "商野护手 (会心 无双) 12450": {"school": "通用", "kind": "身法", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿护手 (会心 无双) 12450": {"school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "椴微护手 (会心 无双) 12450": {"school": "通用", "kind": "元气", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 609, "magical_attack_power_base": 1185, "all_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "池泓护手 (会心 无双) 12450": {"school": "通用", "kind": "根骨", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 609, "magical_attack_power_base": 1185, "magical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"magical_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "濯心·猎风护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "191806", "set_attr": {}, "set_gain": {"2": [5438], "4": [2568]}}, "寻踪觅宝·恨露袖 (无双) 12300": {"school": "通用", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "191818", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·争霜袖 (加速) 12300": {"school": "通用", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "191817", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·屠云袖 (破防 破招) 12300": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191816", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·惊风袖 (破防 破招) 12300": {"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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·泻雨袖 (破防 破招) 12300": {"school": "通用", "kind": "元气", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_overcome_base": 3017, "surplus": 2681}, "embed": {"magical_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191814", "set_attr": {}, "set_gain": {"4": [1194]}}, "寻踪觅宝·拂雪袖 (破防 破招) 12300": {"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_attack_power_base": 86, "magical_overcome_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "191813", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·锋虹护手 (会心 破招) 12300": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190677", "set_attr": {}, "set_gain": {"2": [3188], "4": [1925]}}, "濯心·浅溪护手 () 12300": {"school": "药宗", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190676", "set_attr": {}, "set_gain": {"2": [2844], "4": [1910]}}, "濯心·采青护手 (会心 破招) 12300": {"school": "药宗", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "surplus": 2681}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190675", "set_attr": {}, "set_gain": {"2": [2839, 2840], "4": [2125]}}, "濯心·天尘护手 (会心 破招) 12300": {"school": "衍天", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "surplus": 2681}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190674", "set_attr": {}, "set_gain": {"2": [5321, 5322], "4": [1956]}}, "濯心·寂青护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190673", "set_attr": {}, "set_gain": {"2": [5037, 5038], "4": [1927]}}, "濯心·盈怀护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190672", "set_attr": {}, "set_gain": {"2": [4816, 4817], "4": [1926]}}, "濯心·冲霄护手 (会心 破招) 12300": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "濯心·倾绝护手 (加速) 12300": {"school": "长歌", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "haste_base": 3017}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190670", "set_attr": {}, "set_gain": {"2": [2211, 2212], "4": [1910]}}, "濯心·对酒护手 (会心 破招) 12300": {"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": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "190669", "set_attr": {}, "set_gain": {"2": [2209, 2210], "4": [1924]}}, "濯心·封关护手 (无双) 12300": {"school": "苍云", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190668", "set_attr": {}, "set_gain": {"2": [1976], "4": [1222]}}, "濯心·弦夜护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190667", "set_attr": {}, "set_gain": {"2": [1932, 1933], "4": [1923]}}, "濯心·乱云护手 (破招 无双) 12300": {"school": "明教", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 1676, "strain_base": 838}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190666", "set_attr": {}, "set_gain": {"2": [1974], "4": [801]}}, "濯心·影空护手 (会心 破招) 12300": {"school": "明教", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "190665", "set_attr": {}, "set_gain": {"2": [948], "4": [1922]}}, "濯心·心游护手 (会心 破招) 12300": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190664", "set_attr": {}, "set_gain": {"2": [1548], "4": [1921]}}, "濯心·吟光护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190663", "set_attr": {}, "set_gain": {"2": [818, 4347], "4": [1920]}}, "濯心·霜故护手 (会心 破招) 12300": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190662", "set_attr": {}, "set_gain": {"2": [946, 1969], "4": [1919]}}, "濯心·南楼护手 (会心 破招) 12300": {"school": "唐门", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "physical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190661", "set_attr": {}, "set_gain": {"2": [947, 4120], "4": [1918]}}, "濯心·云笼护手 () 12300": {"school": "五毒", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190660", "set_attr": {}, "set_gain": {"2": [1972], "4": [1910]}}, "濯心·凉秋护手 (会心 破招) 12300": {"school": "五毒", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "surplus": 2681}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190659", "set_attr": {}, "set_gain": {"2": [818, 4678], "4": [1917]}}, "濯心·蹁跹护手 () 12300": {"school": "七秀", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [22166], "set_id": "190658", "set_attr": {}, "set_gain": {"2": [1971], "4": [1910]}}, "濯心·染妆护手 (会心 破招) 12300": {"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": {"spirit_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "190657", "set_attr": {}, "set_gain": {"2": [1547], "4": [1916]}}, "濯心·深玄护手 (会心 破招) 12300": {"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": {"agility_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190656", "set_attr": {}, "set_gain": {"2": [818], "4": [1915]}}, "濯心·归心护手 (会心 破招) 12300": {"school": "纯阳", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "surplus": 2681}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190655", "set_attr": {}, "set_gain": {"2": [818, 4602], "4": [1914]}}, "濯心·四野护手 (破招 无双) 12300": {"school": "天策", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"surplus": 1173, "strain_base": 1341}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190654", "set_attr": {}, "set_gain": {"2": [1973], "4": [311]}}, "濯心·映寒护手 (会心 破招) 12300": {"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": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [22166], "set_id": "190653", "set_attr": {}, "set_gain": {"2": [817], "4": [1913]}}, "濯心·照月护手 (会心) 12300": {"school": "万花", "kind": "治疗", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 601, "magical_critical_strike_base": 3017}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190652", "set_attr": {}, "set_gain": {"2": [1970], "4": [1910]}}, "濯心·松声护手 (会心 破招) 12300": {"school": "万花", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "surplus": 2681}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [22166], "set_id": "190651", "set_attr": {}, "set_gain": {"2": [817, 1546], "4": [1912]}}, "濯心·通明护手 (无双) 12300": {"school": "少林", "kind": "防御", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 2514}, "embed": {}, "gains": [], "special_enchant": [22166], "set_id": "190650", "set_attr": {}, "set_gain": {"2": [1975, 4517], "4": [542]}}, "濯心·莲台护手 (会心 破招) 12300": {"school": "少林", "kind": "内功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 601, "magical_attack_power_base": 1170, "magical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"spunk_base": 36, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [22166], "set_id": "190649", "set_attr": {}, "set_gain": {"2": [818, 1147], "4": [1911]}}, "外功无封护臂 (会心 会效 无双) 12100": {"school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3132, "physical_critical_power_base": 1649, "strain_base": 1814}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 12100": {"school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus": 3297, "physical_overcome_base": 3462}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (无双) 12100": {"school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "strain_base": 5853}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (会心 会效 无双) 12100": {"school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "all_critical_strike_base": 3132, "all_critical_power_base": 1649, "strain_base": 1814}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (破防 破招) 12100": {"school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2568, "surplus": 3297, "magical_overcome_base": 3462}, "embed": {"all_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}, "内功无封护臂 (无双) 12100": {"school": "精简", "kind": "内功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3011, "strain_base": 5853}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [22166], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/icon.ico
ADDED
|
qt/assets/stones.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"strength_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"strength_base": 22, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strength_base": 44, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strength_base": 66, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strength_base": 87, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strength_base": 109, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strength_base": 131, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}, "haste_base": {"physical_attack_power_base": {"1": {"level": "1", "attr": {"strength_base": 22, "haste_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strength_base": 44, "haste_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strength_base": 66, "haste_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strength_base": 87, "haste_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strength_base": 109, "haste_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strength_base": 131, "haste_base": 1170, "physical_attack_power_base": 1048}}}}}, "agility_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"agility_base": 22, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"agility_base": 44, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"agility_base": 66, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"agility_base": 87, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"agility_base": 109, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"agility_base": 131, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}, "haste_base": {"physical_attack_power_base": {"1": {"level": "1", "attr": {"agility_base": 22, "haste_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"agility_base": 44, "haste_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"agility_base": 66, "haste_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"agility_base": 87, "haste_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"agility_base": 109, "haste_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"agility_base": 131, "haste_base": 1170, "physical_attack_power_base": 1048}}}}}, "spirit_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"spirit_base": 44, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"spirit_base": 66, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"spirit_base": 87, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"spirit_base": 109, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"spirit_base": 131, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}, "magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}, "magical_overcome_base": {"1": {"level": "1", "attr": {"spirit_base": 22, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spirit_base": 44, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spirit_base": 66, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spirit_base": 87, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spirit_base": 109, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spirit_base": 131, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}}, "physical_attack_power_base": {"physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_attack_power_base": 44, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_attack_power_base": 87, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_attack_power_base": 131, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_attack_power_base": 175, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_attack_power_base": 218, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_attack_power_base": 262, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"physical_attack_power_base": 44, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"physical_attack_power_base": 87, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"physical_attack_power_base": 131, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"physical_attack_power_base": 175, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"physical_attack_power_base": 218, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"physical_attack_power_base": 262, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_attack_power_base": 44, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_attack_power_base": 87, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_attack_power_base": 131, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_attack_power_base": 175, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_attack_power_base": 218, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_attack_power_base": 262, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"physical_attack_power_base": 44, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"physical_attack_power_base": 87, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"physical_attack_power_base": 131, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"physical_attack_power_base": 175, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"physical_attack_power_base": 218, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"physical_attack_power_base": 262, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}}}, "physical_overcome_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_overcome_base": 98, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_overcome_base": 195, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_overcome_base": 293, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_overcome_base": 390, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_overcome_base": 488, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_overcome_base": 585, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"physical_overcome_base": 98, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"physical_overcome_base": 195, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"physical_overcome_base": 293, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"physical_overcome_base": 390, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"physical_overcome_base": 488, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"physical_overcome_base": 585, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_overcome_base": 98, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_overcome_base": 195, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_overcome_base": 293, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_overcome_base": 390, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_overcome_base": 488, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_overcome_base": 585, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"physical_overcome_base": 98, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"physical_overcome_base": 195, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"physical_overcome_base": 293, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"physical_overcome_base": 390, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"physical_overcome_base": 488, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"physical_overcome_base": 585, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}}, "physical_critical_strike_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"physical_critical_strike_base": 98, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"physical_critical_strike_base": 195, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"physical_critical_strike_base": 293, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"physical_critical_strike_base": 390, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"physical_critical_strike_base": 488, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"physical_critical_strike_base": 585, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}}, "physical_critical_power_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_critical_power_base": 98, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_critical_power_base": 195, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_critical_power_base": 293, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_critical_power_base": 390, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_critical_power_base": 488, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_critical_power_base": 585, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"physical_critical_power_base": 98, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"physical_critical_power_base": 195, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"physical_critical_power_base": 293, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"physical_critical_power_base": 390, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"physical_critical_power_base": 488, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"physical_critical_power_base": 585, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"physical_critical_power_base": 98, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"physical_critical_power_base": 195, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"physical_critical_power_base": 293, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"physical_critical_power_base": 390, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"physical_critical_power_base": 488, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"physical_critical_power_base": 585, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"physical_critical_power_base": 98, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"physical_critical_power_base": 195, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"physical_critical_power_base": 293, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"physical_critical_power_base": 390, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"physical_critical_power_base": 488, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"physical_critical_power_base": 585, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}}}, "surplus": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"surplus": 195, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"surplus": 293, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"surplus": 390, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"surplus": 488, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"surplus": 585, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}, "magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}, "magical_overcome_base": {"1": {"level": "1", "attr": {"surplus": 98, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"surplus": 195, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"surplus": 293, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"surplus": 390, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"surplus": 488, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"surplus": 585, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}, "haste_base": {"physical_attack_power_base": {"1": {"level": "1", "attr": {"surplus": 98, "haste_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"surplus": 195, "haste_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"surplus": 293, "haste_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"surplus": 390, "haste_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"surplus": 488, "haste_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"surplus": 585, "haste_base": 1170, "physical_attack_power_base": 1048}}}}}, "strain_base": {"physical_attack_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_attack_power_base": 87, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_attack_power_base": 175, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_attack_power_base": 262, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_attack_power_base": 349, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_attack_power_base": 436, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_attack_power_base": 524, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_attack_power_base": 87, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_attack_power_base": 175, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_attack_power_base": 262, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_attack_power_base": 349, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_attack_power_base": 436, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_attack_power_base": 524, "physical_overcome_base": 2340}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_attack_power_base": 87, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_attack_power_base": 175, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_attack_power_base": 262, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_attack_power_base": 349, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_attack_power_base": 436, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_attack_power_base": 524, "physical_critical_power_base": 2340}}}}, "physical_overcome_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_overcome_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_overcome_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_overcome_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_overcome_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_overcome_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_overcome_base": 1170, "weapon_damage_base": 1571}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_overcome_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_overcome_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_overcome_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_overcome_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_overcome_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_overcome_base": 1170, "physical_attack_power_base": 1048}}}, "physical_critical_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_overcome_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_overcome_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_overcome_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_overcome_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_overcome_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_overcome_base": 1170, "physical_critical_power_base": 2340}}}}, "physical_critical_power_base": {"weapon_damage_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_critical_power_base": 195, "weapon_damage_base": 262}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_critical_power_base": 390, "weapon_damage_base": 524}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_critical_power_base": 585, "weapon_damage_base": 786}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_critical_power_base": 780, "weapon_damage_base": 1048}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_critical_power_base": 975, "weapon_damage_base": 1309}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_critical_power_base": 1170, "weapon_damage_base": 1571}}}, "physical_overcome_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_critical_power_base": 195, "physical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_critical_power_base": 390, "physical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_critical_power_base": 585, "physical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_critical_power_base": 780, "physical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_critical_power_base": 975, "physical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_critical_power_base": 1170, "physical_overcome_base": 2340}}}, "physical_attack_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "physical_critical_power_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strain_base": 195, "physical_critical_power_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strain_base": 293, "physical_critical_power_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strain_base": 390, "physical_critical_power_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strain_base": 488, "physical_critical_power_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strain_base": 585, "physical_critical_power_base": 1170, "physical_attack_power_base": 1048}}}}, "magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}, "magical_overcome_base": {"1": {"level": "1", "attr": {"strain_base": 98, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"strain_base": 195, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"strain_base": 293, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"strain_base": 390, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"strain_base": 488, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"strain_base": 585, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}, "haste_base": {"physical_attack_power_base": {"1": {"level": "1", "attr": {"strain_base": 98, "haste_base": 195, "physical_attack_power_base": 175}}, "2": {"level": "2", "attr": {"strain_base": 195, "haste_base": 390, "physical_attack_power_base": 349}}, "3": {"level": "3", "attr": {"strain_base": 293, "haste_base": 585, "physical_attack_power_base": 524}}, "4": {"level": "4", "attr": {"strain_base": 390, "haste_base": 780, "physical_attack_power_base": 698}}, "5": {"level": "5", "attr": {"strain_base": 488, "haste_base": 975, "physical_attack_power_base": 873}}, "6": {"level": "6", "attr": {"strain_base": 585, "haste_base": 1170, "physical_attack_power_base": 1048}}}}}, "spunk_base": {"magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}, "magical_overcome_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"spunk_base": 44, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"spunk_base": 66, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"spunk_base": 87, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"spunk_base": 109, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"spunk_base": 131, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}, "physical_critical_strike_base": {"physical_critical_power_base": {"1": {"level": "1", "attr": {"spunk_base": 22, "physical_critical_strike_base": 195, "physical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"spunk_base": 44, "physical_critical_strike_base": 390, "physical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"spunk_base": 66, "physical_critical_strike_base": 585, "physical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"spunk_base": 87, "physical_critical_strike_base": 780, "physical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"spunk_base": 109, "physical_critical_strike_base": 975, "physical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"spunk_base": 131, "physical_critical_strike_base": 1170, "physical_critical_power_base": 2340}}}}}, "magical_attack_power_base": {"magical_overcome_base": {"magical_critical_power_base": {"1": {"level": "1", "attr": {"magical_attack_power_base": 52, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"magical_attack_power_base": 105, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"magical_attack_power_base": 157, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"magical_attack_power_base": 210, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"magical_attack_power_base": 262, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"magical_attack_power_base": 314, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"magical_attack_power_base": 52, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"magical_attack_power_base": 105, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"magical_attack_power_base": 157, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"magical_attack_power_base": 210, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"magical_attack_power_base": 262, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"magical_attack_power_base": 314, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}}, "magical_overcome_base": {"magical_attack_power_base": {"magical_critical_power_base": {"1": {"level": "1", "attr": {"magical_overcome_base": 98, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"magical_overcome_base": 195, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"magical_overcome_base": 293, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"magical_overcome_base": 390, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"magical_overcome_base": 488, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"magical_overcome_base": 585, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"magical_overcome_base": 98, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"magical_overcome_base": 195, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"magical_overcome_base": 293, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"magical_overcome_base": 390, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"magical_overcome_base": 488, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"magical_overcome_base": 585, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}}}, "magical_critical_strike_base": {"magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_attack_power_base": 105, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_attack_power_base": 210, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_attack_power_base": 314, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_attack_power_base": 419, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_attack_power_base": 524, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_attack_power_base": 629, "magical_critical_power_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}, "magical_critical_power_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_overcome_base": 195, "magical_critical_power_base": 390}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_overcome_base": 390, "magical_critical_power_base": 780}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_overcome_base": 585, "magical_critical_power_base": 1170}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_overcome_base": 780, "magical_critical_power_base": 1560}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_overcome_base": 975, "magical_critical_power_base": 1950}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_overcome_base": 1170, "magical_critical_power_base": 2340}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_critical_power_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_critical_power_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_critical_power_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_critical_power_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_critical_power_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_critical_power_base": 1170, "magical_attack_power_base": 1257}}}, "magical_overcome_base": {"1": {"level": "1", "attr": {"magical_critical_strike_base": 98, "magical_critical_power_base": 195, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"magical_critical_strike_base": 195, "magical_critical_power_base": 390, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"magical_critical_strike_base": 293, "magical_critical_power_base": 585, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"magical_critical_strike_base": 390, "magical_critical_power_base": 780, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"magical_critical_strike_base": 488, "magical_critical_power_base": 975, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"magical_critical_strike_base": 585, "magical_critical_power_base": 1170, "magical_overcome_base": 2340}}}}}, "magical_critical_power_base": {"magical_attack_power_base": {"magical_overcome_base": {"1": {"level": "1", "attr": {"magical_critical_power_base": 98, "magical_attack_power_base": 105, "magical_overcome_base": 390}}, "2": {"level": "2", "attr": {"magical_critical_power_base": 195, "magical_attack_power_base": 210, "magical_overcome_base": 780}}, "3": {"level": "3", "attr": {"magical_critical_power_base": 293, "magical_attack_power_base": 314, "magical_overcome_base": 1170}}, "4": {"level": "4", "attr": {"magical_critical_power_base": 390, "magical_attack_power_base": 419, "magical_overcome_base": 1560}}, "5": {"level": "5", "attr": {"magical_critical_power_base": 488, "magical_attack_power_base": 524, "magical_overcome_base": 1950}}, "6": {"level": "6", "attr": {"magical_critical_power_base": 585, "magical_attack_power_base": 629, "magical_overcome_base": 2340}}}}, "magical_overcome_base": {"magical_attack_power_base": {"1": {"level": "1", "attr": {"magical_critical_power_base": 98, "magical_overcome_base": 195, "magical_attack_power_base": 210}}, "2": {"level": "2", "attr": {"magical_critical_power_base": 195, "magical_overcome_base": 390, "magical_attack_power_base": 419}}, "3": {"level": "3", "attr": {"magical_critical_power_base": 293, "magical_overcome_base": 585, "magical_attack_power_base": 629}}, "4": {"level": "4", "attr": {"magical_critical_power_base": 390, "magical_overcome_base": 780, "magical_attack_power_base": 838}}, "5": {"level": "5", "attr": {"magical_critical_power_base": 488, "magical_overcome_base": 975, "magical_attack_power_base": 1048}}, "6": {"level": "6", "attr": {"magical_critical_power_base": 585, "magical_overcome_base": 1170, "magical_attack_power_base": 1257}}}}}}
|
qt/components/__init__.py
ADDED
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from PySide6.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QLabel, QAbstractItemView, QTableWidgetItem, \
|
2 |
+
QHeaderView, QSizePolicy
|
3 |
+
from PySide6.QtWidgets import QComboBox, QRadioButton, QTextBrowser, QTextEdit, QSpinBox, QListWidget, QTableWidget
|
4 |
+
from PySide6.QtCore import Qt
|
5 |
+
|
6 |
+
|
7 |
+
class LabelWidget(QWidget):
|
8 |
+
def __init__(self, label, info: str = ""):
|
9 |
+
super().__init__()
|
10 |
+
if info:
|
11 |
+
self.label = QLabel(f"{label} - {info}")
|
12 |
+
else:
|
13 |
+
self.label = QLabel(label)
|
14 |
+
|
15 |
+
def set_label(self, label):
|
16 |
+
self.label.setText(label)
|
17 |
+
|
18 |
+
|
19 |
+
class TableWithLabel(LabelWidget):
|
20 |
+
def __init__(self, label, row_count: int = 0, column_count: int = 0, headers: list = None):
|
21 |
+
super().__init__(label)
|
22 |
+
layout = QVBoxLayout()
|
23 |
+
self.setLayout(layout)
|
24 |
+
|
25 |
+
self.table = QTableWidget()
|
26 |
+
|
27 |
+
if row_count:
|
28 |
+
self.table.setRowCount(row_count)
|
29 |
+
if column_count:
|
30 |
+
self.table.setColumnCount(column_count)
|
31 |
+
if headers:
|
32 |
+
self.table.setColumnCount(len(headers))
|
33 |
+
self.table.setHorizontalHeaderLabels(headers)
|
34 |
+
|
35 |
+
self.table.setEditTriggers(QAbstractItemView.EditTrigger.NoEditTriggers)
|
36 |
+
|
37 |
+
layout.addWidget(self.label)
|
38 |
+
layout.addWidget(self.table)
|
39 |
+
|
40 |
+
layout.addStretch()
|
41 |
+
|
42 |
+
def set_content(self, content):
|
43 |
+
self.table.setRowCount(len(content))
|
44 |
+
|
45 |
+
for i, row in enumerate(content):
|
46 |
+
for j, e in enumerate(row):
|
47 |
+
self.table.setItem(i, j, QTableWidgetItem(e))
|
48 |
+
self.table.resizeColumnsToContents()
|
49 |
+
|
50 |
+
|
51 |
+
class ListWithLabel(LabelWidget):
|
52 |
+
def __init__(self, label, items: list = None):
|
53 |
+
super().__init__(label)
|
54 |
+
layout = QVBoxLayout()
|
55 |
+
self.setLayout(layout)
|
56 |
+
|
57 |
+
self.list = QListWidget()
|
58 |
+
self.list.setSelectionMode(QAbstractItemView.SelectionMode.MultiSelection)
|
59 |
+
|
60 |
+
if items:
|
61 |
+
self.list.addItems(items)
|
62 |
+
layout.addWidget(self.label)
|
63 |
+
layout.addWidget(self.list)
|
64 |
+
|
65 |
+
layout.addStretch()
|
66 |
+
|
67 |
+
def set_items(self, items):
|
68 |
+
self.list.clear()
|
69 |
+
self.list.addItems(items)
|
70 |
+
|
71 |
+
|
72 |
+
class ComboWithLabel(LabelWidget):
|
73 |
+
def __init__(self, label, info: str = "", items: list = None, index=None):
|
74 |
+
super().__init__(label, info)
|
75 |
+
layout = QVBoxLayout()
|
76 |
+
self.setLayout(layout)
|
77 |
+
|
78 |
+
self.combo_box = QComboBox()
|
79 |
+
if items:
|
80 |
+
self.combo_box.addItems(items)
|
81 |
+
if index:
|
82 |
+
self.combo_box.setCurrentIndex(index)
|
83 |
+
|
84 |
+
layout.addWidget(self.label)
|
85 |
+
layout.addWidget(self.combo_box)
|
86 |
+
|
87 |
+
layout.addStretch()
|
88 |
+
|
89 |
+
def set_items(self, items):
|
90 |
+
self.combo_box.blockSignals(True)
|
91 |
+
self.combo_box.clear()
|
92 |
+
self.combo_box.addItems(items)
|
93 |
+
self.combo_box.blockSignals(False)
|
94 |
+
|
95 |
+
|
96 |
+
class RadioWithLabel(LabelWidget):
|
97 |
+
def __init__(self, label, text: str = None):
|
98 |
+
super().__init__(label)
|
99 |
+
layout = QVBoxLayout()
|
100 |
+
self.setLayout(layout)
|
101 |
+
|
102 |
+
self.radio_button = QRadioButton()
|
103 |
+
if text:
|
104 |
+
self.radio_button.setText(text)
|
105 |
+
|
106 |
+
layout.addWidget(self.label)
|
107 |
+
layout.addWidget(self.radio_button)
|
108 |
+
|
109 |
+
layout.addStretch()
|
110 |
+
|
111 |
+
def set_text(self, text):
|
112 |
+
self.radio_button.setText(text)
|
113 |
+
|
114 |
+
|
115 |
+
class SpinWithLabel(LabelWidget):
|
116 |
+
def __init__(self, label, info="", minimum=None, maximum=None, value=None):
|
117 |
+
super().__init__(label, info)
|
118 |
+
layout = QVBoxLayout()
|
119 |
+
self.setLayout(layout)
|
120 |
+
|
121 |
+
self.spin_box = QSpinBox()
|
122 |
+
if minimum:
|
123 |
+
self.spin_box.setMinimum(minimum)
|
124 |
+
|
125 |
+
if maximum:
|
126 |
+
self.spin_box.setMaximum(maximum + 1)
|
127 |
+
else:
|
128 |
+
self.spin_box.setMaximum(10e8)
|
129 |
+
|
130 |
+
if value:
|
131 |
+
self.spin_box.setValue(value)
|
132 |
+
|
133 |
+
layout.addWidget(self.label)
|
134 |
+
layout.addWidget(self.spin_box)
|
135 |
+
|
136 |
+
layout.addStretch()
|
137 |
+
|
138 |
+
def set_value(self, value):
|
139 |
+
self.spin_box.setValue(value)
|
140 |
+
|
141 |
+
|
142 |
+
class TextWithLabel(LabelWidget):
|
143 |
+
def __init__(self, label, stretch: bool = True, editable: bool = False):
|
144 |
+
super().__init__(label)
|
145 |
+
layout = QVBoxLayout(self)
|
146 |
+
|
147 |
+
if editable:
|
148 |
+
self.text_browser = QTextEdit()
|
149 |
+
else:
|
150 |
+
self.text_browser = QTextBrowser()
|
151 |
+
|
152 |
+
layout.addWidget(self.label)
|
153 |
+
layout.addWidget(self.text_browser)
|
154 |
+
|
155 |
+
if stretch:
|
156 |
+
layout.addStretch()
|
157 |
+
|
158 |
+
def set_text(self, text):
|
159 |
+
self.text_browser.setText(text)
|
160 |
+
|
161 |
+
|
162 |
+
class LabelWithLabel(QWidget):
|
163 |
+
def __init__(self, label):
|
164 |
+
super().__init__()
|
165 |
+
layout = QHBoxLayout()
|
166 |
+
self.setLayout(layout)
|
167 |
+
|
168 |
+
self.label = QLabel(label)
|
169 |
+
self.text = QLabel()
|
170 |
+
# self.text_browser.textChanged.connect(self.resize_height)
|
171 |
+
|
172 |
+
layout.addWidget(self.label)
|
173 |
+
layout.addWidget(self.text)
|
174 |
+
|
175 |
+
layout.addStretch()
|
qt/components/equipments.py
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os
|
3 |
+
|
4 |
+
from qt.constant import POSITION_MAP, STONES_POSITIONS, EQUIPMENTS_DIR, ENCHANTS_DIR, STONES_DIR, MAX_STONE_ATTR
|
5 |
+
from qt.constant import EMBED_POSITIONS, MAX_EMBED_LEVEL, MAX_STONE_LEVEL, SPECIAL_ENCHANT_POSITIONS
|
6 |
+
from qt.components import ComboWithLabel, RadioWithLabel, TextWithLabel
|
7 |
+
from PySide6.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QGridLayout, QTabWidget
|
8 |
+
from PySide6.QtCore import Qt
|
9 |
+
|
10 |
+
|
11 |
+
class EquipmentWidget(QWidget):
|
12 |
+
def __init__(self, label):
|
13 |
+
super().__init__()
|
14 |
+
self.position = POSITION_MAP[label]
|
15 |
+
layout = QHBoxLayout(self)
|
16 |
+
|
17 |
+
input_widget = QWidget()
|
18 |
+
input_layout = QVBoxLayout(input_widget)
|
19 |
+
layout.addWidget(input_widget, 2, alignment=Qt.AlignmentFlag.AlignTop)
|
20 |
+
|
21 |
+
self.output_widget = QWidget()
|
22 |
+
output_layout = QVBoxLayout(self.output_widget)
|
23 |
+
layout.addWidget(self.output_widget, 1, alignment=Qt.AlignmentFlag.AlignLeft)
|
24 |
+
|
25 |
+
self.equipment_json = json.load(open(os.path.join(EQUIPMENTS_DIR, self.position), encoding="utf-8"))
|
26 |
+
self.enchant_json = json.load(open(os.path.join(ENCHANTS_DIR, self.position), encoding="utf-8"))
|
27 |
+
self.equipment = ComboWithLabel("装备")
|
28 |
+
|
29 |
+
self.detail_widget = QWidget()
|
30 |
+
detail_layout = QGridLayout(self.detail_widget)
|
31 |
+
|
32 |
+
input_layout.addWidget(self.equipment)
|
33 |
+
input_layout.addWidget(self.detail_widget)
|
34 |
+
|
35 |
+
if not self.enchant_json:
|
36 |
+
self.enchant = None
|
37 |
+
else:
|
38 |
+
self.enchant = ComboWithLabel("附魔")
|
39 |
+
self.enchant.combo_box.addItems([""] + list(self.enchant_json))
|
40 |
+
detail_layout.addWidget(self.enchant, 0, 0, 1, 2)
|
41 |
+
|
42 |
+
if self.position not in SPECIAL_ENCHANT_POSITIONS:
|
43 |
+
self.special_enchant = None
|
44 |
+
else:
|
45 |
+
self.special_enchant = RadioWithLabel("大附魔")
|
46 |
+
detail_layout.addWidget(self.special_enchant, 0, 2, 1, 2)
|
47 |
+
|
48 |
+
self.strength_level = ComboWithLabel("精炼等级")
|
49 |
+
detail_layout.addWidget(self.strength_level, 1, 0)
|
50 |
+
|
51 |
+
self.embed_levels = []
|
52 |
+
for i in range(EMBED_POSITIONS[self.position]):
|
53 |
+
embed_level = ComboWithLabel(
|
54 |
+
f"镶嵌等级-{i + 1}", items=[str(i) for i in range(MAX_EMBED_LEVEL + 1)]
|
55 |
+
)
|
56 |
+
embed_level.combo_box.setCurrentIndex(MAX_EMBED_LEVEL)
|
57 |
+
self.embed_levels.append(embed_level)
|
58 |
+
detail_layout.addWidget(embed_level, 1, i + 1)
|
59 |
+
|
60 |
+
if self.position not in STONES_POSITIONS:
|
61 |
+
self.stones_json = None
|
62 |
+
self.stone_level = None
|
63 |
+
self.stone_attrs = None
|
64 |
+
else:
|
65 |
+
self.stones_json = json.load(open(STONES_DIR, encoding="utf-8"))
|
66 |
+
|
67 |
+
self.stone_level = ComboWithLabel(
|
68 |
+
"五彩石等级", items=[str(i) for i in range(MAX_STONE_LEVEL + 1)])
|
69 |
+
self.stone_attrs = []
|
70 |
+
detail_layout.addWidget(self.stone_level, 2, 0)
|
71 |
+
for i in range(MAX_STONE_ATTR):
|
72 |
+
stone_attr = ComboWithLabel(f"五彩石属性-{i + 1}")
|
73 |
+
self.stone_attrs.append(stone_attr)
|
74 |
+
detail_layout.addWidget(stone_attr, 2, i + 1)
|
75 |
+
|
76 |
+
self.base_attr = TextWithLabel("基本属性")
|
77 |
+
output_layout.addWidget(self.base_attr)
|
78 |
+
self.magic_attr = TextWithLabel("精炼属性")
|
79 |
+
output_layout.addWidget(self.magic_attr)
|
80 |
+
self.embed_attr = TextWithLabel("镶嵌属性")
|
81 |
+
output_layout.addWidget(self.embed_attr)
|
82 |
+
output_layout.addStretch()
|
83 |
+
|
84 |
+
|
85 |
+
class EquipmentsWidget(QTabWidget):
|
86 |
+
def __init__(self):
|
87 |
+
super().__init__()
|
88 |
+
self.equipments = {}
|
89 |
+
for label in POSITION_MAP:
|
90 |
+
self.equipments[label] = EquipmentWidget(label)
|
91 |
+
self.addTab(self.equipments[label], label)
|
92 |
+
|
93 |
+
def __getitem__(self, item) -> EquipmentWidget:
|
94 |
+
return self.equipments[item]
|
95 |
+
|
96 |
+
def items(self):
|
97 |
+
return self.equipments.items()
|
98 |
+
|
99 |
+
def values(self):
|
100 |
+
return self.equipments.values()
|
qt/components/talents.py
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import List
|
2 |
+
|
3 |
+
from qt.components import ComboWithLabel
|
4 |
+
from PySide6.QtWidgets import QWidget, QGridLayout
|
5 |
+
|
6 |
+
from qt.constant import MAX_TALENTS
|
7 |
+
|
8 |
+
|
9 |
+
class TalentsWidget(QWidget):
|
10 |
+
def __init__(self):
|
11 |
+
super().__init__()
|
12 |
+
layout = QGridLayout()
|
13 |
+
self.setLayout(layout)
|
14 |
+
|
15 |
+
self.talents = []
|
16 |
+
|
17 |
+
rows = 2
|
18 |
+
columns = MAX_TALENTS // rows
|
19 |
+
|
20 |
+
for i in range(rows):
|
21 |
+
for j in range(columns):
|
22 |
+
talent = ComboWithLabel(f"奇穴第{i * columns + j + 1}层")
|
23 |
+
self.talents.append(talent)
|
24 |
+
layout.addWidget(talent, i, j)
|
25 |
+
|
26 |
+
def __getitem__(self, item) -> ComboWithLabel:
|
27 |
+
return self.talents[item]
|
28 |
+
|
29 |
+
def values(self) -> List[ComboWithLabel]:
|
30 |
+
return self.talents
|
qt/components/top.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from PySide6.QtWidgets import QWidget, QVBoxLayout, QPushButton
|
2 |
+
|
3 |
+
|
4 |
+
class TopWidget(QWidget):
|
5 |
+
def __init__(self):
|
6 |
+
super().__init__()
|
7 |
+
layout = QVBoxLayout()
|
8 |
+
self.setLayout(layout)
|
9 |
+
|
10 |
+
self.upload_button = QPushButton("请上传JCL")
|
11 |
+
|
12 |
+
layout.addWidget(self.upload_button)
|
qt/constant.py
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
from dataclasses import dataclass
|
3 |
+
from typing import Type, Dict, List
|
4 |
+
|
5 |
+
from base.attribute import Attribute
|
6 |
+
from base.buff import Buff
|
7 |
+
from base.skill import Skill
|
8 |
+
# from general.gains import equipment
|
9 |
+
|
10 |
+
from schools import first
|
11 |
+
|
12 |
+
""" Directory """
|
13 |
+
# ASSETS_DIR = os.path.join(os.getcwd(), "qt/assets")
|
14 |
+
ASSETS_DIR = "qt/assets"
|
15 |
+
EQUIPMENTS_DIR = os.path.join(ASSETS_DIR, "equipments")
|
16 |
+
ENCHANTS_DIR = os.path.join(ASSETS_DIR, "enchants")
|
17 |
+
STONES_DIR = os.path.join(ASSETS_DIR, "stones.json")
|
18 |
+
|
19 |
+
""" Equipments """
|
20 |
+
POSITION_MAP = {
|
21 |
+
'帽子': 'hat',
|
22 |
+
'上衣': 'jacket',
|
23 |
+
'腰带': 'belt',
|
24 |
+
'护腕': 'wrist',
|
25 |
+
'下装': 'bottoms',
|
26 |
+
'鞋子': 'shoes',
|
27 |
+
'项链': 'necklace',
|
28 |
+
'腰坠': 'pendant',
|
29 |
+
'戒指1': 'ring',
|
30 |
+
'戒指2': 'ring',
|
31 |
+
'远程武器': 'tertiary_weapon',
|
32 |
+
'近战武器': 'primary_weapon',
|
33 |
+
'额外武器': 'secondary_weapon'
|
34 |
+
}
|
35 |
+
STONES_POSITIONS = ["primary_weapon", 'secondary_weapon']
|
36 |
+
EMBED_POSITIONS = {
|
37 |
+
"hat": 2,
|
38 |
+
"jacket": 2,
|
39 |
+
"belt": 2,
|
40 |
+
"wrist": 2,
|
41 |
+
"bottoms": 2,
|
42 |
+
"shoes": 2,
|
43 |
+
"necklace": 1,
|
44 |
+
"pendant": 1,
|
45 |
+
"ring": 0,
|
46 |
+
"tertiary_weapon": 1,
|
47 |
+
"primary_weapon": 3,
|
48 |
+
"secondary_weapon": 3
|
49 |
+
}
|
50 |
+
SPECIAL_ENCHANT_POSITIONS = ["hat", "jacket", "belt", "wrist", "shoes"]
|
51 |
+
""" Attrs """
|
52 |
+
ATTR_TYPE_MAP = {
|
53 |
+
"atMeleeWeaponDamageBase": "weapon_damage_base",
|
54 |
+
"atMeleeWeaponDamageRand": "weapon_damage_rand",
|
55 |
+
"atBasePotentialAdd": "all_major_base",
|
56 |
+
"atAgilityBase": "agility_base",
|
57 |
+
"atStrengthBase": "strength_base",
|
58 |
+
"atSpiritBase": "spirit_base",
|
59 |
+
"atSpunkBase": "spunk_base",
|
60 |
+
"atPhysicsAttackPowerBase": "physical_attack_power_base",
|
61 |
+
"atMagicAttackPowerBase": "magical_attack_power_base",
|
62 |
+
"atLunarAttackPowerBase": "magical_attack_power_base",
|
63 |
+
"atSolarAttackPowerBase": "magical_attack_power_base",
|
64 |
+
"atSolarAndLunarAttackPowerBase": "magical_attack_power_base",
|
65 |
+
"atPhysicsOvercomeBase": "physical_overcome_base",
|
66 |
+
"atMagicOvercome": "magical_overcome_base",
|
67 |
+
"atLunarOvercomeBase": "magical_overcome_base",
|
68 |
+
"atSolarOvercomeBase": "magical_overcome_base",
|
69 |
+
"atSolarAndLunarOvercomeBase": "magical_overcome_base",
|
70 |
+
"atAllTypeCriticalStrike": "all_critical_strike_base",
|
71 |
+
"atPhysicsCriticalStrike": "physical_critical_strike_base",
|
72 |
+
"atMagicCriticalStrike": "magical_critical_strike_base",
|
73 |
+
"atLunarCriticalStrike": "magical_critical_strike_base",
|
74 |
+
"atSolarCriticalStrike": "magical_critical_strike_base",
|
75 |
+
"atSolarAndLunarCriticalStrike": "magical_critical_strike_base",
|
76 |
+
"atAllTypeCriticalDamagePowerBase": "all_critical_power_base",
|
77 |
+
"atPhysicsCriticalDamagePowerBase": "physical_critical_power_base",
|
78 |
+
"atMagicCriticalDamagePowerBase": "magical_critical_power_base",
|
79 |
+
"atLunarCriticalDamagePowerBase": "magical_critical_power_base",
|
80 |
+
"atSolarCriticalDamagePowerBase": "magical_critical_power_base",
|
81 |
+
"atSolarAndLunarCriticalDamagePowerBase": "magical_critical_power_base",
|
82 |
+
"atSurplusValueBase": "surplus",
|
83 |
+
"atStrainBase": "strain_base",
|
84 |
+
"atHasteBase": "haste_base",
|
85 |
+
}
|
86 |
+
ATTR_TYPE_TRANSLATE = {
|
87 |
+
"weapon_damage_base": "基础武器伤害",
|
88 |
+
"weapon_damage_rand": "浮动武器伤害",
|
89 |
+
"all_major_base": "全属性",
|
90 |
+
"agility_base": "身法",
|
91 |
+
"strength_base": "力道",
|
92 |
+
"spirit_base": "根骨",
|
93 |
+
"spunk_base": "元气",
|
94 |
+
"physical_attack_power_base": "外功攻击",
|
95 |
+
"magical_attack_power_base": "内功攻击",
|
96 |
+
"physical_critical_strike_base": "外功会心",
|
97 |
+
"magical_critical_strike_base": "内功会心",
|
98 |
+
"all_critical_strike_base": "全会心",
|
99 |
+
"physical_critical_power_base": "外功会效",
|
100 |
+
"magical_critical_power_base": "内功会效",
|
101 |
+
"all_critical_power_base": "全会效",
|
102 |
+
"physical_overcome_base": "外功破防",
|
103 |
+
"magical_overcome_base": "内功破防",
|
104 |
+
"surplus": "破招",
|
105 |
+
"strain_base": "无双",
|
106 |
+
"haste_base": "加速",
|
107 |
+
}
|
108 |
+
ATTR_TYPE_TRANSLATE_REVERSE = {v: k for k, v in ATTR_TYPE_TRANSLATE.items()}
|
109 |
+
STONE_ATTR = [
|
110 |
+
"atMeleeWeaponDamageBase", "atSurplusValueBase", "atStrainBase", "atHasteBase",
|
111 |
+
"atAllTypeCriticalStrike", "atAllTypeCriticalDamagePowerBase",
|
112 |
+
"atAgilityBase", "atStrengthBase", "atSpiritBase", "atSpunkBase",
|
113 |
+
"atPhysicsAttackPowerBase", "atPhysicsCriticalStrike",
|
114 |
+
"atPhysicsCriticalDamagePowerBase", "atPhysicsOvercomeBase",
|
115 |
+
"atMagicAttackPowerBase", "atMagicCriticalStrike",
|
116 |
+
"atMagicCriticalDamagePowerBase", "atMagicOvercome"
|
117 |
+
]
|
118 |
+
|
119 |
+
""" Top """
|
120 |
+
|
121 |
+
|
122 |
+
@dataclass
|
123 |
+
class School:
|
124 |
+
school: str
|
125 |
+
major: str
|
126 |
+
kind: str
|
127 |
+
attribute: Type[Attribute]
|
128 |
+
formation: str
|
129 |
+
talents: List[Dict[int, Buff]]
|
130 |
+
skills: Dict[int, Skill]
|
131 |
+
buffs: Dict[int, Buff]
|
132 |
+
|
133 |
+
|
134 |
+
SUPPORT_SCHOOL = {
|
135 |
+
10464: School(
|
136 |
+
school="霸刀",
|
137 |
+
major="力道",
|
138 |
+
kind="外功",
|
139 |
+
attribute=first.BeiAoJue,
|
140 |
+
formation="霜岚洗锋阵",
|
141 |
+
talents=first.TALENTS,
|
142 |
+
skills=first.SKILLS,
|
143 |
+
buffs=first.BUFFS
|
144 |
+
)
|
145 |
+
}
|
146 |
+
|
147 |
+
""" Equip """
|
148 |
+
|
149 |
+
MAX_EMBED_ATTR = 3
|
150 |
+
MAX_BASE_ATTR = 6
|
151 |
+
MAX_MAGIC_ATTR = 12
|
152 |
+
MAX_ENCHANT_ATTR = 4
|
153 |
+
MAX_STONE_ATTR = 3
|
154 |
+
|
155 |
+
MAX_EMBED_LEVEL = 8
|
156 |
+
MAX_STRENGTH_LEVEL = 8
|
157 |
+
MAX_STONE_LEVEL = 6
|
158 |
+
|
159 |
+
|
160 |
+
def EMBED_COF(level):
|
161 |
+
if level > 6:
|
162 |
+
return (level * 0.65 - 3.2) * 1.3
|
163 |
+
else:
|
164 |
+
return level * 0.195
|
165 |
+
|
166 |
+
|
167 |
+
def STRENGTH_COF(level):
|
168 |
+
return level * (0.7 + 0.3 * level) / 200
|
169 |
+
|
170 |
+
|
171 |
+
# EQUIP_GAINS_NAME = {
|
172 |
+
# **equipment.EQUIP_GAINS_NAME,
|
173 |
+
# **wen_shui_jue.EQUIP_GAINS_NAME,
|
174 |
+
# **bei_ao_jue.EQUIP_GAINS_NAME,
|
175 |
+
# **bing_xin_jue.EQUIP_GAINS_NAME,
|
176 |
+
# **yi_jin_jing.EQUIP_GAINS_NAME,
|
177 |
+
# **ao_xue_zhan_yi.EQUIP_GAINS_NAME,
|
178 |
+
# **gu_feng_jue.EQUIP_GAINS_NAME,
|
179 |
+
# **fen_ying_sheng_jue.EQUIP_GAINS_NAME
|
180 |
+
# }
|
181 |
+
# EQUIP_GAINS = {
|
182 |
+
# **equipment.EQUIP_GAINS,
|
183 |
+
# **wen_shui_jue.EQUIP_GAINS,
|
184 |
+
# **bei_ao_jue.EQUIP_GAINS,
|
185 |
+
# **bing_xin_jue.EQUIP_GAINS,
|
186 |
+
# **yi_jin_jing.EQUIP_GAINS,
|
187 |
+
# **ao_xue_zhan_yi.EQUIP_GAINS,
|
188 |
+
# **gu_feng_jue.EQUIP_GAINS,
|
189 |
+
# **fen_ying_sheng_jue.EQUIP_GAINS
|
190 |
+
# }
|
191 |
+
|
192 |
+
""" Talent """
|
193 |
+
MAX_TALENTS = 12
|
194 |
+
|
195 |
+
# TALENT_GAINS = {
|
196 |
+
# **wen_shui_jue.TALENT_GAINS,
|
197 |
+
# **bei_ao_jue.TALENT_GAINS,
|
198 |
+
# **bing_xin_jue.TALENT_GAINS,
|
199 |
+
# **yi_jin_jing.TALENT_GAINS,
|
200 |
+
# **ao_xue_zhan_yi.TALENT_GAINS,
|
201 |
+
# **gu_feng_jue.TALENT_GAINS,
|
202 |
+
# **fen_ying_sheng_jue.TALENT_GAINS
|
203 |
+
# }
|
204 |
+
|
205 |
+
""" Recipes """
|
206 |
+
MAX_RECIPE_SKILLS = 12
|
207 |
+
MAX_RECIPES = 4
|
208 |
+
|
209 |
+
# RECIPE_GAINS = {
|
210 |
+
# **wen_shui_jue.RECIPE_GAINS,
|
211 |
+
# **bei_ao_jue.RECIPE_GAINS,
|
212 |
+
# **bing_xin_jue.RECIPE_GAINS,
|
213 |
+
# **yi_jin_jing.RECIPE_GAINS,
|
214 |
+
# **ao_xue_zhan_yi.RECIPE_GAINS,
|
215 |
+
# **gu_feng_jue.RECIPE_GAINS,
|
216 |
+
# **fen_ying_sheng_jue.RECIPE_GAINS
|
217 |
+
# }
|
qt/scripts/equipments.py
ADDED
@@ -0,0 +1,327 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from collections import defaultdict
|
2 |
+
from typing import Dict, List
|
3 |
+
|
4 |
+
from qt.components.equipments import EquipmentsWidget
|
5 |
+
from qt.constant import POSITION_MAP, STONES_POSITIONS, EMBED_POSITIONS
|
6 |
+
from qt.constant import ATTR_TYPE_TRANSLATE, ATTR_TYPE_TRANSLATE_REVERSE
|
7 |
+
from qt.constant import STRENGTH_COF, EMBED_COF, MAX_STRENGTH_LEVEL, MAX_EMBED_LEVEL
|
8 |
+
|
9 |
+
|
10 |
+
class Enchant:
|
11 |
+
name: str
|
12 |
+
attr: Dict[str, int]
|
13 |
+
|
14 |
+
def clear(self):
|
15 |
+
self.name = ""
|
16 |
+
self.attr = {}
|
17 |
+
|
18 |
+
|
19 |
+
class Stone:
|
20 |
+
name: str
|
21 |
+
level: int
|
22 |
+
attr: Dict[str, int]
|
23 |
+
|
24 |
+
def clear(self):
|
25 |
+
self.name = ""
|
26 |
+
self.attr = {}
|
27 |
+
|
28 |
+
|
29 |
+
class Equipment:
|
30 |
+
name: str
|
31 |
+
base: Dict[str, int]
|
32 |
+
magic: Dict[str, int]
|
33 |
+
max_strength: int
|
34 |
+
embed: Dict[str, int]
|
35 |
+
gains: List[int]
|
36 |
+
special_enchant: List[int | List[int]]
|
37 |
+
special_enchant_gain: List[int | List[int]]
|
38 |
+
set_id: str
|
39 |
+
set_attr: Dict[int, Dict[str, int]]
|
40 |
+
set_gain: Dict[int, List[int]]
|
41 |
+
|
42 |
+
def __init__(self, label):
|
43 |
+
self.label = label
|
44 |
+
self.position = POSITION_MAP[label]
|
45 |
+
|
46 |
+
self.max_strength = MAX_STRENGTH_LEVEL
|
47 |
+
self.strength_level = MAX_STRENGTH_LEVEL
|
48 |
+
self.embed_levels = [MAX_EMBED_LEVEL for _ in range(EMBED_POSITIONS[self.position])]
|
49 |
+
|
50 |
+
self.enchant = Enchant()
|
51 |
+
if self.position in STONES_POSITIONS:
|
52 |
+
self.stone = Stone()
|
53 |
+
else:
|
54 |
+
self.stone = None
|
55 |
+
|
56 |
+
def clear(self):
|
57 |
+
self.name = ""
|
58 |
+
self.base = {}
|
59 |
+
self.magic = {}
|
60 |
+
self.embed = {}
|
61 |
+
self.gains = []
|
62 |
+
self.special_enchant_gain = []
|
63 |
+
self.set_id = ""
|
64 |
+
self.set_attr = {}
|
65 |
+
self.set_gain = {}
|
66 |
+
|
67 |
+
@property
|
68 |
+
def base_attr(self) -> Dict[str, int]:
|
69 |
+
return self.base
|
70 |
+
|
71 |
+
@property
|
72 |
+
def magic_attr(self) -> Dict[str, int]:
|
73 |
+
return self.magic
|
74 |
+
|
75 |
+
@property
|
76 |
+
def strength_attr(self) -> Dict[str, int]:
|
77 |
+
if self.strength_level:
|
78 |
+
return {k: round(STRENGTH_COF(self.strength_level) * v) for k, v in self.magic.items()}
|
79 |
+
else:
|
80 |
+
return {}
|
81 |
+
|
82 |
+
@property
|
83 |
+
def embed_attr(self) -> Dict[str, int]:
|
84 |
+
return {
|
85 |
+
k: int(EMBED_COF(self.embed_levels[i]) * self.embed[k])
|
86 |
+
for i, k in enumerate(self.embed) if self.embed_levels[i]
|
87 |
+
}
|
88 |
+
|
89 |
+
@property
|
90 |
+
def base_attr_text(self):
|
91 |
+
return "\n".join([f"{ATTR_TYPE_TRANSLATE[k]}:\t{v}" for k, v in self.base_attr.items()])
|
92 |
+
|
93 |
+
@property
|
94 |
+
def magic_attr_text(self):
|
95 |
+
if strength_attr := self.strength_attr:
|
96 |
+
return "\n".join([
|
97 |
+
f"{ATTR_TYPE_TRANSLATE[k]}:\t{v}(+{strength_attr[k]})" for k, v in self.magic_attr.items()
|
98 |
+
])
|
99 |
+
else:
|
100 |
+
return "\n".join([f"{ATTR_TYPE_TRANSLATE[k]}:\t{v}" for k, v in self.magic_attr.items()])
|
101 |
+
|
102 |
+
@property
|
103 |
+
def embed_attr_text(self):
|
104 |
+
return "\n".join([f"{ATTR_TYPE_TRANSLATE[k]}:\t{v}" for k, v in self.embed_attr.items()])
|
105 |
+
|
106 |
+
|
107 |
+
class Equipments:
|
108 |
+
def __init__(self):
|
109 |
+
self.equipments = {label: Equipment(label) for label in POSITION_MAP}
|
110 |
+
|
111 |
+
def __getitem__(self, item) -> Equipment:
|
112 |
+
return self.equipments[item]
|
113 |
+
|
114 |
+
@property
|
115 |
+
def attrs(self):
|
116 |
+
final_attrs = defaultdict(int)
|
117 |
+
set_count = {}
|
118 |
+
set_effect = {}
|
119 |
+
for equipment in self.equipments.values():
|
120 |
+
if not equipment.name:
|
121 |
+
continue
|
122 |
+
for attr, value in equipment.base_attr.items():
|
123 |
+
final_attrs[attr] += value
|
124 |
+
for attr, value in equipment.magic_attr.items():
|
125 |
+
final_attrs[attr] += value
|
126 |
+
for attr, value in equipment.strength_attr.items():
|
127 |
+
final_attrs[attr] += value
|
128 |
+
for attr, value in equipment.embed_attr.items():
|
129 |
+
final_attrs[attr] += value
|
130 |
+
for attr, value in equipment.enchant.attr.items():
|
131 |
+
final_attrs[attr] += value
|
132 |
+
if equipment.stone:
|
133 |
+
for attr, value in equipment.stone.attr.items():
|
134 |
+
final_attrs[attr] += value
|
135 |
+
|
136 |
+
if equipment.set_id not in set_count:
|
137 |
+
set_count[equipment.set_id] = 0
|
138 |
+
set_effect[equipment.set_id] = equipment.set_attr
|
139 |
+
set_count[equipment.set_id] += 1
|
140 |
+
|
141 |
+
for set_id, set_attr in set_effect.items():
|
142 |
+
for count, attrs in set_attr.items():
|
143 |
+
if int(count) > set_count[set_id]:
|
144 |
+
break
|
145 |
+
for attr, value in attrs.items():
|
146 |
+
final_attrs[attr] += value
|
147 |
+
|
148 |
+
return final_attrs
|
149 |
+
|
150 |
+
@property
|
151 |
+
def gains(self):
|
152 |
+
final_gains = []
|
153 |
+
set_count = {}
|
154 |
+
set_effect = {}
|
155 |
+
for equipment in self.equipments.values():
|
156 |
+
if not equipment.name:
|
157 |
+
continue
|
158 |
+
final_gains += [gain for gain in equipment.gains + equipment.special_enchant]
|
159 |
+
if equipment.set_id not in set_count:
|
160 |
+
set_count[equipment.set_id] = 0
|
161 |
+
set_effect[equipment.set_id] = equipment.set_gain
|
162 |
+
set_count[equipment.set_id] += 1
|
163 |
+
|
164 |
+
for set_id, set_gain in set_effect.items():
|
165 |
+
for count, gains in set_gain.items():
|
166 |
+
if int(count) > set_count[set_id]:
|
167 |
+
break
|
168 |
+
final_gains += gains
|
169 |
+
|
170 |
+
return [gain for gain in set(final_gains)]
|
171 |
+
|
172 |
+
|
173 |
+
def equipments_script(equipments_widget: EquipmentsWidget):
|
174 |
+
equipments = Equipments()
|
175 |
+
|
176 |
+
def equipment_update(label):
|
177 |
+
widget = equipments_widget[label]
|
178 |
+
equipment = equipments[label]
|
179 |
+
|
180 |
+
def inner(index):
|
181 |
+
equipment_name = widget.equipment.combo_box.currentText()
|
182 |
+
|
183 |
+
if not equipment_name:
|
184 |
+
equipment.clear()
|
185 |
+
widget.detail_widget.hide()
|
186 |
+
widget.output_widget.hide()
|
187 |
+
return
|
188 |
+
|
189 |
+
if equipment.strength_level == equipment.max_strength:
|
190 |
+
max_strength = True
|
191 |
+
else:
|
192 |
+
max_strength = False
|
193 |
+
|
194 |
+
equipment.name = equipment_name
|
195 |
+
equipment_detail = widget.equipment_json[equipment_name]
|
196 |
+
for k, v in equipment_detail.items():
|
197 |
+
setattr(equipment, k, v)
|
198 |
+
|
199 |
+
if equipment.base:
|
200 |
+
widget.base_attr.set_text(equipment.base_attr_text)
|
201 |
+
widget.base_attr.show()
|
202 |
+
else:
|
203 |
+
widget.base_attr.hide()
|
204 |
+
|
205 |
+
if max_strength:
|
206 |
+
equipment.strength_level = equipment.max_strength
|
207 |
+
|
208 |
+
widget.strength_level.set_items([str(i) for i in range(equipment.max_strength + 1)])
|
209 |
+
widget.strength_level.combo_box.setCurrentIndex(equipment.strength_level)
|
210 |
+
|
211 |
+
if equipment.embed:
|
212 |
+
for i, (attr, value) in enumerate(equipment.embed.items()):
|
213 |
+
widget.embed_levels[i].set_label(f"镶嵌等级-{ATTR_TYPE_TRANSLATE[attr]}")
|
214 |
+
widget.embed_attr.set_text(equipment.embed_attr_text)
|
215 |
+
widget.embed_attr.show()
|
216 |
+
else:
|
217 |
+
widget.embed_attr.hide()
|
218 |
+
|
219 |
+
if equipment.special_enchant:
|
220 |
+
widget.special_enchant.set_text(str(equipment.special_enchant))
|
221 |
+
|
222 |
+
widget.detail_widget.show()
|
223 |
+
widget.output_widget.show()
|
224 |
+
|
225 |
+
return inner
|
226 |
+
|
227 |
+
def enchant_update(label):
|
228 |
+
widget = equipments_widget.equipments[label]
|
229 |
+
equipment = equipments[label]
|
230 |
+
|
231 |
+
def inner(index):
|
232 |
+
enchant_name = widget.enchant.combo_box.currentText()
|
233 |
+
if enchant_name:
|
234 |
+
enchant_detail = widget.enchant_json[enchant_name]
|
235 |
+
equipment.enchant.name = enchant_name
|
236 |
+
for k, v in enchant_detail.items():
|
237 |
+
setattr(equipment.enchant, k, v)
|
238 |
+
else:
|
239 |
+
equipment.enchant.clear()
|
240 |
+
|
241 |
+
return inner
|
242 |
+
|
243 |
+
def special_enchant_update(label):
|
244 |
+
widget = equipments_widget.equipments[label]
|
245 |
+
equipment = equipments[label]
|
246 |
+
|
247 |
+
def inner(index):
|
248 |
+
if widget.special_enchant and widget.special_enchant.radio_button.isChecked():
|
249 |
+
equipment.special_enchant_gain = equipment.special_enchant
|
250 |
+
else:
|
251 |
+
equipment.special_enchant_gain = []
|
252 |
+
|
253 |
+
return inner
|
254 |
+
|
255 |
+
def strength_level_update(label):
|
256 |
+
widget = equipments_widget.equipments[label]
|
257 |
+
equipment = equipments[label]
|
258 |
+
|
259 |
+
def inner(index):
|
260 |
+
equipment.strength_level = index
|
261 |
+
if magic_attr_text := equipment.magic_attr_text:
|
262 |
+
widget.magic_attr.text_browser.setText(magic_attr_text)
|
263 |
+
widget.magic_attr.show()
|
264 |
+
else:
|
265 |
+
widget.magic_attr.hide()
|
266 |
+
|
267 |
+
return inner
|
268 |
+
|
269 |
+
def embed_level_update(i, label):
|
270 |
+
widget = equipments_widget.equipments[label]
|
271 |
+
equipment = equipments[label]
|
272 |
+
|
273 |
+
def inner(index):
|
274 |
+
equipment.embed_levels[i] = index
|
275 |
+
if embed_attr_text := equipment.embed_attr_text:
|
276 |
+
widget.embed_attr.text_browser.setText(embed_attr_text)
|
277 |
+
widget.embed_attr.show()
|
278 |
+
else:
|
279 |
+
widget.embed_attr.hide()
|
280 |
+
|
281 |
+
return inner
|
282 |
+
|
283 |
+
def stone_update(label):
|
284 |
+
widget = equipments_widget.equipments[label]
|
285 |
+
equipment = equipments[label]
|
286 |
+
|
287 |
+
def inner(index):
|
288 |
+
level = widget.stone_level.combo_box.currentText()
|
289 |
+
|
290 |
+
current = widget.stones_json
|
291 |
+
i = 0
|
292 |
+
while i < len(widget.stone_attrs):
|
293 |
+
attr = ATTR_TYPE_TRANSLATE_REVERSE.get(widget.stone_attrs[i].combo_box.currentText())
|
294 |
+
if attr in current:
|
295 |
+
current = current[attr]
|
296 |
+
i += 1
|
297 |
+
else:
|
298 |
+
break
|
299 |
+
if level in current:
|
300 |
+
for k, v in current[level]:
|
301 |
+
setattr(equipment.stone, k, v)
|
302 |
+
else:
|
303 |
+
widget.stone_attrs[i].set_items([""] + [ATTR_TYPE_TRANSLATE[k] for k in current])
|
304 |
+
|
305 |
+
i += 1
|
306 |
+
while i < len(widget.stone_attrs):
|
307 |
+
widget.stone_attrs[i].set_items([""])
|
308 |
+
i += 1
|
309 |
+
|
310 |
+
return inner
|
311 |
+
|
312 |
+
for equipment_label, equipment_widget in equipments_widget.items():
|
313 |
+
|
314 |
+
equipment_widget.equipment.combo_box.currentIndexChanged.connect(equipment_update(equipment_label))
|
315 |
+
if equipment_widget.special_enchant:
|
316 |
+
equipment_widget.special_enchant.radio_button.clicked.connect(special_enchant_update(equipment_label))
|
317 |
+
if equipment_widget.enchant:
|
318 |
+
equipment_widget.enchant.combo_box.currentIndexChanged.connect(enchant_update(equipment_label))
|
319 |
+
equipment_widget.strength_level.combo_box.currentIndexChanged.connect(strength_level_update(equipment_label))
|
320 |
+
for n, embed_widget in enumerate(equipment_widget.embed_levels):
|
321 |
+
embed_widget.combo_box.currentIndexChanged.connect(embed_level_update(n, equipment_label))
|
322 |
+
if equipment_widget.stones_json:
|
323 |
+
equipment_widget.stone_level.combo_box.currentIndexChanged.connect(stone_update(equipment_label))
|
324 |
+
for stone_attr in equipment_widget.stone_attrs:
|
325 |
+
stone_attr.combo_box.currentIndexChanged.connect(stone_update(equipment_label))
|
326 |
+
|
327 |
+
return equipments
|
qt/scripts/talents.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from qt.components.talents import TalentsWidget
|
2 |
+
|
3 |
+
from qt.constant import MAX_TALENTS
|
4 |
+
|
5 |
+
|
6 |
+
class Talents:
|
7 |
+
def __init__(self):
|
8 |
+
self.talents = ["" for _ in range(MAX_TALENTS)]
|
9 |
+
|
10 |
+
def __getitem__(self, item):
|
11 |
+
return self.talents[item]
|
12 |
+
|
13 |
+
def __setitem__(self, key, value):
|
14 |
+
self.talents[key] = value
|
15 |
+
|
16 |
+
@property
|
17 |
+
def gains(self):
|
18 |
+
return [talent for talent in self.talents if talent]
|
19 |
+
|
20 |
+
|
21 |
+
def talents_script(talents_widget: TalentsWidget):
|
22 |
+
talents = Talents()
|
23 |
+
|
24 |
+
def talent_update(i):
|
25 |
+
widget = talents_widget[i]
|
26 |
+
|
27 |
+
def inner(index):
|
28 |
+
if talent := widget.combo_box.currentText():
|
29 |
+
talents[i] = talent
|
30 |
+
else:
|
31 |
+
talents[i] = ""
|
32 |
+
|
33 |
+
return inner
|
34 |
+
|
35 |
+
for n, talent_widget in enumerate(talents_widget.values()):
|
36 |
+
talent_widget.combo_box.currentIndexChanged.connect(talent_update(n))
|
37 |
+
|
38 |
+
return talents
|
qt/scripts/top.py
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict, List
|
2 |
+
|
3 |
+
from PySide6.QtWidgets import QTabWidget, QFileDialog, QWidget
|
4 |
+
|
5 |
+
from base.buff import Buff
|
6 |
+
from base.skill import Skill
|
7 |
+
from qt.components.equipments import EquipmentsWidget
|
8 |
+
from qt.components.talents import TalentsWidget
|
9 |
+
from utils.lua import parse
|
10 |
+
# from qt.components.equipments import EquipmentsWidget
|
11 |
+
# from qt.components.talents import TalentsWidget
|
12 |
+
# from qt.components.recipes import RecipesWidget
|
13 |
+
# from qt.components.consumables import ConsumablesWidget
|
14 |
+
# from qt.components.bonuses import BonusesWidget
|
15 |
+
# from qt.components.combat import CombatWidget
|
16 |
+
from qt.components.top import TopWidget
|
17 |
+
|
18 |
+
# from general.consumables import FOODS, POTIONS, WEAPON_ENCHANTS, SPREADS, SNACKS, WINES
|
19 |
+
# from general.gains.formation import FORMATIONS
|
20 |
+
from qt.constant import School, SUPPORT_SCHOOL, MAX_RECIPES, MAX_STONE_LEVEL
|
21 |
+
|
22 |
+
|
23 |
+
class Parser:
|
24 |
+
records: dict
|
25 |
+
status: dict
|
26 |
+
|
27 |
+
start_time: list
|
28 |
+
end_time: list
|
29 |
+
|
30 |
+
fight_flag: bool
|
31 |
+
|
32 |
+
select_talents: List[int]
|
33 |
+
|
34 |
+
school: School | None
|
35 |
+
|
36 |
+
def reset(self):
|
37 |
+
self.fight_flag = False
|
38 |
+
|
39 |
+
self.records = {}
|
40 |
+
self.status = {}
|
41 |
+
|
42 |
+
self.start_time = []
|
43 |
+
self.end_time = []
|
44 |
+
|
45 |
+
self.school = None
|
46 |
+
|
47 |
+
def parse_info(self, detail):
|
48 |
+
if isinstance(detail, list):
|
49 |
+
self.school = SUPPORT_SCHOOL.get(detail[3])
|
50 |
+
if not self.school:
|
51 |
+
raise AttributeError(f"Cannot support {detail[3]} now")
|
52 |
+
self.select_talents = [row[1] for row in detail[6]]
|
53 |
+
return self.school
|
54 |
+
|
55 |
+
def parse_time(self, detail, timestamp):
|
56 |
+
if detail[1]:
|
57 |
+
self.start_time.append(int(timestamp))
|
58 |
+
self.records[self.start_time[-1]] = {}
|
59 |
+
self.fight_flag = True
|
60 |
+
else:
|
61 |
+
self.end_time.append(int(timestamp))
|
62 |
+
self.fight_flag = False
|
63 |
+
|
64 |
+
def parse_buff(self, detail):
|
65 |
+
buff_id, buff_stack, buff_level = detail[4], detail[5], detail[8]
|
66 |
+
if buff_id not in self.school.buffs:
|
67 |
+
return
|
68 |
+
if not buff_stack:
|
69 |
+
self.status.pop((buff_id, buff_level))
|
70 |
+
else:
|
71 |
+
self.status[(buff_id, buff_level)] = buff_stack
|
72 |
+
|
73 |
+
def parse_skill(self, detail, timestamp):
|
74 |
+
skill = detail[4], detail[5]
|
75 |
+
if skill[0] not in self.school.skills:
|
76 |
+
return
|
77 |
+
|
78 |
+
current_record = self.records[self.start_time[-1]]
|
79 |
+
if skill not in current_record:
|
80 |
+
current_record[skill] = {}
|
81 |
+
status = tuple(
|
82 |
+
(buff_id, buff_level, buff_stack) for (buff_id, buff_level), buff_stack in self.status.items()
|
83 |
+
)
|
84 |
+
if status not in current_record[skill]:
|
85 |
+
current_record[skill][status] = []
|
86 |
+
current_record[skill][status].append(int(timestamp) - self.start_time[-1])
|
87 |
+
|
88 |
+
def __call__(self, file_name):
|
89 |
+
self.reset()
|
90 |
+
lines = open(file_name).readlines()
|
91 |
+
for line in lines:
|
92 |
+
row = line.split("\t")
|
93 |
+
if row[4] == "4" and self.parse_info(parse(row[-1])):
|
94 |
+
break
|
95 |
+
|
96 |
+
for line in lines:
|
97 |
+
row = line.split("\t")
|
98 |
+
if row[4] == "5":
|
99 |
+
self.parse_time(parse(row[-1]), row[3])
|
100 |
+
elif row[4] == "13":
|
101 |
+
self.parse_buff(parse(row[-1]))
|
102 |
+
elif row[4] == "21" and self.fight_flag:
|
103 |
+
self.parse_skill(parse(row[-1]), row[3])
|
104 |
+
|
105 |
+
|
106 |
+
def top_script(top_widget: TopWidget, config_widget: QWidget,
|
107 |
+
equipments_widget: EquipmentsWidget, talents_widget: TalentsWidget,
|
108 |
+
):
|
109 |
+
# equipments_widget: EquipmentsWidget, talents_widget: TalentsWidget, recipes_widget: RecipesWidget,
|
110 |
+
# consumables_widget: ConsumablesWidget, bonuses_widget: BonusesWidget,
|
111 |
+
# combat_widget: CombatWidget):
|
112 |
+
parser = Parser()
|
113 |
+
|
114 |
+
def upload_logs():
|
115 |
+
file_name = QFileDialog(top_widget, "Choose File").getOpenFileName()
|
116 |
+
parser(file_name[0])
|
117 |
+
|
118 |
+
""" Update equipment options """
|
119 |
+
for equipment_widget in equipments_widget.values():
|
120 |
+
choices = [""]
|
121 |
+
for name, detail in equipment_widget.equipment_json.items():
|
122 |
+
if detail['kind'] not in (parser.school.kind, parser.school.major):
|
123 |
+
continue
|
124 |
+
if detail['school'] not in ("精简", "通用", parser.school.school):
|
125 |
+
continue
|
126 |
+
choices.append(name)
|
127 |
+
|
128 |
+
equipment_widget.equipment.set_items(choices)
|
129 |
+
|
130 |
+
if equipment_widget.stones_json:
|
131 |
+
equipment_widget.stone_level.combo_box.setCurrentIndex(MAX_STONE_LEVEL)
|
132 |
+
|
133 |
+
""" Update talent options """
|
134 |
+
for i, talent_widget in enumerate(talents_widget.values()):
|
135 |
+
talents = parser.school.talents[i]
|
136 |
+
default_index = list(talents).index(parser.select_talents[i]) + 1
|
137 |
+
talent_widget.set_items([""] + list(talents.values()))
|
138 |
+
talent_widget.combo_box.setCurrentIndex(default_index)
|
139 |
+
config_widget.show()
|
140 |
+
|
141 |
+
top_widget.upload_button.clicked.connect(upload_logs)
|
142 |
+
|
143 |
+
return parser
|
schools/first/__init__.py
CHANGED
@@ -1,2 +1,4 @@
|
|
1 |
from schools.first.skills import SKILLS
|
2 |
from schools.first.buffs import BUFFS
|
|
|
|
|
|
1 |
from schools.first.skills import SKILLS
|
2 |
from schools.first.buffs import BUFFS
|
3 |
+
from schools.first.talents import TALENTS
|
4 |
+
from schools.first.attribute import BeiAoJue
|
schools/first/recipes.py
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict, List, Tuple
|
2 |
+
|
3 |
+
from base.buff import Buff
|
4 |
+
from base.recipe import damage_addition_recipe, critical_strike_recipe
|
5 |
+
|
6 |
+
RECIPES: Dict[str, List[Tuple[str, dict]]] = {
|
7 |
+
"雷走风切": [
|
8 |
+
("5%伤害", damage_addition_recipe([16631, 16599], 51)),
|
9 |
+
("4%伤害", damage_addition_recipe([16631, 16599], 41)),
|
10 |
+
("4%会心", critical_strike_recipe([16631, 16599], 400)),
|
11 |
+
("3%伤害", damage_addition_recipe([16631, 16599], 31)),
|
12 |
+
("3%会心", critical_strike_recipe([16631, 16599], 300)),
|
13 |
+
("2%会心", critical_strike_recipe([16631, 16599], 200)),
|
14 |
+
]
|
15 |
+
,
|
16 |
+
|
17 |
+
"项王击鼎": [
|
18 |
+
("5%伤害", damage_addition_recipe([16760, 16382], 51)),
|
19 |
+
("4%伤害", damage_addition_recipe([16760, 16382], 41)),
|
20 |
+
("4%会心", critical_strike_recipe([16760, 16382], 400)),
|
21 |
+
("3%伤害", damage_addition_recipe([16760, 16382], 31)),
|
22 |
+
("3%会心", critical_strike_recipe([16760, 16382], 300)),
|
23 |
+
("2%会心", critical_strike_recipe([16760, 16382], 200)),
|
24 |
+
]
|
25 |
+
,
|
26 |
+
|
27 |
+
"破釜沉舟": [
|
28 |
+
("5%伤害", damage_addition_recipe([20991], 51)),
|
29 |
+
("4%伤害", damage_addition_recipe([20991], 41)),
|
30 |
+
("4%会心", critical_strike_recipe([20991], 400)),
|
31 |
+
("3%伤害", damage_addition_recipe([20991], 31)),
|
32 |
+
("3%会心", critical_strike_recipe([20991], 300)),
|
33 |
+
("2%会心", critical_strike_recipe([20991], 200)),
|
34 |
+
]
|
35 |
+
,
|
36 |
+
|
37 |
+
"上将军印": [
|
38 |
+
("4%伤害", damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 41)),
|
39 |
+
("4%会心", critical_strike_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424], 400)),
|
40 |
+
("3%伤害", damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 31)),
|
41 |
+
("3%会心", critical_strike_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424], 300)),
|
42 |
+
("2%伤害", damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 21)),
|
43 |
+
("2%会心", critical_strike_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424], 200)),
|
44 |
+
]
|
45 |
+
,
|
46 |
+
|
47 |
+
"擒龙六斩": [
|
48 |
+
("5%伤害", damage_addition_recipe([16933, 16934, 16935, 16936, 16937, 16938], 51)),
|
49 |
+
("4%伤害", damage_addition_recipe([16933, 16934, 16935, 16936, 16937, 16938], 41)),
|
50 |
+
("4%会心", critical_strike_recipe([16933, 16934, 16935, 16936, 16937, 16938], 400)),
|
51 |
+
("3%伤害", damage_addition_recipe([16933, 16934, 16935, 16936, 16937, 16938], 31)),
|
52 |
+
("3%会心", critical_strike_recipe([16933, 16934, 16935, 16936, 16937, 16938], 300)),
|
53 |
+
("2%会心", critical_strike_recipe([16933, 16934, 16935, 16936, 16937, 16938], 200)),
|
54 |
+
],
|
55 |
+
"刀啸风吟": [
|
56 |
+
("5%伤害", damage_addition_recipe([16610], 51)),
|
57 |
+
("4%伤害", damage_addition_recipe([16610], 41)),
|
58 |
+
("4%会心", critical_strike_recipe([16610], 400)),
|
59 |
+
("3%会心", critical_strike_recipe([16610], 300)),
|
60 |
+
("2%会心", critical_strike_recipe([16610], 200)),
|
61 |
+
]
|
62 |
+
|
63 |
+
}
|
64 |
+
|
65 |
+
for skill_name, recipes in RECIPES.items():
|
66 |
+
for skill_name, detail in recipe.items():
|
67 |
+
if not detail:
|
68 |
+
continue
|
69 |
+
talent[talent_id] = Buff(talent_id, detail.pop("buff_name"))
|
70 |
+
for attr, value in detail.items():
|
71 |
+
setattr(talent[talent_id], attr, value)
|
schools/first/skills.py
CHANGED
@@ -8,7 +8,7 @@ SKILLS = {
|
|
8 |
1048576 * (0.875 - 1),
|
9 |
1048576 * (0.1375 - 1),
|
10 |
1048576 * (0.275 - 1),
|
11 |
-
1048576 * (0.
|
12 |
]
|
13 |
},
|
14 |
16419: {
|
@@ -139,9 +139,9 @@ SKILLS = {
|
|
139 |
"skill_name": "刀啸风吟",
|
140 |
"damage_base": [100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 205, 220, 235, 240, 250],
|
141 |
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 15, 15, 15, 20, 20, 20],
|
142 |
-
"attack_power_cof": [50 * 1.2 * 1.05 * 1.1 * 1.1 * 1.05] +
|
143 |
-
[(50 + (i - 1) * 14) * 1.2 * 1.05 * 1.1 * 1.1 * 1.05 for i in range(2, 15)] +
|
144 |
-
[256 * 1.2 * 1.05 * 1.1 * 1.1 * 1.05],
|
145 |
},
|
146 |
16760: {
|
147 |
"skill_class": PhysicalDamage,
|
@@ -168,9 +168,9 @@ SKILLS = {
|
|
168 |
"skill_name": "破釜沉舟",
|
169 |
"damage_base": [90, 86, 110, 130, 150, 170, 190, 210, 230, 250, 270, 290, 310, 330, 350],
|
170 |
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 15, 15, 15, 15, 15, 20],
|
171 |
-
"attack_power_cof": [80 * 0.9 * 0.95 * 1.1 * 1.15] +
|
172 |
-
[(80 + (i - 1) * 22) * 0.9 * 0.95 * 1.1 * 1.15 for i in range(2, 15)] +
|
173 |
-
[400 * 0.9 * 0.95 * 1.1 * 1.15],
|
174 |
"weapon_damage_cof": 2048
|
175 |
},
|
176 |
16803: {
|
@@ -248,7 +248,7 @@ SKILLS = {
|
|
248 |
"skill_name": "楚歌",
|
249 |
"damage_base": [55, 70],
|
250 |
"damage_rand": 5,
|
251 |
-
"attack_power_cof": [240 * 0.
|
252 |
},
|
253 |
30645: {
|
254 |
"skill_class": PhysicalDamage,
|
@@ -278,7 +278,9 @@ SKILLS = {
|
|
278 |
37458: {
|
279 |
"skill_class": PhysicalDamage,
|
280 |
"skill_name": "掠关",
|
281 |
-
"
|
|
|
|
|
282 |
}
|
283 |
}
|
284 |
|
|
|
8 |
1048576 * (0.875 - 1),
|
9 |
1048576 * (0.1375 - 1),
|
10 |
1048576 * (0.275 - 1),
|
11 |
+
1048576 * (0.504 - 1)
|
12 |
]
|
13 |
},
|
14 |
16419: {
|
|
|
139 |
"skill_name": "刀啸风吟",
|
140 |
"damage_base": [100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 205, 220, 235, 240, 250],
|
141 |
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 15, 15, 15, 20, 20, 20],
|
142 |
+
"attack_power_cof": [50 * 1.2 * 1.05 * 1.1 * 1.1 * 1.05 * 1.1] +
|
143 |
+
[(50 + (i - 1) * 14) * 1.2 * 1.05 * 1.1 * 1.1 * 1.05 * 1.1 for i in range(2, 15)] +
|
144 |
+
[256 * 1.2 * 1.05 * 1.1 * 1.1 * 1.05 * 1.1],
|
145 |
},
|
146 |
16760: {
|
147 |
"skill_class": PhysicalDamage,
|
|
|
168 |
"skill_name": "破釜沉舟",
|
169 |
"damage_base": [90, 86, 110, 130, 150, 170, 190, 210, 230, 250, 270, 290, 310, 330, 350],
|
170 |
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 15, 15, 15, 15, 15, 20],
|
171 |
+
"attack_power_cof": [80 * 0.9 * 0.95 * 1.1 * 1.15 * 1.1] +
|
172 |
+
[(80 + (i - 1) * 22) * 0.9 * 0.95 * 1.1 * 1.15 * 1.1 for i in range(2, 15)] +
|
173 |
+
[400 * 0.9 * 0.95 * 1.1 * 1.15 * 1.1],
|
174 |
"weapon_damage_cof": 2048
|
175 |
},
|
176 |
16803: {
|
|
|
248 |
"skill_name": "楚歌",
|
249 |
"damage_base": [55, 70],
|
250 |
"damage_rand": 5,
|
251 |
+
"attack_power_cof": [240 * 0.8 * 1.5, 1200 * 0.8 * 1.5],
|
252 |
},
|
253 |
30645: {
|
254 |
"skill_class": PhysicalDamage,
|
|
|
278 |
37458: {
|
279 |
"skill_class": PhysicalDamage,
|
280 |
"skill_name": "掠关",
|
281 |
+
"damage_base": [80, 88, 96, 106, 112, 118, 124, 132, 138, 142, 150, 158, 166, 172, 180],
|
282 |
+
"damage_rand": [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 48, 50],
|
283 |
+
"attack_power_cof": 230 * 1.3
|
284 |
}
|
285 |
}
|
286 |
|
schools/first/talents.py
CHANGED
@@ -1,60 +1,80 @@
|
|
|
|
|
|
1 |
from base.buff import Buff
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
"physical_damage_addition": 154,
|
24 |
-
|
25 |
-
|
26 |
-
},
|
27 |
-
"32859": {
|
28 |
-
"physical_damage_addition": 154,
|
29 |
-
},
|
30 |
-
}
|
31 |
-
},
|
32 |
-
"16728": {
|
33 |
-
"buff_name": "星火",
|
34 |
-
"gain_attributes": {
|
35 |
-
"strength_gain": 102
|
36 |
}
|
37 |
},
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
}
|
45 |
},
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
"
|
50 |
-
|
|
|
|
|
|
|
51 |
}
|
52 |
}
|
53 |
-
}
|
54 |
-
}
|
|
|
|
|
55 |
|
56 |
-
for
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
|
1 |
+
from typing import Dict, List
|
2 |
+
|
3 |
from base.buff import Buff
|
4 |
|
5 |
+
TALENTS: List[Dict[int, dict | Buff]] = [
|
6 |
+
{16691: {}},
|
7 |
+
{16847: {}},
|
8 |
+
{
|
9 |
+
26904: {
|
10 |
+
"buff_name": "冥鼔",
|
11 |
+
"gain_skills": {
|
12 |
+
**{
|
13 |
+
skill_id: {
|
14 |
+
"physical_damage_addition": 205,
|
15 |
+
"physical_shield_gain": -512
|
16 |
+
} for skill_id in [16760, 16382, 20991]
|
17 |
+
},
|
18 |
+
32823: {
|
19 |
+
"physical_shield_gain": [0, 0, -512, -512]
|
20 |
+
},
|
21 |
+
}
|
22 |
+
},
|
23 |
+
17042: {
|
24 |
+
"buff_name": "阳关",
|
25 |
+
"gain_skills": {
|
26 |
+
**{
|
27 |
+
skill_id: {
|
28 |
+
"physical_damage_addition": 154,
|
29 |
+
"physical_shield_gain": -205
|
30 |
+
} for skill_id in [16803, 16802, 16801, 16800, 17043, 19423, 19424]
|
31 |
+
},
|
32 |
+
32859: {
|
33 |
"physical_damage_addition": 154,
|
34 |
+
},
|
35 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
},
|
38 |
+
{16799: {}},
|
39 |
+
{25633: {}},
|
40 |
+
{32857: {}},
|
41 |
+
{17047: {}},
|
42 |
+
{
|
43 |
+
25258: {},
|
44 |
+
16728: {
|
45 |
+
"buff_name": "星火",
|
46 |
+
"gain_attributes": {
|
47 |
+
"strength_gain": 102
|
48 |
+
}
|
49 |
+
},
|
50 |
+
34677: {
|
51 |
+
"buff_name": "绝河",
|
52 |
+
"gain_skills": {
|
53 |
+
20991: {
|
54 |
+
"physical_damage_addition": 307
|
55 |
+
}
|
56 |
}
|
57 |
}
|
58 |
},
|
59 |
+
{16737: {}},
|
60 |
+
{
|
61 |
+
17056: {
|
62 |
+
"buff_name": "绝期",
|
63 |
+
"gain_skills": {
|
64 |
+
11447: {
|
65 |
+
"attack_power_cof_gain": 0.7
|
66 |
+
}
|
67 |
}
|
68 |
}
|
69 |
+
},
|
70 |
+
{16893: {}},
|
71 |
+
{21858: {}}
|
72 |
+
]
|
73 |
|
74 |
+
for talent in TALENTS:
|
75 |
+
for talent_id, detail in talent.items():
|
76 |
+
if not detail:
|
77 |
+
continue
|
78 |
+
talent[talent_id] = Buff(talent_id, detail.pop("buff_name"))
|
79 |
+
for attr, value in detail.items():
|
80 |
+
setattr(talent[talent_id], attr, value)
|
schools/first/test.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
from base.calculator import analyze_details
|
2 |
-
from
|
3 |
from schools.first.attribute import BeiAoJue
|
4 |
-
from schools.first.buffs import BUFFS
|
5 |
-
from schools.first.skills import SKILLS
|
6 |
|
7 |
|
8 |
if __name__ == '__main__':
|
@@ -17,7 +15,7 @@ if __name__ == '__main__':
|
|
17 |
attribute.physical_overcome_base += 24303
|
18 |
attribute.physical_critical_power_base += 7905
|
19 |
|
20 |
-
parser = Parser(
|
21 |
parser("logs.jcl")
|
22 |
analyze_details(parser, attribute)
|
23 |
print(parser.records)
|
|
|
1 |
from base.calculator import analyze_details
|
2 |
+
from qt.scripts.top import Parser
|
3 |
from schools.first.attribute import BeiAoJue
|
|
|
|
|
4 |
|
5 |
|
6 |
if __name__ == '__main__':
|
|
|
15 |
attribute.physical_overcome_base += 24303
|
16 |
attribute.physical_critical_power_base += 7905
|
17 |
|
18 |
+
parser = Parser()
|
19 |
parser("logs.jcl")
|
20 |
analyze_details(parser, attribute)
|
21 |
print(parser.records)
|
utils/__init__.py
ADDED
File without changes
|
utils/lua.py
ADDED
@@ -0,0 +1,350 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def node_to_table(node):
|
2 |
+
if len(node["entries"]) == node["lualen"]:
|
3 |
+
lst = []
|
4 |
+
for kv in node["entries"]:
|
5 |
+
lst.append(kv[1])
|
6 |
+
return lst
|
7 |
+
else:
|
8 |
+
dct = {}
|
9 |
+
for kv in node["entries"]:
|
10 |
+
dct[kv[0]] = kv[1]
|
11 |
+
return dct
|
12 |
+
|
13 |
+
|
14 |
+
def sorter(kv):
|
15 |
+
if isinstance(kv[0], int):
|
16 |
+
return kv[0]
|
17 |
+
return float("inf")
|
18 |
+
|
19 |
+
|
20 |
+
def node_entries_append(node, key, val):
|
21 |
+
node["entries"].append([key, val])
|
22 |
+
node["entries"].sort(key=sorter)
|
23 |
+
lualen = 0
|
24 |
+
for kv in node["entries"]:
|
25 |
+
if kv[0] == lualen + 1:
|
26 |
+
lualen = lualen + 1
|
27 |
+
node["lualen"] = lualen
|
28 |
+
|
29 |
+
|
30 |
+
def parse(raw, encoding="utf-8", multival=False, verbose=False):
|
31 |
+
sbins = raw.encode(encoding)
|
32 |
+
root = {"entries": [], "lualen": 0, "is_root": True}
|
33 |
+
node = root
|
34 |
+
stack = []
|
35 |
+
state = "SEEK_CHILD"
|
36 |
+
pos = 0
|
37 |
+
slen = len(sbins)
|
38 |
+
byte_quoting_char = None
|
39 |
+
key = None
|
40 |
+
escaping = False
|
41 |
+
comment = None
|
42 |
+
component_name = None
|
43 |
+
errmsg = None
|
44 |
+
|
45 |
+
while pos <= slen:
|
46 |
+
byte_current = None
|
47 |
+
byte_current_is_space = False
|
48 |
+
if pos < slen:
|
49 |
+
byte_current = sbins[pos: pos + 1]
|
50 |
+
byte_current_is_space = (
|
51 |
+
byte_current == b" "
|
52 |
+
or byte_current == b"\r"
|
53 |
+
or byte_current == b"\n"
|
54 |
+
or byte_current == b"\t"
|
55 |
+
)
|
56 |
+
if verbose:
|
57 |
+
print("[step] pos", pos, byte_current, state, comment, key, node)
|
58 |
+
|
59 |
+
if comment == "MULTILINE":
|
60 |
+
if byte_current == b"]" and sbins[pos: pos + 2] == b"]]":
|
61 |
+
comment = None
|
62 |
+
pos = pos + 1
|
63 |
+
elif comment == "INLINE":
|
64 |
+
if byte_current == b"\n":
|
65 |
+
comment = None
|
66 |
+
elif state == "SEEK_CHILD":
|
67 |
+
if byte_current is None:
|
68 |
+
break
|
69 |
+
if byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
70 |
+
comment = "MULTILINE"
|
71 |
+
pos = pos + 3
|
72 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
73 |
+
comment = "INLINE"
|
74 |
+
pos = pos + 1
|
75 |
+
elif not node["is_root"] and (
|
76 |
+
(byte_current >= b"A" and byte_current <= b"Z")
|
77 |
+
or (byte_current >= b"a" and byte_current <= b"z")
|
78 |
+
or byte_current == b"_"
|
79 |
+
):
|
80 |
+
state = "KEY_SIMPLE"
|
81 |
+
pos1 = pos
|
82 |
+
elif not node["is_root"] and byte_current == b"[":
|
83 |
+
state = "KEY_EXPRESSION_OPEN"
|
84 |
+
elif byte_current == b"}":
|
85 |
+
if len(stack) == 0:
|
86 |
+
errmsg = (
|
87 |
+
"unexpected table closing, no matching opening braces found."
|
88 |
+
)
|
89 |
+
break
|
90 |
+
prev_env = stack.pop()
|
91 |
+
if prev_env["state"] == "KEY_EXPRESSION_OPEN":
|
92 |
+
key = node_to_table(node)
|
93 |
+
state = "KEY_END"
|
94 |
+
elif prev_env["state"] == "VALUE":
|
95 |
+
node_entries_append(
|
96 |
+
prev_env["node"],
|
97 |
+
prev_env["key"],
|
98 |
+
node_to_table(node),
|
99 |
+
)
|
100 |
+
state = "VALUE_END"
|
101 |
+
key = None
|
102 |
+
node = prev_env["node"]
|
103 |
+
elif not byte_current_is_space:
|
104 |
+
key = node["lualen"] + 1
|
105 |
+
state = "VALUE"
|
106 |
+
pos = pos - 1
|
107 |
+
elif state == "VALUE":
|
108 |
+
if byte_current is None:
|
109 |
+
errmsg = "unexpected empty value."
|
110 |
+
break
|
111 |
+
if byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
112 |
+
comment = "MULTILINE"
|
113 |
+
pos = pos + 3
|
114 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
115 |
+
comment = "INLINE"
|
116 |
+
pos = pos + 1
|
117 |
+
elif byte_current == b'"' or byte_current == b"'":
|
118 |
+
state = "TEXT"
|
119 |
+
component_name = "VALUE"
|
120 |
+
pos1 = pos + 1
|
121 |
+
byte_quoting_char = byte_current
|
122 |
+
elif byte_current == b"-" or (
|
123 |
+
byte_current >= b"0" and byte_current <= b"9"
|
124 |
+
):
|
125 |
+
state = "INT"
|
126 |
+
component_name = "VALUE"
|
127 |
+
pos1 = pos
|
128 |
+
elif byte_current == b".":
|
129 |
+
state = "FLOAT"
|
130 |
+
component_name = "VALUE"
|
131 |
+
pos1 = pos
|
132 |
+
elif byte_current == b"t" and sbins[pos: pos + 4] == b"true":
|
133 |
+
node_entries_append(node, key, True)
|
134 |
+
state = "VALUE_END"
|
135 |
+
key = None
|
136 |
+
pos = pos + 3
|
137 |
+
elif byte_current == b"f" and sbins[pos: pos + 5] == b"false":
|
138 |
+
node_entries_append(node, key, False)
|
139 |
+
state = "VALUE_END"
|
140 |
+
key = None
|
141 |
+
pos = pos + 4
|
142 |
+
elif byte_current == b"{":
|
143 |
+
stack.append({"node": node, "state": state, "key": key})
|
144 |
+
state = "SEEK_CHILD"
|
145 |
+
node = {"entries": [], "lualen": 0, "is_root": False}
|
146 |
+
elif state == "TEXT":
|
147 |
+
if byte_current is None:
|
148 |
+
errmsg = "unexpected string ending: missing close quote."
|
149 |
+
break
|
150 |
+
if escaping:
|
151 |
+
escaping = False
|
152 |
+
elif byte_current == b"\\":
|
153 |
+
escaping = True
|
154 |
+
elif byte_current == byte_quoting_char:
|
155 |
+
data = (
|
156 |
+
sbins[pos1:pos]
|
157 |
+
.replace(b"\\\n", b"\n")
|
158 |
+
.replace(b'\\"', b'"')
|
159 |
+
.replace(b"\\\\", b"\\")
|
160 |
+
.decode(encoding)
|
161 |
+
)
|
162 |
+
if component_name == "KEY":
|
163 |
+
key = data
|
164 |
+
state = "KEY_EXPRESSION_FINISH"
|
165 |
+
elif component_name == "VALUE":
|
166 |
+
node_entries_append(node, key, data)
|
167 |
+
state = "VALUE_END"
|
168 |
+
key = None
|
169 |
+
data = None
|
170 |
+
elif state == "INT":
|
171 |
+
if byte_current == b".":
|
172 |
+
state = "FLOAT"
|
173 |
+
elif byte_current is None or byte_current < b"0" or byte_current > b"9":
|
174 |
+
data = int(sbins[pos1:pos].decode(encoding))
|
175 |
+
if component_name == "KEY":
|
176 |
+
key = data
|
177 |
+
state = "KEY_EXPRESSION_FINISH"
|
178 |
+
pos = pos - 1
|
179 |
+
elif component_name == "VALUE":
|
180 |
+
node_entries_append(node, key, data)
|
181 |
+
state = "VALUE_END"
|
182 |
+
key = None
|
183 |
+
pos = pos - 1
|
184 |
+
data = None
|
185 |
+
elif state == "FLOAT":
|
186 |
+
if byte_current is None or byte_current < b"0" or byte_current > b"9":
|
187 |
+
if pos == pos1 + 1 and sbins[pos1:pos] == b".":
|
188 |
+
errmsg = "unexpected dot."
|
189 |
+
break
|
190 |
+
else:
|
191 |
+
data = float(sbins[pos1:pos].decode(encoding))
|
192 |
+
if component_name == "KEY":
|
193 |
+
key = data
|
194 |
+
state = "KEY_EXPRESSION_FINISH"
|
195 |
+
pos = pos - 1
|
196 |
+
elif component_name == "VALUE":
|
197 |
+
node_entries_append(node, key, data)
|
198 |
+
state = "VALUE_END"
|
199 |
+
key = None
|
200 |
+
pos = pos - 1
|
201 |
+
data = None
|
202 |
+
elif state == "VALUE_END":
|
203 |
+
if byte_current is None:
|
204 |
+
pass
|
205 |
+
elif byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
206 |
+
comment = "MULTILINE"
|
207 |
+
pos = pos + 3
|
208 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
209 |
+
comment = "INLINE"
|
210 |
+
pos = pos + 1
|
211 |
+
elif byte_current == b",":
|
212 |
+
state = "SEEK_CHILD"
|
213 |
+
elif byte_current == b"}":
|
214 |
+
state = "SEEK_CHILD"
|
215 |
+
pos = pos - 1
|
216 |
+
elif not byte_current_is_space:
|
217 |
+
errmsg = "unexpected character."
|
218 |
+
break
|
219 |
+
elif state == "KEY_EXPRESSION_OPEN":
|
220 |
+
if byte_current is None:
|
221 |
+
errmsg = "key expression expected."
|
222 |
+
break
|
223 |
+
if byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
224 |
+
comment = "MULTILINE"
|
225 |
+
pos = pos + 3
|
226 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
227 |
+
comment = "INLINE"
|
228 |
+
pos = pos + 1
|
229 |
+
elif byte_current == b'"' or byte_current == b"'":
|
230 |
+
state = "TEXT"
|
231 |
+
component_name = "KEY"
|
232 |
+
pos1 = pos + 1
|
233 |
+
byte_quoting_char = byte_current
|
234 |
+
elif byte_current == b"-" or (
|
235 |
+
byte_current >= b"0" and byte_current <= b"9"
|
236 |
+
):
|
237 |
+
state = "INT"
|
238 |
+
component_name = "KEY"
|
239 |
+
pos1 = pos
|
240 |
+
elif byte_current == b".":
|
241 |
+
state = "FLOAT"
|
242 |
+
component_name = "KEY"
|
243 |
+
pos1 = pos
|
244 |
+
elif byte_current == b"t" and sbins[pos: pos + 4] == b"true":
|
245 |
+
errmsg = "python do not support bool as dict key."
|
246 |
+
break
|
247 |
+
key = True
|
248 |
+
state = "KEY_EXPRESSION_FINISH"
|
249 |
+
pos = pos + 3
|
250 |
+
elif byte_current == b"f" and sbins[pos: pos + 5] == b"false":
|
251 |
+
errmsg = "python do not support bool variable as dict key."
|
252 |
+
break
|
253 |
+
key = False
|
254 |
+
state = "KEY_EXPRESSION_FINISH"
|
255 |
+
pos = pos + 4
|
256 |
+
elif byte_current == b"{":
|
257 |
+
errmsg = "python do not support lua table variable as dict key."
|
258 |
+
break
|
259 |
+
state = "SEEK_CHILD"
|
260 |
+
stack.push({"node": node, "state": state, "key": key})
|
261 |
+
node = {"entries": [], "lualen": 0}
|
262 |
+
elif state == "KEY_EXPRESSION_FINISH":
|
263 |
+
if byte_current is None:
|
264 |
+
errmsg = 'unexpected end of table key expression, "]" expected.'
|
265 |
+
break
|
266 |
+
if byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
267 |
+
comment = "MULTILINE"
|
268 |
+
pos = pos + 3
|
269 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
270 |
+
comment = "INLINE"
|
271 |
+
pos = pos + 1
|
272 |
+
elif byte_current == b"]":
|
273 |
+
state = "KEY_EXPRESSION_CLOSE"
|
274 |
+
elif not byte_current_is_space:
|
275 |
+
errmsg = 'unexpected character, "]" expected.'
|
276 |
+
break
|
277 |
+
elif state == "KEY_EXPRESSION_CLOSE":
|
278 |
+
if byte_current == b"=":
|
279 |
+
state = "VALUE"
|
280 |
+
elif byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
281 |
+
comment = "MULTILINE"
|
282 |
+
pos = pos + 3
|
283 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
284 |
+
comment = "INLINE"
|
285 |
+
pos = pos + 1
|
286 |
+
elif not byte_current_is_space:
|
287 |
+
errmsg = 'unexpected character, "=" expected.'
|
288 |
+
break
|
289 |
+
elif state == "KEY_SIMPLE":
|
290 |
+
if not (
|
291 |
+
(byte_current >= b"A" and byte_current <= b"Z")
|
292 |
+
or (byte_current >= b"a" and byte_current <= b"z")
|
293 |
+
or (byte_current >= b"0" and byte_current <= b"9")
|
294 |
+
or byte_current == b"_"
|
295 |
+
):
|
296 |
+
key = sbins[pos1:pos].decode(encoding)
|
297 |
+
state = "KEY_SIMPLE_END"
|
298 |
+
pos = pos - 1
|
299 |
+
elif state == "KEY_SIMPLE_END":
|
300 |
+
if byte_current_is_space:
|
301 |
+
pass
|
302 |
+
elif byte_current == b"-" and sbins[pos: pos + 4] == b"--[[":
|
303 |
+
comment = "MULTILINE"
|
304 |
+
pos = pos + 3
|
305 |
+
elif byte_current == b"-" and sbins[pos: pos + 2] == b"--":
|
306 |
+
comment = "INLINE"
|
307 |
+
pos = pos + 1
|
308 |
+
elif byte_current == b"=":
|
309 |
+
state = "VALUE"
|
310 |
+
elif byte_current == b"," or byte_current == b"}":
|
311 |
+
if key == "true":
|
312 |
+
node_entries_append(node, node["lualen"] + 1, True)
|
313 |
+
state = "VALUE_END"
|
314 |
+
key = None
|
315 |
+
pos = pos - 1
|
316 |
+
elif key == "false":
|
317 |
+
node_entries_append(node, node["lualen"] + 1, False)
|
318 |
+
state = "VALUE_END"
|
319 |
+
key = None
|
320 |
+
pos = pos - 1
|
321 |
+
else:
|
322 |
+
key = None
|
323 |
+
errmsg = "invalied table simple key character."
|
324 |
+
break
|
325 |
+
pos += 1
|
326 |
+
if verbose:
|
327 |
+
print(" ", pos, " ", state, comment, key, node)
|
328 |
+
|
329 |
+
# check if there is any errors
|
330 |
+
if errmsg is None and len(stack) != 0:
|
331 |
+
errmsg = 'unexpected end of table, "}" expected.'
|
332 |
+
if errmsg is None and root["lualen"] == 0:
|
333 |
+
errmsg = "nothing can be unserialized from input string."
|
334 |
+
if errmsg is not None:
|
335 |
+
pos = min(pos, slen)
|
336 |
+
start_pos = max(0, pos - 4)
|
337 |
+
end_pos = min(pos + 10, slen)
|
338 |
+
err_parts = sbins[start_pos:end_pos].decode(encoding)
|
339 |
+
err_indent = " " * (pos - start_pos)
|
340 |
+
raise Exception(
|
341 |
+
"Unserialize luadata failed on pos %d:\n %s\n %s^\n %s"
|
342 |
+
% (pos, err_parts, err_indent, errmsg)
|
343 |
+
)
|
344 |
+
|
345 |
+
res = []
|
346 |
+
for kv in root["entries"]:
|
347 |
+
res.append(kv[1])
|
348 |
+
if multival:
|
349 |
+
return tuple(res)
|
350 |
+
return res[0]
|