Spaces:
Runtime error
Runtime error
04.17 commit
Browse files- base/buff.py +3 -0
- base/skill.py +5 -7
- general/buffs.py +15 -14
- general/gains/equipment.py +71 -94
- general/gains/formation.py +2 -2
- general/skills.py +1 -0
- get_assets.py +14 -1
- qt/assets/enchants/belt +1 -1
- qt/assets/enchants/bottoms +1 -1
- qt/assets/enchants/hat +1 -1
- qt/assets/enchants/jacket +1 -1
- qt/assets/enchants/primary_weapon +1 -1
- qt/assets/enchants/ring +1 -1
- qt/assets/enchants/secondary_weapon +1 -1
- qt/assets/enchants/shoes +1 -1
- qt/assets/enchants/tertiary_weapon +1 -1
- qt/assets/enchants/wrist +1 -1
- qt/assets/equipments/belt +1 -1
- qt/assets/equipments/bottoms +1 -1
- qt/assets/equipments/hat +1 -1
- qt/assets/equipments/jacket +1 -1
- qt/assets/equipments/necklace +1 -1
- qt/assets/equipments/pendant +1 -1
- qt/assets/equipments/primary_weapon +1 -1
- qt/assets/equipments/ring +1 -1
- qt/assets/equipments/shoes +1 -1
- qt/assets/equipments/tertiary_weapon +1 -1
- qt/assets/equipments/wrist +1 -1
- qt/components/bonuses.py +3 -1
- qt/components/config.py +4 -4
- qt/components/equipments.py +1 -0
- qt/constant.py +1 -1
- qt/scripts/dashboard.py +25 -25
- schools/bei_ao_jue/buffs.py +7 -0
- schools/bei_ao_jue/gains.py +5 -2
- schools/bei_ao_jue/skills.py +63 -2
- todolist.txt +0 -3
- utils/analyzer.py +86 -63
- utils/parser.py +11 -10
base/buff.py
CHANGED
@@ -13,6 +13,9 @@ class Buff:
|
|
13 |
buff_name: str
|
14 |
buff_level: int = 0
|
15 |
buff_stack: int = 1
|
|
|
|
|
|
|
16 |
gain_skills: Dict[int, ATTR_DICT] = None
|
17 |
gain_attributes: ATTR_DICT = None
|
18 |
|
|
|
13 |
buff_name: str
|
14 |
buff_level: int = 0
|
15 |
buff_stack: int = 1
|
16 |
+
|
17 |
+
activate: bool = True
|
18 |
+
|
19 |
gain_skills: Dict[int, ATTR_DICT] = None
|
20 |
gain_attributes: ATTR_DICT = None
|
21 |
|
base/skill.py
CHANGED
@@ -13,6 +13,8 @@ class Skill:
|
|
13 |
skill_level: int = 0
|
14 |
skill_stack: int = 1
|
15 |
|
|
|
|
|
16 |
bind_skill: int = None
|
17 |
max_stack: int = 1
|
18 |
tick: int = 1
|
@@ -147,7 +149,7 @@ class Skill:
|
|
147 |
|
148 |
expected_damage = critical_strike * critical_damage + (1 - critical_strike) * damage
|
149 |
|
150 |
-
return damage,
|
151 |
|
152 |
|
153 |
class PhysicalDamage(Skill):
|
@@ -166,11 +168,7 @@ class MagicalDamage(Skill):
|
|
166 |
return MAGICAL_ATTACK_POWER_COF(super().attack_power_cof + self.interval)
|
167 |
|
168 |
|
169 |
-
class
|
170 |
-
interval: int = 0
|
171 |
-
|
172 |
-
|
173 |
-
class PhysicalDotDamage(DotDamage):
|
174 |
@property
|
175 |
def attack_power_cof(self):
|
176 |
return PHYSICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
@@ -180,7 +178,7 @@ class PhysicalDotDamage(DotDamage):
|
|
180 |
self._attack_power_cof = attack_power_cof
|
181 |
|
182 |
|
183 |
-
class MagicalDotDamage(
|
184 |
@property
|
185 |
def attack_power_cof(self):
|
186 |
return MAGICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
|
|
13 |
skill_level: int = 0
|
14 |
skill_stack: int = 1
|
15 |
|
16 |
+
activate: bool = True
|
17 |
+
|
18 |
bind_skill: int = None
|
19 |
max_stack: int = 1
|
20 |
tick: int = 1
|
|
|
149 |
|
150 |
expected_damage = critical_strike * critical_damage + (1 - critical_strike) * damage
|
151 |
|
152 |
+
return damage, critical_damage, expected_damage, critical_strike
|
153 |
|
154 |
|
155 |
class PhysicalDamage(Skill):
|
|
|
168 |
return MAGICAL_ATTACK_POWER_COF(super().attack_power_cof + self.interval)
|
169 |
|
170 |
|
171 |
+
class PhysicalDotDamage(Skill):
|
|
|
|
|
|
|
|
|
172 |
@property
|
173 |
def attack_power_cof(self):
|
174 |
return PHYSICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
|
|
178 |
self._attack_power_cof = attack_power_cof
|
179 |
|
180 |
|
181 |
+
class MagicalDotDamage(Skill):
|
182 |
@property
|
183 |
def attack_power_cof(self):
|
184 |
return MAGICAL_DOT_ATTACK_POWER_COF(super().attack_power_cof, self.interval)
|
general/buffs.py
CHANGED
@@ -7,23 +7,24 @@ GENERAL_BUFFS = {
|
|
7 |
"all_damage_addition": [10, 51]
|
8 |
}
|
9 |
},
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
}
|
25 |
|
26 |
for buff_id, detail in GENERAL_BUFFS.items():
|
27 |
GENERAL_BUFFS[buff_id] = Buff(buff_id, detail.pop("buff_name"))
|
|
|
28 |
for attr, value in detail.items():
|
29 |
setattr(GENERAL_BUFFS[buff_id], attr, value)
|
|
|
7 |
"all_damage_addition": [10, 51]
|
8 |
}
|
9 |
},
|
10 |
+
4761: {
|
11 |
+
"buff_name": "水特效",
|
12 |
+
"gain_attributes": {
|
13 |
+
"physical_attack_power_base": [0] * 53 + sum([[0, 0, v, 0] for v in [67, 88, 98, 111]], []),
|
14 |
+
"magical_attack_power_base": [0] * 53 + sum([[0, v, 0, 0] for v in [81, 105, 117, 134]], []),
|
15 |
+
}
|
16 |
+
},
|
17 |
+
6360: {
|
18 |
+
"buff_name": "风特效",
|
19 |
+
"gain_attributes": {
|
20 |
+
"physical_overcome_base": [0] * 99 + sum([[0] + [0, v] + [0] * 5 for v in [6408, 8330, 9291, 10573]], []),
|
21 |
+
"magical_overcome_base": [0] * 99 + sum([[0] + [v, 0] + [0] * 5 for v in [6408, 8330, 9291, 10573]], [])
|
22 |
+
}
|
23 |
+
}
|
24 |
}
|
25 |
|
26 |
for buff_id, detail in GENERAL_BUFFS.items():
|
27 |
GENERAL_BUFFS[buff_id] = Buff(buff_id, detail.pop("buff_name"))
|
28 |
+
GENERAL_BUFFS[buff_id].activate = False
|
29 |
for attr, value in detail.items():
|
30 |
setattr(GENERAL_BUFFS[buff_id], attr, value)
|
general/gains/equipment.py
CHANGED
@@ -1,140 +1,114 @@
|
|
1 |
-
from typing import Dict, Union, Tuple
|
2 |
|
3 |
from base.attribute import Attribute
|
|
|
4 |
from base.gain import Gain
|
|
|
5 |
|
6 |
|
7 |
-
class
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
def __init__(self
|
12 |
-
super().__init__(
|
13 |
-
self.value = value
|
14 |
|
15 |
-
def
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
setattr(attribute, self.attr, getattr(attribute, self.attr) - self.value * self.max_stack)
|
20 |
-
|
21 |
-
|
22 |
-
class PhysicalWaterWeapon(WaterWeapon):
|
23 |
-
attr = "physical_attack_power_base"
|
24 |
-
|
25 |
-
|
26 |
-
class MagicalWaterWeapon(WaterWeapon):
|
27 |
-
attr = "magical_attack_power_base"
|
28 |
-
|
29 |
-
|
30 |
-
class WindPendant(Gain):
|
31 |
-
duration = 15
|
32 |
-
cooldown = 180
|
33 |
-
rate = duration / cooldown
|
34 |
-
physical_overcome = [0] * 101 + sum([[0, v] + [0] * 5 for v in [6408, 8330, 9291]], [])
|
35 |
-
magical_overcome = [0] * 101 + sum([[v, 0] + [0] * 5 for v in [6408, 8330, 9291]], [])
|
36 |
-
|
37 |
-
def __init__(self, level):
|
38 |
-
self.level = level
|
39 |
-
super().__init__(f"{self.physical_overcome[self.level] | self.magical_overcome[self.level]} 风特效")
|
40 |
|
41 |
-
def
|
42 |
-
|
43 |
-
|
|
|
44 |
|
45 |
-
def
|
46 |
-
|
47 |
-
|
|
|
48 |
|
|
|
|
|
|
|
|
|
49 |
|
50 |
-
class CriticalSet(Gain):
|
51 |
-
critical_strike_value = 400
|
52 |
-
critical_power_value = 41
|
53 |
-
critical_strike_attr: str
|
54 |
-
critical_power_attr: str
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
self.
|
|
|
59 |
|
60 |
-
def add_attribute(self, attribute: Attribute):
|
61 |
-
setattr(
|
62 |
-
attribute, self.critical_strike_attr,
|
63 |
-
getattr(attribute, self.critical_strike_attr) + int(self.critical_strike_value * self.rate)
|
64 |
-
)
|
65 |
-
setattr(
|
66 |
-
attribute, self.critical_power_attr,
|
67 |
-
getattr(attribute, self.critical_power_attr) + int(self.critical_power_value * self.rate)
|
68 |
-
)
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
attribute, self.critical_strike_attr,
|
73 |
-
getattr(attribute, self.critical_strike_attr) - int(self.critical_strike_value * self.rate)
|
74 |
-
)
|
75 |
-
setattr(
|
76 |
-
attribute, self.critical_power_attr,
|
77 |
-
getattr(attribute, self.critical_power_attr) - int(self.critical_power_value * self.rate)
|
78 |
-
)
|
79 |
|
80 |
|
81 |
-
class
|
82 |
-
|
83 |
-
critical_power_attr = "physical_critical_power_gain"
|
84 |
|
85 |
-
def __init__(self, rate):
|
86 |
-
super().__init__("外功双会套装", rate)
|
87 |
|
|
|
|
|
88 |
|
89 |
-
class MagicalCriticalSet(CriticalSet):
|
90 |
-
critical_strike_attr = "magical_critical_strike_gain"
|
91 |
-
critical_power_attr = "magical_critical_power_gain"
|
92 |
|
93 |
-
|
94 |
-
|
95 |
|
96 |
|
97 |
-
class HatSpecialEnchant(
|
98 |
-
|
99 |
|
100 |
def __init__(self, level):
|
|
|
101 |
self.level = level
|
102 |
-
super().__init__(f"{self.overcome[self.level]} 破防")
|
103 |
|
104 |
def add_attribute(self, attribute: Attribute):
|
105 |
-
attribute.physical_overcome_base += self.
|
|
|
106 |
|
107 |
def sub_attribute(self, attribute: Attribute):
|
108 |
-
attribute.physical_overcome_base -= self.
|
|
|
109 |
|
110 |
|
111 |
class JacketSpecialEnchant(Gain):
|
112 |
-
physical_ap = [0] *
|
113 |
-
magical_ap = [0] *
|
114 |
|
115 |
def __init__(self, level):
|
116 |
self.level = level
|
117 |
-
super().__init__(
|
118 |
|
119 |
def add_attribute(self, attribute: Attribute):
|
120 |
-
attribute.physical_attack_power_base += self.physical_ap[self.level]
|
121 |
-
attribute.magical_attack_power_base += self.magical_ap[self.level]
|
122 |
|
123 |
def sub_attribute(self, attribute: Attribute):
|
124 |
-
attribute.physical_attack_power_base -= self.physical_ap[self.level]
|
125 |
-
attribute.magical_attack_power_base -= self.magical_ap[self.level]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
|
128 |
EQUIPMENT_GAINS: Dict[Union[Tuple[int, int], int], Gain] = {
|
129 |
-
2400: MagicalWaterWeapon(81),
|
130 |
-
2401: PhysicalWaterWeapon(67),
|
131 |
-
2497: MagicalWaterWeapon(105),
|
132 |
-
2498: PhysicalWaterWeapon(88),
|
133 |
-
2539: MagicalWaterWeapon(117),
|
134 |
-
2540: PhysicalWaterWeapon(98),
|
135 |
**{
|
136 |
-
|
137 |
-
for
|
|
|
|
|
|
|
|
|
138 |
},
|
139 |
**{
|
140 |
(15436, i): HatSpecialEnchant(i)
|
@@ -144,4 +118,7 @@ EQUIPMENT_GAINS: Dict[Union[Tuple[int, int], int], Gain] = {
|
|
144 |
(22151, i): JacketSpecialEnchant(i)
|
145 |
for i in range(13)
|
146 |
},
|
|
|
|
|
|
|
147 |
}
|
|
|
1 |
+
from typing import Dict, Union, Tuple, List
|
2 |
|
3 |
from base.attribute import Attribute
|
4 |
+
from base.buff import Buff
|
5 |
from base.gain import Gain
|
6 |
+
from base.skill import Skill
|
7 |
|
8 |
|
9 |
+
class EquipmentGain(Gain):
|
10 |
+
buff_ids: List[int] = None
|
11 |
+
skill_ids: List[int] = None
|
12 |
|
13 |
+
def __init__(self):
|
14 |
+
super().__init__(type(self).__name__)
|
|
|
15 |
|
16 |
+
def add_buffs(self, buffs: Dict[int, Buff]):
|
17 |
+
if self.buff_ids:
|
18 |
+
for buff_id in self.buff_ids:
|
19 |
+
buffs[buff_id].activate = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
def sub_buffs(self, buffs: Dict[int, Buff]):
|
22 |
+
if self.buff_ids:
|
23 |
+
for buff_id in self.buff_ids:
|
24 |
+
buffs[buff_id].activate = False
|
25 |
|
26 |
+
def add_skills(self, skills: Dict[int, Skill]):
|
27 |
+
if self.skill_ids:
|
28 |
+
for skill_id in self.skill_ids:
|
29 |
+
skills[skill_id].activate = True
|
30 |
|
31 |
+
def sub_skills(self, skills: Dict[int, Skill]):
|
32 |
+
if self.skill_ids:
|
33 |
+
for skill_id in self.skill_ids:
|
34 |
+
skills[skill_id].activate = False
|
35 |
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
+
class CriticalSet(EquipmentGain):
|
38 |
+
def __init__(self, buff_id):
|
39 |
+
self.buff_ids = [buff_id]
|
40 |
+
super().__init__()
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
+
class DivineEffect(EquipmentGain):
|
44 |
+
skill_ids = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
|
47 |
+
class DivineSubSkill(EquipmentGain):
|
48 |
+
skill_ids = []
|
|
|
49 |
|
|
|
|
|
50 |
|
51 |
+
class WaterWeapon(EquipmentGain):
|
52 |
+
buff_ids = [4761]
|
53 |
|
|
|
|
|
|
|
54 |
|
55 |
+
class WindPendant(EquipmentGain):
|
56 |
+
buff_ids = [6360]
|
57 |
|
58 |
|
59 |
+
class HatSpecialEnchant(EquipmentGain):
|
60 |
+
overcome_base = [0] * 8 + [822, 999, 1098, 1218]
|
61 |
|
62 |
def __init__(self, level):
|
63 |
+
super().__init__()
|
64 |
self.level = level
|
|
|
65 |
|
66 |
def add_attribute(self, attribute: Attribute):
|
67 |
+
attribute.physical_overcome_base += self.overcome_base[self.level - 1]
|
68 |
+
attribute.magical_overcome_base += self.overcome_base[self.level - 1]
|
69 |
|
70 |
def sub_attribute(self, attribute: Attribute):
|
71 |
+
attribute.physical_overcome_base -= self.overcome_base[self.level - 1]
|
72 |
+
attribute.magical_overcome_base -= self.overcome_base[self.level - 1]
|
73 |
|
74 |
|
75 |
class JacketSpecialEnchant(Gain):
|
76 |
+
physical_ap = [0] * 8 + [371, 450, 495, 549]
|
77 |
+
magical_ap = [0] * 8 + [442, 538, 591, 655]
|
78 |
|
79 |
def __init__(self, level):
|
80 |
self.level = level
|
81 |
+
super().__init__(type(self).__name__)
|
82 |
|
83 |
def add_attribute(self, attribute: Attribute):
|
84 |
+
attribute.physical_attack_power_base += self.physical_ap[self.level - 1]
|
85 |
+
attribute.magical_attack_power_base += self.magical_ap[self.level - 1]
|
86 |
|
87 |
def sub_attribute(self, attribute: Attribute):
|
88 |
+
attribute.physical_attack_power_base -= self.physical_ap[self.level - 1]
|
89 |
+
attribute.magical_attack_power_base -= self.magical_ap[self.level - 1]
|
90 |
+
|
91 |
+
|
92 |
+
class BeltSpecialEnchant(EquipmentGain):
|
93 |
+
buff_ids = [15455]
|
94 |
+
|
95 |
+
|
96 |
+
class WristSpecialEnchant(EquipmentGain):
|
97 |
+
skill_ids = [22160]
|
98 |
+
|
99 |
+
|
100 |
+
class ShoesSpecialEnchant(EquipmentGain):
|
101 |
+
skill_ids = [33257]
|
102 |
|
103 |
|
104 |
EQUIPMENT_GAINS: Dict[Union[Tuple[int, int], int], Gain] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
**{
|
106 |
+
k: WaterWeapon()
|
107 |
+
for k in (2400, 2401, 2497, 2498, 2539, 2540, 2604, 2605)
|
108 |
+
},
|
109 |
+
**{
|
110 |
+
(6800, i): WindPendant()
|
111 |
+
for i in range(100, 127 + 1)
|
112 |
},
|
113 |
**{
|
114 |
(15436, i): HatSpecialEnchant(i)
|
|
|
118 |
(22151, i): JacketSpecialEnchant(i)
|
119 |
for i in range(13)
|
120 |
},
|
121 |
+
22169: BeltSpecialEnchant(),
|
122 |
+
22166: WristSpecialEnchant(),
|
123 |
+
33247: ShoesSpecialEnchant()
|
124 |
}
|
general/gains/formation.py
CHANGED
@@ -167,10 +167,10 @@ class 霜岚洗锋阵(FormationGain):
|
|
167 |
class 墟海引归阵(FormationGain):
|
168 |
gain_attributes = {
|
169 |
"physical_critical_strike_gain": 300,
|
170 |
-
"physical_attack_power_gain":
|
171 |
"physical_overcome_gain": 102
|
172 |
}
|
173 |
-
core_gain_attributes = {"physical_attack_power_gain":
|
174 |
|
175 |
|
176 |
class 龙皇雪风阵(FormationGain):
|
|
|
167 |
class 墟海引归阵(FormationGain):
|
168 |
gain_attributes = {
|
169 |
"physical_critical_strike_gain": 300,
|
170 |
+
"physical_attack_power_gain": 154,
|
171 |
"physical_overcome_gain": 102
|
172 |
}
|
173 |
+
core_gain_attributes = {"physical_attack_power_gain": 51}
|
174 |
|
175 |
|
176 |
class 龙皇雪风阵(FormationGain):
|
general/skills.py
CHANGED
@@ -21,5 +21,6 @@ GENERAL_SKILLS: Dict[int, Skill | dict] = {
|
|
21 |
|
22 |
for skill_id, detail in GENERAL_SKILLS.items():
|
23 |
GENERAL_SKILLS[skill_id] = detail.pop('skill_class')(skill_id, detail.pop('skill_name'))
|
|
|
24 |
for attr, value in detail.items():
|
25 |
setattr(GENERAL_SKILLS[skill_id], attr, value)
|
|
|
21 |
|
22 |
for skill_id, detail in GENERAL_SKILLS.items():
|
23 |
GENERAL_SKILLS[skill_id] = detail.pop('skill_class')(skill_id, detail.pop('skill_name'))
|
24 |
+
GENERAL_SKILLS[skill_id].activate = False
|
25 |
for attr, value in detail.items():
|
26 |
setattr(GENERAL_SKILLS[skill_id], attr, value)
|
get_assets.py
CHANGED
@@ -50,16 +50,27 @@ SUFFIX_MAP = {
|
|
50 |
1: 'weapon',
|
51 |
0: 'weapon'
|
52 |
}
|
53 |
-
SPECIAL_ENCHANT_MAP = {
|
54 |
3: {
|
|
|
55 |
12800: [15436, 11],
|
56 |
11500: [15436, 10],
|
57 |
10600: [15436, 9]
|
58 |
},
|
59 |
2: {
|
|
|
60 |
12800: [22151, 11],
|
61 |
11500: [22151, 10],
|
62 |
10600: [22151, 9]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
}
|
65 |
|
@@ -186,6 +197,7 @@ def get_equip_detail(row):
|
|
186 |
set_gain[count] = []
|
187 |
set_gain[count].append(int(attr[1]))
|
188 |
return {
|
|
|
189 |
"school": row['BelongSchool'],
|
190 |
"kind": row['MagicKind'],
|
191 |
"level": level,
|
@@ -237,6 +249,7 @@ def get_enchant_detail(row):
|
|
237 |
continue
|
238 |
attrs[ATTR_TYPE_MAP[attr_type]] = int(row[f'Attribute{i + 1}Value1'])
|
239 |
return {
|
|
|
240 |
"score": row['Score'],
|
241 |
"attr": attrs
|
242 |
}
|
|
|
50 |
1: 'weapon',
|
51 |
0: 'weapon'
|
52 |
}
|
53 |
+
SPECIAL_ENCHANT_MAP = {
|
54 |
3: {
|
55 |
+
14350: [15436, 12],
|
56 |
12800: [15436, 11],
|
57 |
11500: [15436, 10],
|
58 |
10600: [15436, 9]
|
59 |
},
|
60 |
2: {
|
61 |
+
14350: [22151, 12],
|
62 |
12800: [22151, 11],
|
63 |
11500: [22151, 10],
|
64 |
10600: [22151, 9]
|
65 |
+
},
|
66 |
+
6: {
|
67 |
+
0: 22169
|
68 |
+
},
|
69 |
+
10: {
|
70 |
+
0: 22166
|
71 |
+
},
|
72 |
+
9: {
|
73 |
+
0: 33247
|
74 |
}
|
75 |
}
|
76 |
|
|
|
197 |
set_gain[count] = []
|
198 |
set_gain[count].append(int(attr[1]))
|
199 |
return {
|
200 |
+
"id": row["ID"],
|
201 |
"school": row['BelongSchool'],
|
202 |
"kind": row['MagicKind'],
|
203 |
"level": level,
|
|
|
249 |
continue
|
250 |
attrs[ATTR_TYPE_MAP[attr_type]] = int(row[f'Attribute{i + 1}Value1'])
|
251 |
return {
|
252 |
+
"id": row['ID'],
|
253 |
"score": row['Score'],
|
254 |
"attr": attrs
|
255 |
}
|
qt/assets/enchants/belt
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"连雾·腰·无双 腰带无双等级提高291": {"score": 419, "attr": {"strain_base": 291}}, "连雾·腰·无双 腰带无双等级提高264": {"score": 380, "attr": {"strain_base": 264}}, "连雾·腰·无双 腰带无双等级提高240": {"score": 313, "attr": {"strain_base": 240}}, "连雾·腰·无双 腰带无双等级提高217": {"score": 258, "attr": {"strain_base": 217}}, "苍·安戎·纹(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·纹(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "白虎染(腰带) 外功攻击永久提升14点(腰带)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜染(腰带) 外功攻击永久提升14点(腰带)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "青龙染(腰带) 内功攻击永久提升16点(腰带)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花染(腰带) 内功攻击永久提升16点(腰带)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "苍·安戎·纹(外破) 内功破防提升24": {"score": 21, "attr": {"physical_overcome_base": 24}}, "苍·安戎·纹(内破) 内功破防提升24": {"score": 21, "attr": {"magical_overcome_base": 24}}, "翠青甲片(腰带) 根骨永久提升5点(腰带)": {"score": 19, "attr": {"spirit_base": 5}}, "云锡染(腰带) 破招永久提升18点(腰带)": {"score": 15, "attr": {"surplus": 18}}, "靛蓝染(腰带) 根骨永久提升4点(腰带)": {"score": 15, "attr": {"spirit_base": 4}}, "蓝叶染(腰带) 力道永久提升4点(腰带)": {"score": 15, "attr": {"strength_base": 4}}, "莹白染(腰带) 力道永久提升4点(腰带)": {"score": 15, "attr": {"strength_base": 4}}, "净白染(腰带) 根骨永久提升4点(腰带)": {"score": 15, "attr": {"spirit_base": 4}}, "铁黑染(腰带) 身法永久提升4点(腰带)": {"score": 15, "attr": {"agility_base": 4}}, "煤黑染图样:腰带 身法永久提升4点(腰带)": {"score": 15, "attr": {"agility_base": 4}}, "杏黄染(腰带) 元气永久提升4点(腰带)": {"score": 15, "attr": {"spunk_base": 4}}, "鹅黄染(腰带) 元气永久提升4点(腰带)": {"score": 15, "attr": {"spunk_base": 4}}, "云英染(腰带) 破招永久提升16点(腰带)": {"score": 13, "attr": {"surplus": 16}}, "角砾染(腰带) 外功会心永久提升16点(腰带)": {"score": 13, "attr": {"physical_critical_strike_base": 16}}, "流纹染(腰带) 内功会心永久提升16点(腰带)": {"score": 13, "attr": {"magical_critical_strike_base": 16}}, "湛蓝甲片(腰带) 力道永久提升3点(腰带)": {"score": 11, "attr": {"strength_base": 3}}, "紫碧甲片(腰带) 身法永久提升3点(腰带)": {"score": 11, "attr": {"agility_base": 3}}}
|
|
|
1 |
+
{"连雾·腰·无双 腰带无双等级提高291": {"id": 12173, "score": 419, "attr": {"strain_base": 291}}, "连雾·腰·无双 腰带无双等级提高264": {"id": 12004, "score": 380, "attr": {"strain_base": 264}}, "连雾·腰·无双 腰带无双等级提高240": {"id": 11835, "score": 313, "attr": {"strain_base": 240}}, "连雾·腰·无双 腰带无双等级提高217": {"id": 11650, "score": 258, "attr": {"strain_base": 217}}, "苍·安戎·纹(外伤) 外功攻击提升18": {"id": 6043, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·纹(内伤) 内功攻击提升22": {"id": 6039, "score": 35, "attr": {"magical_attack_power_base": 22}}, "白虎染(腰带) 外功攻击永久提升14点(腰带)": {"id": 373, "score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜染(腰带) 外功攻击永久提升14点(腰带)": {"id": 355, "score": 27, "attr": {"physical_attack_power_base": 14}}, "青龙染(腰带) 内功攻击永久提升16点(腰带)": {"id": 371, "score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花染(腰带) 内功攻击永久提升16点(腰带)": {"id": 357, "score": 26, "attr": {"magical_attack_power_base": 16}}, "苍·安戎·纹(外破) 内功破防提升24": {"id": 6051, "score": 21, "attr": {"physical_overcome_base": 24}}, "苍·安戎·纹(内破) 内功破防提升24": {"id": 6050, "score": 21, "attr": {"magical_overcome_base": 24}}, "翠青甲片(腰带) 根骨永久提升5点(腰带)": {"id": 173, "score": 19, "attr": {"spirit_base": 5}}, "云锡染(腰带) 破招永久提升18点(腰带)": {"id": 361, "score": 15, "attr": {"surplus": 18}}, "靛蓝染(腰带) 根骨永久提升4点(腰带)": {"id": 28, "score": 15, "attr": {"spirit_base": 4}}, "蓝叶染(腰带) 力道永久提升4点(腰带)": {"id": 26, "score": 15, "attr": {"strength_base": 4}}, "莹白染(腰带) 力道永久提升4点(腰带)": {"id": 23, "score": 15, "attr": {"strength_base": 4}}, "净白染(腰带) 根骨永久提升4点(腰带)": {"id": 19, "score": 15, "attr": {"spirit_base": 4}}, "铁黑染(腰带) 身法永久提升4点(腰带)": {"id": 17, "score": 15, "attr": {"agility_base": 4}}, "煤黑染图样:腰带 身法永久提升4点(腰带)": {"id": 14, "score": 15, "attr": {"agility_base": 4}}, "杏黄染(腰带) 元气永久提升4点(腰带)": {"id": 6, "score": 15, "attr": {"spunk_base": 4}}, "鹅黄染(腰带) 元气永久提升4点(腰带)": {"id": 2, "score": 15, "attr": {"spunk_base": 4}}, "云英染(腰带) 破招永久提升16点(腰带)": {"id": 345, "score": 13, "attr": {"surplus": 16}}, "角砾染(腰带) 外功会心永久提升16点(腰带)": {"id": 341, "score": 13, "attr": {"physical_critical_strike_base": 16}}, "流纹染(腰带) 内功会心永久提升16点(腰带)": {"id": 339, "score": 13, "attr": {"magical_critical_strike_base": 16}}, "湛蓝甲片(腰带) 力道永久提升3点(腰带)": {"id": 170, "score": 11, "attr": {"strength_base": 3}}, "紫碧甲片(腰带) 身法永久提升3点(腰带)": {"id": 169, "score": 11, "attr": {"agility_base": 3}}}
|
qt/assets/enchants/bottoms
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断浪·裤·铸(无双) 无双等级提升974点": {"score": 1050, "attr": {"strain_base": 974}}, "断浪·裤·铸(会心) 全会心提升974点": {"score": 1050, "attr": {"all_critical_strike_base": 974}}, "断浪·裤·铸(内破) 内功破防等级提升974点": {"score": 1050, "attr": {"magical_overcome_base": 974}}, "断浪·裤·铸(外破) 外功破防等级提升974点": {"score": 1050, "attr": {"physical_overcome_base": 974}}, "断浪·裤·铸(根骨) 根骨提升218点": {"score": 1050, "attr": {"spirit_base": 218}}, "断浪·裤·铸(力道) 力道提升218点": {"score": 1050, "attr": {"strength_base": 218}}, "断浪·裤·铸(元气) 元气提升218点": {"score": 1050, "attr": {"spunk_base": 218}}, "断浪·裤·铸(身法) 身法提升218点": {"score": 1050, "attr": {"agility_base": 218}}, "断浪·裤·铸(无双) 无双等级提升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}}, "断浪·裤·甲(无双) 无双等级提升487点": {"score": 524, "attr": {"strain_base": 487}}, "断浪·裤·甲(会心) 全会心提升487点": {"score": 524, "attr": {"all_critical_strike_base": 487}}, "断浪·裤·甲(内破) 内功破防等级提升487点": {"score": 524, "attr": {"magical_overcome_base": 487}}, "断浪·裤·甲(外破) 外功破防等级提升487点": {"score": 524, "attr": {"physical_overcome_base": 487}}, "断浪·裤·甲(根骨) 根骨提升109点": {"score": 524, "attr": {"spirit_base": 109}}, "断浪·裤·甲(力道) 力道提升109点": {"score": 524, "attr": {"strength_base": 109}}, "断浪·裤·甲(元气) 元气提升109点": {"score": 524, "attr": {"spunk_base": 109}}, "断浪·裤·甲(身法) 身法提升109点": {"score": 524, "attr": {"agility_base": 109}}, "断浪·裤·甲(无双) 无双等级提升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}}, "奉天·裤·铸(无双) 无双等级提升491点": {"score": 437, "attr": {"strain_base": 491}}, "奉天·裤·铸(会心) 全会心提升491点": {"score": 437, "attr": {"all_critical_strike_base": 491}}, "奉天·裤·铸(内破) 内功破防等级提升491点": {"score": 437, "attr": {"magical_overcome_base": 491}}, "奉天·裤·铸(外破) 外功破防等级提升491点": {"score": 437, "attr": {"physical_overcome_base": 491}}, "奉天·裤·铸(根骨) 根骨提升110点": {"score": 437, "attr": {"spirit_base": 110}}, "奉天·裤·铸(力道) 力道提升110点": {"score": 437, "attr": {"strength_base": 110}}, "奉天·裤·铸(元气) 元气提升110点": {"score": 437, "attr": {"spunk_base": 110}}, "奉天·裤·铸(身法) 身法提升110点": {"score": 437, "attr": {"agility_base": 110}}, "连雾·裤·无双 下装无双等级提高390": {"score": 419, "attr": {"strain_base": 390}}, "连雾·裤·内破 下装内功破防等级提高390": {"score": 419, "attr": {"magical_overcome_base": 390}}, "连雾·裤·外破 下装外功破防等级提高390": {"score": 419, "attr": {"physical_overcome_base": 390}}, "连雾·裤·会心 下装全会心等级提高390": {"score": 419, "attr": {"all_critical_strike_base": 390}}, "断浪·裤·甲(无双) 无双等级提升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}}, "奉天·裤·铸(无双) 无双等级提升441点": {"score": 390, "attr": {"strain_base": 441}}, "奉天·裤·铸(会心) 全会心提升441点": {"score": 390, "attr": {"all_critical_strike_base": 441}}, "奉天·裤·铸(内破) 内功破防等级提升441点": {"score": 390, "attr": {"magical_overcome_base": 441}}, "奉天·裤·铸(外破) 外功破防等级提升441点": {"score": 390, "attr": {"physical_overcome_base": 441}}, "奉天·裤·铸(根骨) 根骨提升99点": {"score": 390, "attr": {"spirit_base": 99}}, "奉天·裤·铸(力道) 力道提升99点": {"score": 390, "attr": {"strength_base": 99}}, "奉天·裤·铸(元气) 元气提升99点": {"score": 390, "attr": {"spunk_base": 99}}, "奉天·裤·铸(身法) 身法提升99点": {"score": 390, "attr": {"agility_base": 99}}, "连雾·裤·无双 下装无双等级提高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}}, "奉天·裤·铸(无双) 无双等级提升397点": {"score": 352, "attr": {"strain_base": 397}}, "奉天·裤·铸(会心) 全会心提升397点": {"score": 352, "attr": {"all_critical_strike_base": 397}}, "奉天·裤·铸(内破) 内功破防等级提升397点": {"score": 352, "attr": {"magical_overcome_base": 397}}, "奉天·裤·铸(外破) 外功破防等级提升397点": {"score": 352, "attr": {"physical_overcome_base": 397}}, "奉天·裤·铸(根骨) 根骨提升89点": {"score": 352, "attr": {"spirit_base": 89}}, "奉天·裤·铸(力道) 力道提升89点": {"score": 352, "attr": {"strength_base": 89}}, "奉天·裤·铸(元气) 元气提升89点": {"score": 352, "attr": {"spunk_base": 89}}, "奉天·裤·铸(身法) 身法提升89点": {"score": 352, "attr": {"agility_base": 89}}, "断浪·裤·甲(无双) 无双等级提升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}}, "奉天·裤·铸(无双) 无双等级提升325点": {"score": 288, "attr": {"strain_base": 325}}, "奉天·裤·铸(会心) 全会心提升325点": {"score": 288, "attr": {"all_critical_strike_base": 325}}, "奉天·裤·铸(内破) 内功破防等级提升325点": {"score": 288, "attr": {"magical_overcome_base": 325}}, "奉天·裤·铸(外破) 外功破防等级提升325点": {"score": 288, "attr": {"physical_overcome_base": 325}}, "奉天·裤·铸(根骨) 根骨提升73点": {"score": 288, "attr": {"spirit_base": 73}}, "奉天·裤·铸(力道) 力道提升73点": {"score": 288, "attr": {"strength_base": 73}}, "奉天·裤·铸(元气) 元气提升73点": {"score": 288, "attr": {"spunk_base": 73}}, "奉天·裤·铸(身法) 身法提升73点": {"score": 288, "attr": {"agility_base": 73}}, "连雾·裤·无双 下装无双等级提高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}}, "奉天·裤·甲(无双) 无双等级提升289点": {"score": 255, "attr": {"strain_base": 289}}, "奉天·裤·甲(会心) 全会心提升289点": {"score": 255, "attr": {"all_critical_strike_base": 289}}, "奉天·裤·甲(内破) 内功破防等级提升289点": {"score": 255, "attr": {"magical_overcome_base": 289}}, "奉天·裤·甲(外破) 外功破防等级提升289点": {"score": 255, "attr": {"physical_overcome_base": 289}}, "奉天·裤·甲(根骨) 根骨提升65点": {"score": 255, "attr": {"spirit_base": 65}}, "奉天·裤·甲(力道) 力道提升65点": {"score": 255, "attr": {"strength_base": 65}}, "奉天·裤·甲(元气) 元气提升65点": {"score": 255, "attr": {"spunk_base": 65}}, "奉天·裤·甲(身法) 身法提升65点": {"score": 255, "attr": {"agility_base": 65}}, "仙踪·裤·铸(无双) 无双等级提升209点": {"score": 185, "attr": {"strain_base": 209}}, "仙踪·裤·铸(会心) 全会心提升209点": {"score": 185, "attr": {"all_critical_strike_base": 209}}, "仙踪·裤·铸(内破) 内功破防等级提升209点": {"score": 185, "attr": {"magical_overcome_base": 209}}, "仙踪·裤·铸(外破) 外功破防等级提升209点": {"score": 185, "attr": {"physical_overcome_base": 209}}, "仙踪·裤·铸(根骨) 根骨提升47点": {"score": 185, "attr": {"spirit_base": 47}}, "仙踪·裤·铸(力道) 力道提升47点": {"score": 185, "attr": {"strength_base": 47}}, "仙踪·裤·铸(元气) 元气提升47点": {"score": 185, "attr": {"spunk_base": 47}}, "仙踪·裤·铸(身法) 身法提升47点": {"score": 185, "attr": {"agility_base": 47}}, "仙踪·裤·铸(无双) 无双等级提升188点": {"score": 165, "attr": {"strain_base": 188}}, "仙踪·裤·铸(会心) 全会心提升188点": {"score": 165, "attr": {"all_critical_strike_base": 188}}, "仙踪·裤·铸(内破) 内功破防等级提升188点": {"score": 165, "attr": {"magical_overcome_base": 188}}, "仙踪·裤·铸(外破) 外功破防等级提升188点": {"score": 165, "attr": {"physical_overcome_base": 188}}, "仙踪·裤·铸(无双) 无双等级提升166点": {"score": 146, "attr": {"strain_base": 166}}, "仙踪·裤·铸(会心) 全会心提升166点": {"score": 146, "attr": {"all_critical_strike_base": 166}}, "仙踪·裤·铸(内破) 内功破防等级提升166点": {"score": 146, "attr": {"magical_overcome_base": 166}}, "仙踪·裤·铸(外破) 外功破防等级提升166点": {"score": 146, "attr": {"physical_overcome_base": 166}}, "仙踪·裤·铸(根骨) 根骨提升37点": {"score": 146, "attr": {"spirit_base": 37}}, "仙踪·裤·铸(力道) 力道提升37点": {"score": 146, "attr": {"strength_base": 37}}, "仙踪·裤·铸(元气) 元气提升37点": {"score": 146, "attr": {"spunk_base": 37}}, "仙踪·裤·铸(身法) 身法提升37点": {"score": 146, "attr": {"agility_base": 37}}, "仙踪·裤·铸(无双) 无双等级提升152点": {"score": 133, "attr": {"strain_base": 152}}, "仙踪·裤·铸(会心) 全会心提升152点": {"score": 133, "attr": {"all_critical_strike_base": 152}}, "仙踪·裤·铸(内破) 内功破防等级提升152点": {"score": 133, "attr": {"magical_overcome_base": 152}}, "仙踪·裤·铸(外破) 外功破防等级提升152点": {"score": 133, "attr": {"physical_overcome_base": 152}}, "仙踪·裤·铸(根骨) 根骨提升34点": {"score": 133, "attr": {"spirit_base": 34}}, "仙踪·裤·铸(力道) 力道提升34点": {"score": 133, "attr": {"strength_base": 34}}, "仙踪·裤·铸(元气) 元气提升34点": {"score": 133, "attr": {"spunk_base": 34}}, "仙踪·裤·铸(身法) 身法提升34点": {"score": 133, "attr": {"agility_base": 34}}, "珍·重制·印(元气) 元气提升31点": {"score": 121, "attr": {"spunk_base": 31}}, "珍·重制·印(力道) 力道提升31点": {"score": 121, "attr": {"strength_base": 31}}, "珍·重制·印(内伤) 内功攻击提升75点": {"score": 121, "attr": {"magical_attack_power_base": 75}}, "珍·重制·印(外伤) 外功攻击提升62点": {"score": 121, "attr": {"physical_attack_power_base": 62}}, "珍·风骨·印(内伤) 内功攻击提升61点": {"score": 100, "attr": {"magical_attack_power_base": 61}}, "珍·风骨·印(外伤) 外功攻击提升51点": {"score": 100, "attr": {"physical_attack_power_base": 51}}, "珍·风骨·印(元气) 元气提升25点": {"score": 98, "attr": {"spunk_base": 25}}, "珍·风骨·印(力道) 力道提升25点": {"score": 98, "attr": {"strength_base": 25}}, "仙踪·裤·甲(无双) 无双等级提升105点": {"score": 94, "attr": {"strain_base": 105}}, "仙踪·裤·甲(会心) 全会心提升105点": {"score": 94, "attr": {"all_critical_strike_base": 105}}, "仙踪·裤·甲(内破) 内功破防等级提升105点": {"score": 94, "attr": {"magical_overcome_base": 105}}, "仙踪·裤·甲(外破) 外功破防等级提升105点": {"score": 94, "attr": {"physical_overcome_base": 105}}, "仙踪·裤·甲(根骨) 根骨提升24点": {"score": 94, "attr": {"spirit_base": 24}}, "仙踪·裤·甲(力道) 力道提升24点": {"score": 94, "attr": {"strength_base": 24}}, "仙踪·裤·甲(元气) 元气提升24点": {"score": 94, "attr": {"spunk_base": 24}}, "仙踪·裤·甲(身法) 身法提升24点": {"score": 94, "attr": {"agility_base": 24}}, "仙踪·裤·甲(无双) 无双等级提升94点": {"score": 83, "attr": {"strain_base": 94}}, "仙踪·裤·甲(会心) 全会心提升94点": {"score": 83, "attr": {"all_critical_strike_base": 94}}, "仙踪·裤·甲(内破) 内功破防等级提升94点": {"score": 83, "attr": {"magical_overcome_base": 94}}, "仙踪·裤·甲(外破) 外功破防等级提升94点": {"score": 83, "attr": {"physical_overcome_base": 94}}, "仙踪·裤·甲(根骨) 根骨提升21点": {"score": 83, "attr": {"spirit_base": 21}}, "仙踪·裤·甲(力道) 力道提升21点": {"score": 83, "attr": {"strength_base": 21}}, "仙踪·裤·甲(元气) 元气提升21点": {"score": 83, "attr": {"spunk_base": 21}}, "仙踪·裤·甲(身法) 身法提升21点": {"score": 83, "attr": {"agility_base": 21}}, "仙踪·裤·铸(根骨) 根骨提升42点": {"score": 83, "attr": {"spirit_base": 42}}, "仙踪·裤·铸(力道) 力道提升42点": {"score": 83, "attr": {"strength_base": 42}}, "仙踪·裤·铸(元气) 元气提升42点": {"score": 83, "attr": {"spunk_base": 42}}, "仙踪·裤·铸(身法) 身法提升42点": {"score": 83, "attr": {"agility_base": 42}}, "佳·剑胆·印(内伤) 内功攻击提升50点": {"score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·印(外伤) 外功攻击提升42点": {"score": 82, "attr": {"physical_attack_power_base": 42}}, "佳·剑胆·印(元气) 元气提升21点": {"score": 82, "attr": {"spunk_base": 21}}, "佳·剑胆·印(力道) 力道提升21点": {"score": 82, "attr": {"strength_base": 21}}, "仙踪·裤·甲(无双) 无双等级提升83点": {"score": 74, "attr": {"strain_base": 83}}, "仙踪·裤·甲(会心) 全会心提升83点": {"score": 74, "attr": {"all_critical_strike_base": 83}}, "仙踪·裤·甲(内破) 内功破防等级提升83点": {"score": 74, "attr": {"magical_overcome_base": 83}}, "仙踪·裤·甲(外破) 外功破防等级提升83点": {"score": 74, "attr": {"physical_overcome_base": 83}}, "仙踪·裤·甲(根骨) 根骨提升19点": {"score": 74, "attr": {"spirit_base": 19}}, "仙踪·裤·甲(力道) 力道提升19点": {"score": 74, "attr": {"strength_base": 19}}, "仙踪·裤·甲(元气) 元气提升19点": {"score": 74, "attr": {"spunk_base": 19}}, "仙踪·裤·甲(身法) 身法提升19点": {"score": 74, "attr": {"agility_base": 19}}, "珍·重制·印(外会效) 外功会心效果等级提升83点": {"score": 74, "attr": {"physical_critical_power_base": 83}}, "剑胆·印(内伤) 内功攻击提升44点": {"score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·印(外伤) 外功攻击提升37点": {"score": 70, "attr": {"physical_attack_power_base": 37}}, "剑胆·印(元气) 元气提升18点": {"score": 70, "attr": {"spunk_base": 18}}, "剑胆·印(力道) 力道提升18点": {"score": 70, "attr": {"strength_base": 18}}, "仙踪·裤·甲(无双) 无双等级提升76点": {"score": 66, "attr": {"strain_base": 76}}, "仙踪·裤·甲(会心) 全会心提升76点": {"score": 66, "attr": {"all_critical_strike_base": 76}}, "仙踪·裤·甲(内破) 内功破防等级提升76点": {"score": 66, "attr": {"magical_overcome_base": 76}}, "仙踪·裤·甲(外破) 外功破防等级提升76点": {"score": 66, "attr": {"physical_overcome_base": 76}}, "仙踪·裤·甲(根骨) 根骨提升17点": {"score": 66, "attr": {"spirit_base": 17}}, "仙踪·裤·甲(力道) 力道提升17点": {"score": 66, "attr": {"strength_base": 17}}, "仙踪·裤·甲(元气) 元气提升17点": {"score": 66, "attr": {"spunk_base": 17}}, "仙踪·裤·甲(身法) 身法提升17点": {"score": 66, "attr": {"agility_base": 17}}, "珍·重制·印(内会效) 内功会心效果等级提升73点": {"score": 64, "attr": {"magical_critical_power_base": 83}}, "珍·风骨·印(外会效) 外功会心效果等级提升68点": {"score": 60, "attr": {"physical_critical_power_base": 68}}, "珍·风骨·印(内会效) 内功会心效果等级提升68点": {"score": 60, "attr": {"magical_critical_power_base": 68}}, "佳·剑胆·印(外会效) 外功会心效果等级提升56点": {"score": 49, "attr": {"physical_critical_power_base": 56}}, "佳·剑胆·印(内会效) 内功会心效果等级提升56点": {"score": 49, "attr": {"magical_critical_power_base": 56}}, "剑胆·印(外会效) 外功会心效果等级提升49点": {"score": 44, "attr": {"physical_critical_power_base": 49}}, "剑胆·印(内会效) 内功会心效果等级提升49点": {"score": 44, "attr": {"magical_critical_power_base": 49}}, "雅·安戎·印(元气) 元气提升10": {"score": 39, "attr": {"spunk_base": 10}}, "雅·安戎·印(力道) 力道提升10": {"score": 39, "attr": {"strength_base": 10}}, "苍·安戎·印(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·印(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·印(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·印(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "安戎·印(元气) 元气提升9": {"score": 35, "attr": {"spunk_base": 9}}, "安戎·印(力道) 力道提升9": {"score": 35, "attr": {"strength_base": 9}}, "苍海·印(元气) 元气永久提升7点(下装)": {"score": 27, "attr": {"spunk_base": 7}}, "苍海·印(力道) 力道永久提升7点(下装)": {"score": 27, "attr": {"strength_base": 7}}, "白虎染(下装) 外功攻击永久提升14点(下装)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜染(下装) 外功攻击永久提升14点(下装)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "行军·印(外伤) 外功攻击提升15": {"score": 26, "attr": {"physical_attack_power_base": 15}}, "行军·印(内伤) 内功攻击提升16": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "青龙染(下装) 内功攻击永久提升16点(下装)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花染(下装) 内功攻击永久提升16点(下装)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "安戎·印(外会效) 外功会心效果提升24": {"score": 21, "attr": {"physical_critical_power_base": 24}}, "安戎·印(内会效) 内功会心效果提升24": {"score": 21, "attr": {"magical_critical_power_base": 24}}, "岩蓝染(下装) 元气永久提升5点(下装)": {"score": 19, "attr": {"spunk_base": 5}}, "莹白染(下装) 力道永久提升5点(下装)": {"score": 19, "attr": {"strength_base": 5}}, "紫碧绣染(下装) 身法永久提升5点(下装)": {"score": 19, "attr": {"agility_base": 5}}, "云英染(下装) 破招永久提升18点(下装)": {"score": 15, "attr": {"surplus": 18}}, "妃红染(下装) 根骨永久提升4点(下装)": {"score": 15, "attr": {"spirit_base": 4}}, "鹅黄染图样:下装 力道永久提升4点(下装)": {"score": 15, "attr": {"strength_base": 4}}, "角砾染(下装) 外功破防永久提升16点(下装)": {"score": 13, "attr": {"physical_overcome_base": 16}}, "流纹染(下装) 内功破防永久提升16点(下装)": {"score": 13, "attr": {"magical_overcome_base": 16}}, "云锡染(下装) 破招永久提升14点(下装)": {"score": 12, "attr": {"surplus": 14}}, "翠青绣染(下装) 根骨永久提升3点(下装)": {"score": 11, "attr": {"spirit_base": 3}}, "橙红染(下装) 永久提升内功会心10点(下装)": {"score": 8, "attr": {"magical_critical_strike_base": 10}}, "雅·安戎·印(外会效) 外功会心效果提升27": {"score": 0, "attr": {"physical_critical_power_base": 27}}, "雅·安戎·印(内会效) 内功会心效果提升27": {"score": 0, "attr": {"magical_critical_power_base": 27}}, "雅·安戎·印(内伤) 内功攻击提升25": {"score": 0, "attr": {"magical_attack_power_base": 25}}, "雅·安戎·印(外伤) 外功攻击提升21": {"score": 0, "attr": {"physical_attack_power_base": 21}}}
|
|
|
1 |
+
{"断浪·裤·铸(无双) 无双等级提升974点": {"id": 12055, "score": 1050, "attr": {"strain_base": 974}}, "断浪·裤·铸(会心) 全会心提升974点": {"id": 12054, "score": 1050, "attr": {"all_critical_strike_base": 974}}, "断浪·裤·铸(内破) 内功破防等级提升974点": {"id": 12053, "score": 1050, "attr": {"magical_overcome_base": 974}}, "断浪·裤·铸(外破) 外功破防等级提升974点": {"id": 12052, "score": 1050, "attr": {"physical_overcome_base": 974}}, "断浪·裤·铸(根骨) 根骨提升218点": {"id": 12050, "score": 1050, "attr": {"spirit_base": 218}}, "断浪·裤·铸(力道) 力道提升218点": {"id": 12049, "score": 1050, "attr": {"strength_base": 218}}, "断浪·裤·铸(元气) 元气提升218点": {"id": 12048, "score": 1050, "attr": {"spunk_base": 218}}, "断浪·裤·铸(身法) 身法提升218点": {"id": 12047, "score": 1050, "attr": {"agility_base": 218}}, "断浪·裤·铸(无双) 无双等级提升883点": {"id": 11886, "score": 952, "attr": {"strain_base": 883}}, "断浪·裤·铸(会心) 全会心提升883点": {"id": 11885, "score": 952, "attr": {"all_critical_strike_base": 883}}, "断浪·裤·铸(内破) 内功破防等级提升883点": {"id": 11884, "score": 952, "attr": {"magical_overcome_base": 883}}, "断浪·裤·铸(外破) 外功破防等级提升883点": {"id": 11883, "score": 952, "attr": {"physical_overcome_base": 883}}, "断浪·裤·铸(根骨) 根骨提升198点": {"id": 11881, "score": 952, "attr": {"spirit_base": 198}}, "断浪·裤·铸(力道) 力道提升198点": {"id": 11880, "score": 952, "attr": {"strength_base": 198}}, "断浪·裤·铸(元气) 元气提升198点": {"id": 11879, "score": 952, "attr": {"spunk_base": 198}}, "断浪·裤·铸(身法) 身法提升198点": {"id": 11878, "score": 952, "attr": {"agility_base": 198}}, "断浪·裤·铸(无双) 无双等级提升799点": {"id": 11717, "score": 783, "attr": {"strain_base": 799}}, "断浪·裤·铸(会心) 全会心提升799点": {"id": 11716, "score": 783, "attr": {"all_critical_strike_base": 799}}, "断浪·裤·铸(内破) 内功破防等级提升799点": {"id": 11715, "score": 783, "attr": {"magical_overcome_base": 799}}, "断浪·裤·铸(外破) 外功破防等级提升799点": {"id": 11714, "score": 783, "attr": {"physical_overcome_base": 799}}, "断浪·裤·铸(根骨) 根骨提升179点": {"id": 11712, "score": 783, "attr": {"spirit_base": 179}}, "断浪·裤·铸(力道) 力道提升179点": {"id": 11711, "score": 783, "attr": {"strength_base": 179}}, "断浪·裤·铸(元气) 元气提升179点": {"id": 11710, "score": 783, "attr": {"spunk_base": 179}}, "断浪·裤·铸(身法) 身法提升179点": {"id": 11709, "score": 783, "attr": {"agility_base": 179}}, "断浪·裤·铸(无双) 无双等级提升723点": {"id": 11530, "score": 644, "attr": {"strain_base": 723}}, "断浪·裤·铸(会心) 全会心提升723点": {"id": 11529, "score": 644, "attr": {"all_critical_strike_base": 723}}, "断浪·裤·铸(内破) 内功破防等级提升723点": {"id": 11528, "score": 644, "attr": {"magical_overcome_base": 723}}, "断浪·裤·铸(外破) 外功破防等级提升723点": {"id": 11527, "score": 644, "attr": {"physical_overcome_base": 723}}, "断浪·裤·铸(根骨) 根骨提升162点": {"id": 11525, "score": 644, "attr": {"spirit_base": 162}}, "断浪·裤·铸(力道) 力道提升162点": {"id": 11524, "score": 644, "attr": {"strength_base": 162}}, "断浪·裤·铸(元气) 元气提升162点": {"id": 11523, "score": 644, "attr": {"spunk_base": 162}}, "断浪·裤·铸(身法) 身法提升162点": {"id": 11522, "score": 644, "attr": {"agility_base": 162}}, "断浪·裤·甲(无双) 无双等级提升487点": {"id": 12078, "score": 524, "attr": {"strain_base": 487}}, "断浪·裤·甲(会心) 全会心提升487点": {"id": 12077, "score": 524, "attr": {"all_critical_strike_base": 487}}, "断浪·裤·甲(内破) 内功破防等级提升487点": {"id": 12076, "score": 524, "attr": {"magical_overcome_base": 487}}, "断浪·裤·甲(外破) 外功破防等级提升487点": {"id": 12075, "score": 524, "attr": {"physical_overcome_base": 487}}, "断浪·裤·甲(根骨) 根骨提升109点": {"id": 12073, "score": 524, "attr": {"spirit_base": 109}}, "断浪·裤·甲(力道) 力道提升109点": {"id": 12072, "score": 524, "attr": {"strength_base": 109}}, "断浪·裤·甲(元气) 元气提升109点": {"id": 12071, "score": 524, "attr": {"spunk_base": 109}}, "断浪·裤·甲(身法) 身法提升109点": {"id": 12070, "score": 524, "attr": {"agility_base": 109}}, "断浪·裤·甲(无双) 无双等级提升442点": {"id": 11909, "score": 475, "attr": {"strain_base": 442}}, "断浪·裤·甲(会心) 全会心提升442点": {"id": 11908, "score": 475, "attr": {"all_critical_strike_base": 442}}, "断浪·裤·甲(内破) 内功破防��级提升442点": {"id": 11907, "score": 475, "attr": {"magical_overcome_base": 442}}, "断浪·裤·甲(外破) 外功破防等级提升442点": {"id": 11906, "score": 475, "attr": {"physical_overcome_base": 442}}, "断浪·裤·甲(根骨) 根骨提升99点": {"id": 11904, "score": 475, "attr": {"spirit_base": 99}}, "断浪·裤·甲(力道) 力道提升99点": {"id": 11903, "score": 475, "attr": {"strength_base": 99}}, "断浪·裤·甲(元气) 元气提升99点": {"id": 11902, "score": 475, "attr": {"spunk_base": 99}}, "断浪·裤·甲(身法) 身法提升99点": {"id": 11901, "score": 475, "attr": {"agility_base": 99}}, "奉天·裤·铸(无双) 无双等级提升491点": {"id": 11442, "score": 437, "attr": {"strain_base": 491}}, "奉天·裤·铸(会心) 全会心提升491点": {"id": 11441, "score": 437, "attr": {"all_critical_strike_base": 491}}, "奉天·裤·铸(内破) 内功破防等级提升491点": {"id": 11440, "score": 437, "attr": {"magical_overcome_base": 491}}, "奉天·裤·铸(外破) 外功破防等级提升491点": {"id": 11439, "score": 437, "attr": {"physical_overcome_base": 491}}, "奉天·裤·铸(根骨) 根骨提升110点": {"id": 11437, "score": 437, "attr": {"spirit_base": 110}}, "奉天·裤·铸(力道) 力道提升110点": {"id": 11436, "score": 437, "attr": {"strength_base": 110}}, "奉天·裤·铸(元气) 元气提升110点": {"id": 11435, "score": 437, "attr": {"spunk_base": 110}}, "奉天·裤·铸(身法) 身法提升110点": {"id": 11434, "score": 437, "attr": {"agility_base": 110}}, "连雾·裤·无双 下装无双等级提高390": {"id": 12153, "score": 419, "attr": {"strain_base": 390}}, "连雾·裤·内破 下装内功破防等级提高390": {"id": 12152, "score": 419, "attr": {"magical_overcome_base": 390}}, "连雾·裤·外破 下装外功破防等级提高390": {"id": 12151, "score": 419, "attr": {"physical_overcome_base": 390}}, "连雾·裤·会心 下装全会心等级提高390": {"id": 12148, "score": 419, "attr": {"all_critical_strike_base": 390}}, "断浪·裤·甲(无双) 无双等级提升400点": {"id": 11740, "score": 391, "attr": {"strain_base": 400}}, "断浪·裤·甲(会心) 全会心提升400点": {"id": 11739, "score": 391, "attr": {"all_critical_strike_base": 400}}, "断浪·裤·甲(内破) 内功破防等级提升400点": {"id": 11738, "score": 391, "attr": {"magical_overcome_base": 400}}, "断浪·裤·甲(外破) 外功破防等级提升400点": {"id": 11737, "score": 391, "attr": {"physical_overcome_base": 400}}, "断浪·裤·甲(根骨) 根骨提升90点": {"id": 11735, "score": 391, "attr": {"spirit_base": 90}}, "断浪·裤·甲(力道) 力道提升90点": {"id": 11734, "score": 391, "attr": {"strength_base": 90}}, "断浪·裤·甲(元气) 元气提升90点": {"id": 11733, "score": 391, "attr": {"spunk_base": 90}}, "断浪·裤·甲(身法) 身法提升90点": {"id": 11732, "score": 391, "attr": {"agility_base": 90}}, "奉天·裤·铸(无双) 无双等级提升441点": {"id": 11298, "score": 390, "attr": {"strain_base": 441}}, "奉天·裤·铸(会心) 全会心提升441点": {"id": 11297, "score": 390, "attr": {"all_critical_strike_base": 441}}, "奉天·裤·铸(内破) 内功破防等级提升441点": {"id": 11296, "score": 390, "attr": {"magical_overcome_base": 441}}, "奉天·裤·铸(外破) 外功破防等级提升441点": {"id": 11295, "score": 390, "attr": {"physical_overcome_base": 441}}, "奉天·裤·铸(根骨) 根骨提升99点": {"id": 11293, "score": 390, "attr": {"spirit_base": 99}}, "奉天·裤·铸(力道) 力道提升99点": {"id": 11292, "score": 390, "attr": {"strength_base": 99}}, "奉天·裤·铸(元气) 元气提升99点": {"id": 11291, "score": 390, "attr": {"spunk_base": 99}}, "奉天·裤·铸(身法) 身法提升99点": {"id": 11290, "score": 390, "attr": {"agility_base": 99}}, "连雾·裤·无双 下装无双等级提高353": {"id": 11984, "score": 380, "attr": {"strain_base": 353}}, "连雾·裤·内破 下装内功破防等级提高353": {"id": 11983, "score": 380, "attr": {"magical_overcome_base": 353}}, "连雾·裤·外破 下装外功破防等级提高353": {"id": 11982, "score": 380, "attr": {"physical_overcome_base": 353}}, "连雾·裤·会心 下装全会心等级提高353": {"id": 11979, "score": 380, "attr": {"all_critical_strike_base": 353}}, "奉天·裤·铸(无双) 无双等级提升397点": {"id": 11210, "score": 352, "attr": {"strain_base": 397}}, "奉天·裤·铸(会心) 全会心提升397点": {"id": 11209, "score": 352, "attr": {"all_critical_strike_base": 397}}, "奉天·裤·铸(内破) 内功破防等级提升397点": {"id": 11208, "score": 352, "attr": {"magical_overcome_base": 397}}, "奉天·裤·铸(外破) 外功破防等级提升397点": {"id": 11207, "score": 352, "attr": {"physical_overcome_base": 397}}, "奉天·裤·铸(根骨) 根骨提升89点": {"id": 11205, "score": 352, "attr": {"spirit_base": 89}}, "奉天·裤·铸(力道) 力道提��89点": {"id": 11204, "score": 352, "attr": {"strength_base": 89}}, "奉天·裤·铸(元气) 元气提升89点": {"id": 11203, "score": 352, "attr": {"spunk_base": 89}}, "奉天·裤·铸(身法) 身法提升89点": {"id": 11202, "score": 352, "attr": {"agility_base": 89}}, "断浪·裤·甲(无双) 无双等级提升362点": {"id": 11553, "score": 322, "attr": {"strain_base": 362}}, "断浪·裤·甲(会心) 全会心提升362点": {"id": 11552, "score": 322, "attr": {"all_critical_strike_base": 362}}, "断浪·裤·甲(内破) 内功破防等级提升362点": {"id": 11551, "score": 322, "attr": {"magical_overcome_base": 362}}, "断浪·裤·甲(外破) 外功破防等级提升362点": {"id": 11550, "score": 322, "attr": {"physical_overcome_base": 362}}, "断浪·裤·甲(根骨) 根骨提升81点": {"id": 11548, "score": 322, "attr": {"spirit_base": 81}}, "断浪·裤·甲(力道) 力道提升81点": {"id": 11547, "score": 322, "attr": {"strength_base": 81}}, "断浪·裤·甲(元气) 元气提升81点": {"id": 11546, "score": 322, "attr": {"spunk_base": 81}}, "断浪·裤·甲(身法) 身法提升81点": {"id": 11545, "score": 322, "attr": {"agility_base": 81}}, "连雾·裤·无双 下装无双等级提高320": {"id": 11815, "score": 313, "attr": {"strain_base": 320}}, "连雾·裤·内破 下装内功破防等级提高320": {"id": 11814, "score": 313, "attr": {"magical_overcome_base": 320}}, "连雾·裤·外破 下装外功破防等级提高320": {"id": 11813, "score": 313, "attr": {"physical_overcome_base": 320}}, "连雾·裤·会心 下装全会心等级提高320": {"id": 11810, "score": 313, "attr": {"all_critical_strike_base": 320}}, "奉天·裤·铸(无双) 无双等级提升325点": {"id": 11023, "score": 288, "attr": {"strain_base": 325}}, "奉天·裤·铸(会心) 全会心提升325点": {"id": 11022, "score": 288, "attr": {"all_critical_strike_base": 325}}, "奉天·裤·铸(内破) 内功破防等级提升325点": {"id": 11021, "score": 288, "attr": {"magical_overcome_base": 325}}, "奉天·裤·铸(外破) 外功破防等级提升325点": {"id": 11020, "score": 288, "attr": {"physical_overcome_base": 325}}, "奉天·裤·铸(根骨) 根骨提升73点": {"id": 11018, "score": 288, "attr": {"spirit_base": 73}}, "奉天·裤·铸(力道) 力道提升73点": {"id": 11017, "score": 288, "attr": {"strength_base": 73}}, "奉天·裤·铸(元气) 元气提升73点": {"id": 11016, "score": 288, "attr": {"spunk_base": 73}}, "奉天·裤·铸(身法) 身法提升73点": {"id": 11015, "score": 288, "attr": {"agility_base": 73}}, "连雾·裤·无双 下装无双等级提高289": {"id": 11629, "score": 258, "attr": {"strain_base": 289}}, "连雾·裤·内破 下装内功破防等级提高289": {"id": 11628, "score": 258, "attr": {"magical_overcome_base": 289}}, "连雾·裤·外破 下装外功破防等级提高289": {"id": 11627, "score": 258, "attr": {"physical_overcome_base": 289}}, "连雾·裤·会心 下装全会心等级提高289": {"id": 11624, "score": 258, "attr": {"all_critical_strike_base": 289}}, "奉天·裤·甲(无双) 无双等级提升289点": {"id": 11046, "score": 255, "attr": {"strain_base": 289}}, "奉天·裤·甲(会心) 全会心提升289点": {"id": 11045, "score": 255, "attr": {"all_critical_strike_base": 289}}, "奉天·裤·甲(内破) 内功破防等级提升289点": {"id": 11044, "score": 255, "attr": {"magical_overcome_base": 289}}, "奉天·裤·甲(外破) 外功破防等级提升289点": {"id": 11043, "score": 255, "attr": {"physical_overcome_base": 289}}, "奉天·裤·甲(根骨) 根骨提升65点": {"id": 11041, "score": 255, "attr": {"spirit_base": 65}}, "奉天·裤·甲(力道) 力道提升65点": {"id": 11040, "score": 255, "attr": {"strength_base": 65}}, "奉天·裤·甲(元气) 元气提升65点": {"id": 11039, "score": 255, "attr": {"spunk_base": 65}}, "奉天·裤·甲(身法) 身法提升65点": {"id": 11038, "score": 255, "attr": {"agility_base": 65}}, "仙踪·裤·铸(无双) 无双等级提升209点": {"id": 10893, "score": 185, "attr": {"strain_base": 209}}, "仙踪·裤·铸(会心) 全会心提升209点": {"id": 10892, "score": 185, "attr": {"all_critical_strike_base": 209}}, "仙踪·裤·铸(内破) 内功破防等级提升209点": {"id": 10891, "score": 185, "attr": {"magical_overcome_base": 209}}, "仙踪·裤·铸(外破) 外功破防等级提升209点": {"id": 10890, "score": 185, "attr": {"physical_overcome_base": 209}}, "仙踪·裤·铸(根骨) 根骨提升47点": {"id": 10888, "score": 185, "attr": {"spirit_base": 47}}, "仙踪·裤·铸(力道) 力道提升47点": {"id": 10887, "score": 185, "attr": {"strength_base": 47}}, "仙踪·裤·铸(元气) 元气提升47点": {"id": 10886, "score": 185, "attr": {"spunk_base": 47}}, "仙踪·裤·铸(身法) 身法提升47点": {"id": 10885, "score": 185, "attr": {"agility_base": 47}}, "仙踪·裤·铸(无双) 无双等级提升188点": {"id": 10721, "score": 165, "attr": {"strain_base": 188}}, "仙踪·裤·铸(会心) 全会心提升188点": {"id": 10720, "score": 165, "attr": {"all_critical_strike_base": 188}}, "仙踪·裤·铸(内破) 内功破防等级提升188点": {"id": 10719, "score": 165, "attr": {"magical_overcome_base": 188}}, "仙踪·裤·铸(外破) 外功破防等级提升188点": {"id": 10718, "score": 165, "attr": {"physical_overcome_base": 188}}, "仙踪·裤·铸(无双) 无双等级提升166点": {"id": 10584, "score": 146, "attr": {"strain_base": 166}}, "仙踪·裤·铸(会心) 全会心提升166点": {"id": 10583, "score": 146, "attr": {"all_critical_strike_base": 166}}, "仙踪·裤·铸(内破) 内功破防等级提升166点": {"id": 10582, "score": 146, "attr": {"magical_overcome_base": 166}}, "仙踪·裤·铸(外破) 外功破防等级提升166点": {"id": 10581, "score": 146, "attr": {"physical_overcome_base": 166}}, "仙踪·裤·铸(根骨) 根骨提升37点": {"id": 10579, "score": 146, "attr": {"spirit_base": 37}}, "仙踪·裤·铸(力道) 力道提升37点": {"id": 10578, "score": 146, "attr": {"strength_base": 37}}, "仙踪·裤·铸(元气) 元气提升37点": {"id": 10577, "score": 146, "attr": {"spunk_base": 37}}, "仙踪·裤·铸(身法) 身法提升37点": {"id": 10576, "score": 146, "attr": {"agility_base": 37}}, "仙踪·裤·铸(无双) 无双等级提升152点": {"id": 10332, "score": 133, "attr": {"strain_base": 152}}, "仙踪·裤·铸(会心) 全会心提升152点": {"id": 10331, "score": 133, "attr": {"all_critical_strike_base": 152}}, "仙踪·裤·铸(内破) 内功破防等级提升152点": {"id": 10330, "score": 133, "attr": {"magical_overcome_base": 152}}, "仙踪·裤·铸(外破) 外功破防等级提升152点": {"id": 10329, "score": 133, "attr": {"physical_overcome_base": 152}}, "仙踪·裤·铸(根骨) 根骨提升34点": {"id": 10327, "score": 133, "attr": {"spirit_base": 34}}, "仙踪·裤·铸(力道) 力道提升34点": {"id": 10326, "score": 133, "attr": {"strength_base": 34}}, "仙踪·裤·铸(元气) 元气提升34点": {"id": 10325, "score": 133, "attr": {"spunk_base": 34}}, "仙踪·裤·铸(身法) 身法提升34点": {"id": 10324, "score": 133, "attr": {"agility_base": 34}}, "珍·重制·印(元气) 元气提升31点": {"id": 6301, "score": 121, "attr": {"spunk_base": 31}}, "珍·重制·印(力道) 力道提升31点": {"id": 6300, "score": 121, "attr": {"strength_base": 31}}, "珍·重制·印(内伤) 内功攻击提升75点": {"id": 6296, "score": 121, "attr": {"magical_attack_power_base": 75}}, "珍·重制·印(外伤) 外功攻击提升62点": {"id": 6295, "score": 121, "attr": {"physical_attack_power_base": 62}}, "珍·风骨·印(内伤) 内功攻击提升61点": {"id": 6268, "score": 100, "attr": {"magical_attack_power_base": 61}}, "珍·风骨·印(外伤) 外功攻击提升51点": {"id": 6267, "score": 100, "attr": {"physical_attack_power_base": 51}}, "珍·风骨·印(元气) 元气提升25点": {"id": 6247, "score": 98, "attr": {"spunk_base": 25}}, "珍·风骨·印(力道) 力道提升25点": {"id": 6246, "score": 98, "attr": {"strength_base": 25}}, "仙踪·裤·甲(无双) 无双等级提升105点": {"id": 10916, "score": 94, "attr": {"strain_base": 105}}, "仙踪·裤·甲(会心) 全会心提升105点": {"id": 10915, "score": 94, "attr": {"all_critical_strike_base": 105}}, "仙踪·裤·甲(内破) 内功破防等级提升105点": {"id": 10914, "score": 94, "attr": {"magical_overcome_base": 105}}, "仙踪·裤·甲(外破) 外功破防等级提升105点": {"id": 10913, "score": 94, "attr": {"physical_overcome_base": 105}}, "仙踪·裤·甲(根骨) 根骨提升24点": {"id": 10911, "score": 94, "attr": {"spirit_base": 24}}, "仙踪·裤·甲(力道) 力道提升24点": {"id": 10910, "score": 94, "attr": {"strength_base": 24}}, "仙踪·裤·甲(元气) 元气提升24点": {"id": 10909, "score": 94, "attr": {"spunk_base": 24}}, "仙踪·裤·甲(身法) 身法提升24点": {"id": 10908, "score": 94, "attr": {"agility_base": 24}}, "仙踪·裤·甲(无双) 无双等级提升94点": {"id": 10744, "score": 83, "attr": {"strain_base": 94}}, "仙踪·裤·甲(会心) 全会心提升94点": {"id": 10743, "score": 83, "attr": {"all_critical_strike_base": 94}}, "仙踪·裤·甲(内破) 内功破防等级提升94点": {"id": 10742, "score": 83, "attr": {"magical_overcome_base": 94}}, "仙踪·裤·甲(外破) 外功破防等级提升94点": {"id": 10741, "score": 83, "attr": {"physical_overcome_base": 94}}, "仙踪·裤·甲(根骨) 根骨提升21点": {"id": 10739, "score": 83, "attr": {"spirit_base": 21}}, "仙踪·裤·甲(力道) 力道提升21点": {"id": 10738, "score": 83, "attr": {"strength_base": 21}}, "仙踪·裤·甲(元气) 元气提升21点": {"id": 10737, "score": 83, "attr": {"spunk_base": 21}}, "仙踪·裤·甲(身法) 身法提升21点": {"id": 10736, "score": 83, "attr": {"agility_base": 21}}, "仙踪·裤·铸(根骨�� 根骨提升42点": {"id": 10716, "score": 83, "attr": {"spirit_base": 42}}, "仙踪·裤·铸(力道) 力道提升42点": {"id": 10715, "score": 83, "attr": {"strength_base": 42}}, "仙踪·裤·铸(元气) 元气提升42点": {"id": 10714, "score": 83, "attr": {"spunk_base": 42}}, "仙踪·裤·铸(身法) 身法提升42点": {"id": 10713, "score": 83, "attr": {"agility_base": 42}}, "佳·剑胆·印(内伤) 内功攻击提升50点": {"id": 6127, "score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·印(外伤) 外功攻击提升42点": {"id": 6126, "score": 82, "attr": {"physical_attack_power_base": 42}}, "佳·剑胆·印(元气) 元气提升21点": {"id": 6125, "score": 82, "attr": {"spunk_base": 21}}, "佳·剑胆·印(力道) 力道提升21点": {"id": 6124, "score": 82, "attr": {"strength_base": 21}}, "仙踪·裤·甲(无双) 无双等级提升83点": {"id": 10607, "score": 74, "attr": {"strain_base": 83}}, "仙踪·裤·甲(会心) 全会心提升83点": {"id": 10606, "score": 74, "attr": {"all_critical_strike_base": 83}}, "仙踪·裤·甲(内破) 内功破防等级提升83点": {"id": 10605, "score": 74, "attr": {"magical_overcome_base": 83}}, "仙踪·裤·甲(外破) 外功破防等级提升83点": {"id": 10604, "score": 74, "attr": {"physical_overcome_base": 83}}, "仙踪·裤·甲(根骨) 根骨提升19点": {"id": 10602, "score": 74, "attr": {"spirit_base": 19}}, "仙踪·裤·甲(力道) 力道提升19点": {"id": 10601, "score": 74, "attr": {"strength_base": 19}}, "仙踪·裤·甲(元气) 元气提升19点": {"id": 10600, "score": 74, "attr": {"spunk_base": 19}}, "仙踪·裤·甲(身法) 身法提升19点": {"id": 10599, "score": 74, "attr": {"agility_base": 19}}, "珍·重制·印(外会效) 外功会心效果等级提升83点": {"id": 6302, "score": 74, "attr": {"physical_critical_power_base": 83}}, "剑胆·印(内伤) 内功攻击提升44点": {"id": 6089, "score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·印(外伤) 外功攻击提升37点": {"id": 6088, "score": 70, "attr": {"physical_attack_power_base": 37}}, "剑胆·印(元气) 元气提升18点": {"id": 6087, "score": 70, "attr": {"spunk_base": 18}}, "剑胆·印(力道) 力道提升18点": {"id": 6086, "score": 70, "attr": {"strength_base": 18}}, "仙踪·裤·甲(无双) 无双等级提升76点": {"id": 10355, "score": 66, "attr": {"strain_base": 76}}, "仙踪·裤·甲(会心) 全会心提升76点": {"id": 10354, "score": 66, "attr": {"all_critical_strike_base": 76}}, "仙踪·裤·甲(内破) 内功破防等级提升76点": {"id": 10353, "score": 66, "attr": {"magical_overcome_base": 76}}, "仙踪·裤·甲(外破) 外功破防等级提升76点": {"id": 10352, "score": 66, "attr": {"physical_overcome_base": 76}}, "仙踪·裤·甲(根骨) 根骨提升17点": {"id": 10350, "score": 66, "attr": {"spirit_base": 17}}, "仙踪·裤·甲(力道) 力道提升17点": {"id": 10349, "score": 66, "attr": {"strength_base": 17}}, "仙踪·裤·甲(元气) 元气提升17点": {"id": 10348, "score": 66, "attr": {"spunk_base": 17}}, "仙踪·裤·甲(身法) 身法提升17点": {"id": 10347, "score": 66, "attr": {"agility_base": 17}}, "珍·重制·印(内会效) 内功会心效果等级提升73点": {"id": 6303, "score": 64, "attr": {"magical_critical_power_base": 83}}, "珍·风骨·印(外会效) 外功会心效果等级提升68点": {"id": 6250, "score": 60, "attr": {"physical_critical_power_base": 68}}, "珍·风骨·印(内会效) 内功会心效果等级提升68点": {"id": 6249, "score": 60, "attr": {"magical_critical_power_base": 68}}, "佳·剑胆·印(外会效) 外功会心效果等级提升56点": {"id": 6130, "score": 49, "attr": {"physical_critical_power_base": 56}}, "佳·剑胆·印(内会效) 内功会心效果等级提升56点": {"id": 6129, "score": 49, "attr": {"magical_critical_power_base": 56}}, "剑胆·印(外会效) 外功会心效果等级提升49点": {"id": 6092, "score": 44, "attr": {"physical_critical_power_base": 49}}, "剑胆·印(内会效) 内功会心效果等级提升49点": {"id": 6091, "score": 44, "attr": {"magical_critical_power_base": 49}}, "雅·安戎·印(元气) 元气提升10": {"id": 5916, "score": 39, "attr": {"spunk_base": 10}}, "雅·安戎·印(力道) 力道提升10": {"id": 5915, "score": 39, "attr": {"strength_base": 10}}, "苍·安戎·印(外伤) 外功攻击提升18": {"id": 6042, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·印(内伤) 内功攻击提升22": {"id": 6038, "score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·印(内伤) 内功攻击提升22": {"id": 5880, "score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·印(外伤) 外功攻击提升18": {"id": 5879, "score": 35, "attr": {"physical_attack_power_base": 18}}, "安戎·印(元气) 元气提升9": {"id": 5878, "score": 35, "attr": {"spunk_base": 9}}, "安戎·印(力道) 力道���升9": {"id": 5877, "score": 35, "attr": {"strength_base": 9}}, "苍海·印(元气) 元气永久提升7点(下装)": {"id": 5148, "score": 27, "attr": {"spunk_base": 7}}, "苍海·印(力道) 力道永久提升7点(下装)": {"id": 5146, "score": 27, "attr": {"strength_base": 7}}, "白虎染(下装) 外功攻击永久提升14点(下装)": {"id": 372, "score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜染(下装) 外功攻击永久提升14点(下装)": {"id": 354, "score": 27, "attr": {"physical_attack_power_base": 14}}, "行军·印(外伤) 外功攻击提升15": {"id": 5860, "score": 26, "attr": {"physical_attack_power_base": 15}}, "行军·印(内伤) 内功攻击提升16": {"id": 5859, "score": 26, "attr": {"magical_attack_power_base": 16}}, "青龙染(下装) 内功攻击永久提升16点(下装)": {"id": 370, "score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花染(下装) 内功攻击永久提升16点(下装)": {"id": 356, "score": 26, "attr": {"magical_attack_power_base": 16}}, "安戎·印(外会效) 外功会心效果提升24": {"id": 5883, "score": 21, "attr": {"physical_critical_power_base": 24}}, "安戎·印(内会效) 内功会心效果提升24": {"id": 5882, "score": 21, "attr": {"magical_critical_power_base": 24}}, "岩蓝染(下装) 元气永久提升5点(下装)": {"id": 203, "score": 19, "attr": {"spunk_base": 5}}, "莹白染(下装) 力道永久提升5点(下装)": {"id": 200, "score": 19, "attr": {"strength_base": 5}}, "紫碧绣染(下装) 身法永久提升5点(下装)": {"id": 167, "score": 19, "attr": {"agility_base": 5}}, "云英染(下装) 破招永久提升18点(下装)": {"id": 360, "score": 15, "attr": {"surplus": 18}}, "妃红染(下装) 根骨永久提升4点(下装)": {"id": 10, "score": 15, "attr": {"spirit_base": 4}}, "鹅黄染图样:下装 力道永久提升4点(下装)": {"id": 4, "score": 15, "attr": {"strength_base": 4}}, "角砾染(下装) 外功破防永久提升16点(下装)": {"id": 340, "score": 13, "attr": {"physical_overcome_base": 16}}, "流纹染(下装) 内功破防永久提升16点(下装)": {"id": 338, "score": 13, "attr": {"magical_overcome_base": 16}}, "云锡染(下装) 破招永久提升14点(下装)": {"id": 344, "score": 12, "attr": {"surplus": 14}}, "翠青绣染(下装) 根骨永久提升3点(下装)": {"id": 164, "score": 11, "attr": {"spirit_base": 3}}, "橙红染(下装) 永久提升内功会心10点(下装)": {"id": 32, "score": 8, "attr": {"magical_critical_strike_base": 10}}, "雅·安戎·印(外会效) 外功会心效果提升27": {"id": 5921, "score": 0, "attr": {"physical_critical_power_base": 27}}, "雅·安戎·印(内会效) 内功会心效果提升27": {"id": 5920, "score": 0, "attr": {"magical_critical_power_base": 27}}, "雅·安戎·印(内伤) 内功攻击提升25": {"id": 5918, "score": 0, "attr": {"magical_attack_power_base": 25}}, "雅·安戎·印(外伤) 外功攻击提升21": {"id": 5917, "score": 0, "attr": {"physical_attack_power_base": 21}}}
|
qt/assets/enchants/hat
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断浪·头·铸(急速) 加速提升974点": {"score": 1050, "attr": {"haste_base": 974}}, "断浪·头·铸(破招) 破招提升974点": {"score": 1050, "attr": {"surplus": 974}}, "断浪·头·铸(内攻) 内功攻击提升524点": {"score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·头·铸(外攻) 外功攻击提升439点": {"score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·头·铸(急速) 加速提升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}}, "断浪·头·甲(急速) 加速提升487点": {"score": 524, "attr": {"haste_base": 487}}, "断浪·头·甲(破招) 破招提升487点": {"score": 524, "attr": {"surplus": 487}}, "断浪·头·甲(内攻) 内功攻击提升262点": {"score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·头·甲(外攻) 外功攻击提升219点": {"score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·头·甲(急速) 加速提升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}}, "奉天·头·铸(急速) 加速提升491点": {"score": 437, "attr": {"haste_base": 491}}, "奉天·头·铸(破招) 破招提升491点": {"score": 437, "attr": {"surplus": 491}}, "奉天·头·铸(内攻) 内功攻击提升264点": {"score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·头·铸(外攻) 外功攻击提升221点": {"score": 437, "attr": {"physical_attack_power_base": 221}}, "连雾·头·内攻 帽子内功攻击提高210": {"score": 419, "attr": {"magical_attack_power_base": 210}}, "连雾·头·外攻 帽子外功攻击提高176": {"score": 419, "attr": {"physical_attack_power_base": 176}}, "连雾·头·急速 帽子加速等级提高390": {"score": 419, "attr": {"haste_base": 390}}, "断浪·头·甲(急速) 加速提升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}}, "奉天·头·铸(急速) 加速提升441点": {"score": 390, "attr": {"haste_base": 441}}, "奉天·头·铸(破招) 破招提升441点": {"score": 390, "attr": {"surplus": 441}}, "奉天·头·铸(内攻) 内功攻击提升237点": {"score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·头·铸(外攻) 外功攻击提升198点": {"score": 390, "attr": {"physical_attack_power_base": 198}}, "连雾·头·内攻 帽子内功攻击提高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}}, "奉天·头·铸(急速) 加速提升397点": {"score": 352, "attr": {"haste_base": 397}}, "奉天·头·铸(破招) 破招提升397点": {"score": 352, "attr": {"surplus": 397}}, "奉天·头·铸(内攻) 内功攻击提升214点": {"score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·头·铸(外攻) 外功攻击提升179点": {"score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·头·甲(急速) 加速提升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}}, "奉天·头·铸(急速) 加速提升325点": {"score": 288, "attr": {"haste_base": 325}}, "奉天·头·铸(破招) 破招提升325点": {"score": 288, "attr": {"surplus": 325}}, "奉天·头·铸(内攻) 内功攻击提升175点": {"score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·头·铸(外攻) 外功攻击提升146点": {"score": 288, "attr": {"physical_attack_power_base": 146}}, "连雾·头·内攻 帽子内功攻击提高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}}, "奉天·头·甲(急速) 加速提升289点": {"score": 255, "attr": {"haste_base": 289}}, "奉天·头·甲(破招) 破招提升289点": {"score": 255, "attr": {"surplus": 289}}, "奉天·头·甲(内攻) 内功攻击提升155点": {"score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·头·甲(外攻) 外功攻击提升130点": {"score": 255, "attr": {"physical_attack_power_base": 130}}, "仙踪·头·铸(急速) 加速提升209点": {"score": 185, "attr": {"haste_base": 209}}, "仙踪·头·铸(破招) 破招提升209点": {"score": 185, "attr": {"surplus": 209}}, "仙踪·头·铸(内功) 内功攻击提升113点": {"score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·头·铸(外功) 外功攻击提升94点": {"score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·头·铸(急速) 加速提升188点": {"score": 165, "attr": {"haste_base": 188}}, "仙踪·头·铸(破招) 破招提升188点": {"score": 165, "attr": {"surplus": 188}}, "仙踪·头·铸(内功) 内功攻击提升101点": {"score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·头·铸(外攻) 外功攻击提升85点": {"score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·头·铸(急速) 加速提升166点": {"score": 146, "attr": {"haste_base": 166}}, "仙踪·头·铸(破招) 破招提升166点": {"score": 146, "attr": {"surplus": 166}}, "仙踪·头·铸(内功) 内功攻击提升89点": {"score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·头·铸(外攻) 外功攻击提升75点": {"score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·头·铸(急速) 加速提升152点": {"score": 133, "attr": {"haste_base": 152}}, "仙踪·头·铸(破招) 破招提升152点": {"score": 133, "attr": {"surplus": 152}}, "仙踪·头·铸(内功) 内功攻击提升82点": {"score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·头·铸(外攻) 外功攻击提升68点": {"score": 133, "attr": {"physical_attack_power_base": 68}}, "珍·重制·锻(身法) 身法提升31点": {"score": 121, "attr": {"agility_base": 31}}, "珍·重制·锻(根骨) 根骨提升31点": {"score": 121, "attr": {"spirit_base": 31}}, "珍·风骨·锻(身法) 身法提升25点": {"score": 98, "attr": {"agility_base": 25}}, "珍·风骨·锻(根骨) 根骨提升25点": {"score": 98, "attr": {"spirit_base": 25}}, "仙踪·头·甲(急速) 加速提升105点": {"score": 94, "attr": {"haste_base": 105}}, "仙踪·头·甲(破招) 破招提升105点": {"score": 94, "attr": {"surplus": 105}}, "仙踪·头·甲(内功) 内功攻击提升57点": {"score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·头·甲(外功) 外功攻击提升47点": {"score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·头·甲(急速) 加速提升94点": {"score": 83, "attr": {"haste_base": 94}}, "仙踪·头·甲(破招) 破招提升94点": {"score": 83, "attr": {"surplus": 94}}, "仙踪·头·甲(内功) 内功攻击提升51点": {"score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·头·甲(外攻) 外功攻击提升43点": {"score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·锻(身法) 身法提升21点": {"score": 82, "attr": {"agility_base": 21}}, "佳·剑胆·锻(根骨) 根骨提升21点": {"score": 82, "attr": {"spirit_base": 21}}, "仙踪·头·甲(急速) 加速提升83点": {"score": 74, "attr": {"haste_base": 83}}, "仙踪·头·甲(破招) 破招提升83点": {"score": 74, "attr": {"surplus": 83}}, "仙踪·头·甲(内功) 内功攻击提升44点": {"score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·头·甲(外攻) 外功攻击提升37点": {"score": 74, "attr": {"physical_attack_power_base": 37}}, "珍·重制·锻(内会) 内功会心等级提升83点": {"score": 74, "attr": {"magical_critical_strike_base": 83}}, "珍·重制·锻(外会) 外功会心等级提升83点": {"score": 74, "attr": {"physical_critical_strike_base": 83}}, "珍·重制·锻(无双) 无双等级提升83点": {"score": 74, "attr": {"strain_base": 83}}, "珍·重制·锻(内命) 破招等级提升83点": {"score": 74, "attr": {"surplus": 83}}, "珍·重制·锻(外命) 破招等级提升83点": {"score": 74, "attr": {"surplus": 83}}, "珍·重制·锻(加速) 加速提升83点": {"score": 74, "attr": {"haste_base": 83}}, "珍·重制·锻(内破) 内功破防等级提升83点": {"score": 74, "attr": {"magical_overcome_base": 83}}, "珍·重制·锻(外破) 外功破防等级提升83点": {"score": 74, "attr": {"physical_overcome_base": 83}}, "剑胆·锻(身法) 身法提升18点": {"score": 70, "attr": {"agility_base": 18}}, "剑胆·锻(根骨) 根骨提升18点": {"score": 70, "attr": {"spirit_base": 18}}, "仙踪·头·甲(急速) 加速提升76点": {"score": 66, "attr": {"haste_base": 76}}, "仙踪·头·甲(破招) 破招提升76点": {"score": 66, "attr": {"surplus": 76}}, "仙踪·头·甲(内功) 内功攻击提升41点": {"score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·头·甲(外攻) 外功攻击提升34点": {"score": 66, "attr": {"physical_attack_power_base": 34}}, "珍·风骨·锻(加速) 加速提升68点": {"score": 60, "attr": {"haste_base": 68}}, "珍·风骨·锻(内破) 内功破防等级提升68点": {"score": 60, "attr": {"magical_overcome_base": 68}}, "珍·风骨·锻(外破) 外功破防等级提升68点": {"score": 60, "attr": {"physical_overcome_base": 68}}, "珍·风骨·锻(内会) 内功会心等级提升68点": {"score": 60, "attr": {"magical_critical_strike_base": 68}}, "珍·风骨·锻(外会) 外功会心等级提升68点": {"score": 60, "attr": {"physical_critical_strike_base": 68}}, "固·安戎·锻(身法) 身法提升15": {"score": 58, "attr": {"agility_base": 15}}, "固·安戎·锻(根骨) 根骨提升15": {"score": 58, "attr": {"spirit_base": 15}}, "佳·剑胆·锻(加速) 加速等级提升56点": {"score": 49, "attr": {"haste_base": 56}}, "佳·剑胆·锻(无双) 无双等级提升56点": {"score": 49, "attr": {"strain_base": 56}}, "佳·剑胆·锻(内命) 破招等级提升56点": {"score": 49, "attr": {"surplus": 56}}, "佳·剑胆·锻(外命) 破招等级提升56点": {"score": 49, "attr": {"surplus": 56}}, "佳·剑胆·锻(内会) 内功会心等级提升56点": {"score": 49, "attr": {"magical_critical_strike_base": 56}}, "佳·剑胆·锻(外会) 外功会心等级提升56点": {"score": 49, "attr": {"physical_critical_strike_base": 56}}, "佳·剑胆·锻(内破) 内功破防等级提升56点": {"score": 49, "attr": {"magical_overcome_base": 56}}, "佳·剑胆·锻(外破) 外功破防等级提升56点": {"score": 49, "attr": {"physical_overcome_base": 56}}, "剑胆·锻(加速) 加速等级提升49点": {"score": 41, "attr": {"haste_base": 49}}, "剑胆·锻(无双) 无双等级提升49点": {"score": 41, "attr": {"strain_base": 49}}, "剑胆·锻(内命) 破招等级提升49点": {"score": 41, "attr": {"surplus": 49}}, "剑胆·锻(外命) 破招等级提升49点": {"score": 41, "attr": {"surplus": 49}}, "剑胆·锻(内会) 内功会心等级提升49点": {"score": 41, "attr": {"magical_critical_strike_base": 49}}, "剑胆·锻(外会) 外功会心等级提升49点": {"score": 41, "attr": {"physical_critical_strike_base": 49}}, "剑胆·锻(内破) 内功破防等级提升49点": {"score": 41, "attr": {"magical_overcome_base": 49}}, "剑胆·锻(外破) 外功破防等级提升49点": {"score": 41, "attr": {"physical_overcome_base": 49}}, "苍·安戎·锻(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·锻(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "雨花甲片(头部) 内功攻击永久提升18点(头部)": {"score": 30, "attr": {"magical_attack_power_base": 18}}, "苍海·锻(身法) 身法永久提升7点(头部)": {"score": 27, "attr": {"agility_base": 7}}, "苍海·锻(根骨) 根骨永久提升7点(头部)": {"score": 27, "attr": {"spirit_base": 7}}, "青龙甲片(头部) 内功攻击永久提升16点(头部)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "白虎甲片(头部) 外功攻击永久提升13点(头部)": {"score": 25, "attr": {"physical_attack_power_base": 13}}, "黑曜甲片(头部) 外功攻击永久提升13点(头部)": {"score": 25, "attr": {"physical_attack_power_base": 13}}, "固·安戎·锻(加速) 加速提升27": {"score": 23, "attr": {"haste_base": 27}}, "固·安戎·锻(无双) 无双提升27": {"score": 23, "attr": {"strain_base": 27}}, "固·安戎·锻���内命) 破招提升27": {"score": 23, "attr": {"surplus": 27}}, "固·安戎·锻(外命) 破招提升27": {"score": 23, "attr": {"surplus": 27}}, "固·安戎·锻(内会) 内功会心提升27": {"score": 23, "attr": {"magical_critical_strike_base": 27}}, "固·安戎·锻(外会) 外功会心提升27": {"score": 23, "attr": {"physical_critical_strike_base": 27}}, "固·安戎·锻(内破) 内功破防提升27": {"score": 23, "attr": {"magical_overcome_base": 27}}, "固·安戎·锻(外破) 外功破防提升27": {"score": 23, "attr": {"physical_overcome_base": 27}}, "安戎·锻(加速) 加速提升24": {"score": 21, "attr": {"haste_base": 16}}, "岩蓝绣(头部) 元气永久提升5点(头部)": {"score": 19, "attr": {"spunk_base": 5}}, "莹白绣(头部) 力道永久提升5点(头部)": {"score": 19, "attr": {"strength_base": 5}}, "明朗·锻(内功破防) 内功破防永久提升20点": {"score": 17, "attr": {"magical_overcome_base": 20}}, "明朗·锻(外功破防) 外功破防永久提升20点": {"score": 17, "attr": {"physical_overcome_base": 20}}, "云英甲片(头部) 破招永久提升18点(头部)": {"score": 15, "attr": {"surplus": 18}}, "橙红绣(头部) 永久提升内功攻击8点(头部)": {"score": 15, "attr": {"magical_attack_power_base": 8}}, "煤黑绣(头部) 根骨永久提升4点(头部)": {"score": 15, "attr": {"spirit_base": 4}}, "鹅黄绣图样:头部 力道永久提升4点(头部)": {"score": 15, "attr": {"strength_base": 4}}, "云锡甲片(头部) 破招永久提升16点(头部)": {"score": 14, "attr": {"surplus": 16}}, "角砾甲片(头部) 外功破防永久提升16点(头部)": {"score": 14, "attr": {"physical_overcome_base": 16}}, "流纹甲片(头部) 内功破防永久提升16点(头部)": {"score": 14, "attr": {"magical_overcome_base": 16}}, "紫碧甲片(头部) 身法永久提升3点(头部)": {"score": 11, "attr": {"agility_base": 3}}, "山水绣染(头部) 元气永久提升3点(头部)": {"score": 11, "attr": {"spunk_base": 3}}, "安戎·锻(无双) 无双提升24": {"score": 0, "attr": {"strain_base": 24}}, "安戎·锻(内命) 破招提升24": {"score": 0, "attr": {"surplus": 24}}, "安戎·锻(外命) 破招提升24": {"score": 0, "attr": {"surplus": 24}}, "安戎·锻(内会) 内功会心提升24": {"score": 0, "attr": {"magical_critical_strike_base": 24}}, "安戎·锻(外会) 外功会心提升24": {"score": 0, "attr": {"physical_critical_strike_base": 24}}, "安戎·锻(内破) 内功破防提升24": {"score": 0, "attr": {"magical_overcome_base": 24}}, "安戎·锻(外破) 外功破防提升24": {"score": 0, "attr": {"physical_overcome_base": 24}}, "安戎·锻(身法) 身法提升14": {"score": 0, "attr": {"agility_base": 14}}, "安戎·锻(根骨) 根骨提升14": {"score": 0, "attr": {"spirit_base": 14}}, "行军·锻(内破) 内功破防提升12": {"score": 0, "attr": {"magical_overcome_base": 12}}, "行军·锻(外破) 外功破防提升12": {"score": 0, "attr": {"physical_overcome_base": 12}}}
|
|
|
1 |
+
{"断浪·头·铸(急速) 加速提升974点": {"id": 12060, "score": 1050, "attr": {"haste_base": 974}}, "断浪·头·铸(破招) 破招提升974点": {"id": 12059, "score": 1050, "attr": {"surplus": 974}}, "断浪·头·铸(内攻) 内功攻击提升524点": {"id": 12057, "score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·头·铸(外攻) 外功攻击提升439点": {"id": 12056, "score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·头·铸(急速) 加速提升883点": {"id": 11891, "score": 952, "attr": {"haste_base": 883}}, "断浪·头·铸(破招) 破招提升883点": {"id": 11890, "score": 952, "attr": {"surplus": 883}}, "断浪·头·铸(内攻) 内功攻击提升475点": {"id": 11888, "score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·头·铸(外攻) 外功攻击提升398点": {"id": 11887, "score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·头·铸(急速) 加速提升799点": {"id": 11722, "score": 783, "attr": {"haste_base": 799}}, "断浪·头·铸(破招) 破招提升799点": {"id": 11721, "score": 783, "attr": {"surplus": 799}}, "断浪·头·铸(内攻) 内功攻击提升430点": {"id": 11719, "score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·头·铸(外攻) 外功攻击提升360点": {"id": 11718, "score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·头·铸(急速) 加速提升723点": {"id": 11535, "score": 644, "attr": {"haste_base": 723}}, "断浪·头·铸(破招) 破招提升723点": {"id": 11534, "score": 644, "attr": {"surplus": 723}}, "断浪·头·铸(内攻) 内功攻击提升389点": {"id": 11532, "score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·头·铸(外攻) 外功攻击提升326点": {"id": 11531, "score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·��·甲(急速) 加速提升487点": {"id": 12083, "score": 524, "attr": {"haste_base": 487}}, "断浪·头·甲(破招) 破招提升487点": {"id": 12082, "score": 524, "attr": {"surplus": 487}}, "断浪·头·甲(内攻) 内功攻击提升262点": {"id": 12080, "score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·头·甲(外攻) 外功攻击提升219点": {"id": 12079, "score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·头·甲(急速) 加速提升442点": {"id": 11914, "score": 475, "attr": {"haste_base": 442}}, "断浪·头·甲(破招) 破招提升442点": {"id": 11913, "score": 475, "attr": {"surplus": 442}}, "断浪·头·甲(内攻) 内功攻击提升237点": {"id": 11911, "score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·头·甲(外攻) 外功攻击提升199点": {"id": 11910, "score": 475, "attr": {"physical_attack_power_base": 199}}, "奉天·头·铸(急速) 加速提升491点": {"id": 11447, "score": 437, "attr": {"haste_base": 491}}, "奉天·头·铸(破招) 破招提升491点": {"id": 11446, "score": 437, "attr": {"surplus": 491}}, "奉天·头·铸(内攻) 内功攻击提升264点": {"id": 11444, "score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·头·铸(外攻) 外功攻击提升221点": {"id": 11443, "score": 437, "attr": {"physical_attack_power_base": 221}}, "连雾·头·内攻 帽子内功攻击提高210": {"id": 12155, "score": 419, "attr": {"magical_attack_power_base": 210}}, "连雾·头·外攻 帽子外功攻击提高176": {"id": 12154, "score": 419, "attr": {"physical_attack_power_base": 176}}, "连雾·头·急速 帽子加速等级提高390": {"id": 12150, "score": 419, "attr": {"haste_base": 390}}, "断浪·头·甲(急速) 加速提升400点": {"id": 11745, "score": 391, "attr": {"haste_base": 400}}, "断浪·头·甲(破招) 破招提升400点": {"id": 11744, "score": 391, "attr": {"surplus": 400}}, "断浪·头·甲(内攻) 内功攻击提升215点": {"id": 11742, "score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·头·甲(外攻) 外功攻击提升180点": {"id": 11741, "score": 391, "attr": {"physical_attack_power_base": 180}}, "奉天·头·铸(急速) 加速提升441点": {"id": 11303, "score": 390, "attr": {"haste_base": 441}}, "奉天·头·铸(破招) 破招提升441点": {"id": 11302, "score": 390, "attr": {"surplus": 441}}, "奉天·头·铸(内攻) 内功攻击提升237点": {"id": 11300, "score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·头·铸(外攻) 外功攻击提升198点": {"id": 11299, "score": 390, "attr": {"physical_attack_power_base": 198}}, "连雾·头·内攻 帽子内功攻击提高190": {"id": 11986, "score": 380, "attr": {"magical_attack_power_base": 190}}, "连雾·头·外攻 帽子外功攻击提高159": {"id": 11985, "score": 380, "attr": {"physical_attack_power_base": 159}}, "连雾·头·急速 帽子加速等级提高353": {"id": 11981, "score": 380, "attr": {"haste_base": 353}}, "奉天·头·铸(急速) 加速提升397点": {"id": 11215, "score": 352, "attr": {"haste_base": 397}}, "奉天·头·铸(破招) 破招提升397点": {"id": 11214, "score": 352, "attr": {"surplus": 397}}, "奉天·头·铸(内攻) 内功攻击提升214点": {"id": 11212, "score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·头·铸(外攻) 外功攻击提升179点": {"id": 11211, "score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·头·甲(急速) 加速提升362点": {"id": 11558, "score": 322, "attr": {"haste_base": 362}}, "断浪·头·甲(破招) 破招提升362点": {"id": 11557, "score": 322, "attr": {"surplus": 362}}, "断浪·头·甲(内攻) 内功攻击提升195点": {"id": 11555, "score": 322, "attr": {"magical_attack_power_base": 195}}, "断浪·头·甲(外攻) 外功攻击提升163点": {"id": 11554, "score": 322, "attr": {"physical_attack_power_base": 163}}, "连雾·头·内攻 帽子内功攻击提高172": {"id": 11817, "score": 313, "attr": {"magical_attack_power_base": 172}}, "连雾·头·外攻 帽子外功攻击提高144": {"id": 11816, "score": 313, "attr": {"physical_attack_power_base": 144}}, "连雾·头·急速 帽子加速等级提高320": {"id": 11812, "score": 313, "attr": {"haste_base": 320}}, "奉天·头·铸(急速) 加速提升325点": {"id": 11028, "score": 288, "attr": {"haste_base": 325}}, "奉天·头·铸(破招) 破招提升325点": {"id": 11027, "score": 288, "attr": {"surplus": 325}}, "奉天·头·铸(内攻) 内功攻击提升175点": {"id": 11025, "score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·头·铸(外攻) 外功攻击提升146点": {"id": 11024, "score": 288, "attr": {"physical_attack_power_base": 146}}, "连雾·头·内攻 帽子内功攻击提高156": {"id": 11631, "score": 258, "attr": {"magical_attack_power_base": 156}}, "连雾·头·外攻 帽子外功攻击提高130": {"id": 11630, "score": 258, "attr": {"physical_attack_power_base": 130}}, "连雾·头·急速 帽子加速等级提高289": {"id": 11626, "score": 258, "attr": {"haste_base": 289}}, "奉天·头·甲(急速) 加速提升289点": {"id": 11051, "score": 255, "attr": {"haste_base": 289}}, "奉天·头·甲(破招) 破招提升289点": {"id": 11050, "score": 255, "attr": {"surplus": 289}}, "奉天·头·甲(内攻) 内功攻击提升155点": {"id": 11048, "score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·头·甲(外攻) 外功攻击提升130点": {"id": 11047, "score": 255, "attr": {"physical_attack_power_base": 130}}, "仙踪·头·铸(急速) 加速提升209点": {"id": 10898, "score": 185, "attr": {"haste_base": 209}}, "仙踪·头·铸(破招) 破招提升209点": {"id": 10897, "score": 185, "attr": {"surplus": 209}}, "仙踪·头·铸(内功) 内功攻击提升113点": {"id": 10895, "score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·头·铸(外功) 外功攻击提升94点": {"id": 10894, "score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·头·铸(急速) 加速提升188点": {"id": 10726, "score": 165, "attr": {"haste_base": 188}}, "仙踪·头·铸(破招) 破招提升188点": {"id": 10725, "score": 165, "attr": {"surplus": 188}}, "仙踪·头·铸(内功) 内功攻击提升101点": {"id": 10723, "score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·头·铸(外攻) 外功攻击提升85点": {"id": 10722, "score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·头·铸(急速) 加速提升166点": {"id": 10589, "score": 146, "attr": {"haste_base": 166}}, "仙踪·头·铸(破招) 破招提升166点": {"id": 10588, "score": 146, "attr": {"surplus": 166}}, "仙踪·头·铸(内功) 内功攻击提升89点": {"id": 10586, "score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·头·铸(外攻) 外功攻击提升75点": {"id": 10585, "score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·头·铸(急速) 加速提升152点": {"id": 10337, "score": 133, "attr": {"haste_base": 152}}, "仙踪·头·铸(破招) 破招提升152点": {"id": 10336, "score": 133, "attr": {"surplus": 152}}, "仙踪·头·铸(内功) 内功攻击提升82点": {"id": 10334, "score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·头·铸(外攻) 外功攻击提升68点": {"id": 10333, "score": 133, "attr": {"physical_attack_power_base": 68}}, "珍·重制·锻(身法) 身法提升31点": {"id": 6334, "score": 121, "attr": {"agility_base": 31}}, "珍·重制·锻(根骨) 根骨提升31点": {"id": 6333, "score": 121, "attr": {"spirit_base": 31}}, "珍·风骨·锻(身法) 身法提升25点": {"id": 6258, "score": 98, "attr": {"agility_base": 25}}, "珍·风骨·锻(根骨) 根骨提升25点": {"id": 6257, "score": 98, "attr": {"spirit_base": 25}}, "仙踪·头·甲(急速) 加速提升105点": {"id": 10921, "score": 94, "attr": {"haste_base": 105}}, "仙踪·头·甲(破招) 破招提升105点": {"id": 10920, "score": 94, "attr": {"surplus": 105}}, "仙踪·头·甲(内功) 内功攻击提升57点": {"id": 10918, "score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·头·甲(外功) 外功攻击提升47点": {"id": 10917, "score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·头·甲(急速) 加速提升94点": {"id": 10749, "score": 83, "attr": {"haste_base": 94}}, "仙踪·头·甲(破招) 破招提升94点": {"id": 10748, "score": 83, "attr": {"surplus": 94}}, "仙踪·头·甲(内功) 内功攻击提升51点": {"id": 10746, "score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·头·甲(外攻) 外功攻击提升43点": {"id": 10745, "score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·锻(身法) 身法提升21点": {"id": 6181, "score": 82, "attr": {"agility_base": 21}}, "佳·剑胆·锻(根骨) 根骨提升21点": {"id": 6180, "score": 82, "attr": {"spirit_base": 21}}, "仙踪·头·甲(急速) 加速提升83点": {"id": 10612, "score": 74, "attr": {"haste_base": 83}}, "仙踪·头·甲(破招) 破招提升83点": {"id": 10611, "score": 74, "attr": {"surplus": 83}}, "仙踪·头·甲(内功) 内功攻击提升44点": {"id": 10609, "score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·头·甲(外攻) 外功攻击提升37点": {"id": 10608, "score": 74, "attr": {"physical_attack_power_base": 37}}, "珍·重制·锻(内会) 内功会心等级提升83点": {"id": 6336, "score": 74, "attr": {"magical_critical_strike_base": 83}}, "珍·重制·锻(外会) 外功会心等级提升83点": {"id": 6335, "score": 74, "attr": {"physical_critical_strike_base": 83}}, "珍·重制·锻(无双) 无双等级提升83点": {"id": 6332, "score": 74, "attr": {"strain_base": 83}}, "珍·重制·锻(内命) 破招等级提升83点": {"id": 6331, "score": 74, "attr": {"surplus": 83}}, "珍·重制·锻(外命) 破招等级提升83点": {"id": 6330, "score": 74, "attr": {"surplus": 83}}, "珍·���制·锻(加速) 加速提升83点": {"id": 6329, "score": 74, "attr": {"haste_base": 83}}, "珍·重制·锻(内破) 内功破防等级提升83点": {"id": 6328, "score": 74, "attr": {"magical_overcome_base": 83}}, "珍·重制·锻(外破) 外功破防等级提升83点": {"id": 6327, "score": 74, "attr": {"physical_overcome_base": 83}}, "剑胆·锻(身法) 身法提升18点": {"id": 6151, "score": 70, "attr": {"agility_base": 18}}, "剑胆·锻(根骨) 根骨提升18点": {"id": 6150, "score": 70, "attr": {"spirit_base": 18}}, "仙踪·头·甲(急速) 加速提升76点": {"id": 10360, "score": 66, "attr": {"haste_base": 76}}, "仙踪·头·甲(破招) 破招提升76点": {"id": 10359, "score": 66, "attr": {"surplus": 76}}, "仙踪·头·甲(内功) 内功攻击提升41点": {"id": 10357, "score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·头·甲(外攻) 外功攻击提升34点": {"id": 10356, "score": 66, "attr": {"physical_attack_power_base": 34}}, "珍·风骨·锻(加速) 加速提升68点": {"id": 6285, "score": 60, "attr": {"haste_base": 68}}, "珍·风骨·锻(内破) 内功破防等级提升68点": {"id": 6284, "score": 60, "attr": {"magical_overcome_base": 68}}, "珍·风骨·锻(外破) 外功破防等级提升68点": {"id": 6283, "score": 60, "attr": {"physical_overcome_base": 68}}, "珍·风骨·锻(内会) 内功会心等级提升68点": {"id": 6260, "score": 60, "attr": {"magical_critical_strike_base": 68}}, "珍·风骨·锻(外会) 外功会心等级提升68点": {"id": 6259, "score": 60, "attr": {"physical_critical_strike_base": 68}}, "固·安戎·锻(身法) 身法提升15": {"id": 5978, "score": 58, "attr": {"agility_base": 15}}, "固·安戎·锻(根骨) 根骨提升15": {"id": 5977, "score": 58, "attr": {"spirit_base": 15}}, "佳·剑胆·锻(加速) 加速等级提升56点": {"id": 6190, "score": 49, "attr": {"haste_base": 56}}, "佳·剑胆·锻(无双) 无双等级提升56点": {"id": 6189, "score": 49, "attr": {"strain_base": 56}}, "佳·剑胆·锻(内命) 破招等级提升56点": {"id": 6188, "score": 49, "attr": {"surplus": 56}}, "佳·剑胆·锻(外命) 破招等级提升56点": {"id": 6187, "score": 49, "attr": {"surplus": 56}}, "佳·剑胆·锻(内会) 内功会心等级提升56点": {"id": 6186, "score": 49, "attr": {"magical_critical_strike_base": 56}}, "佳·剑胆·锻(外会) 外功会心等级提升56点": {"id": 6185, "score": 49, "attr": {"physical_critical_strike_base": 56}}, "佳·剑胆·锻(内破) 内功破防等级提升56点": {"id": 6183, "score": 49, "attr": {"magical_overcome_base": 56}}, "佳·剑胆·锻(外破) 外功破防等级提升56点": {"id": 6182, "score": 49, "attr": {"physical_overcome_base": 56}}, "剑胆·锻(加速) 加速等级提升49点": {"id": 6160, "score": 41, "attr": {"haste_base": 49}}, "剑胆·锻(无双) 无双等级提升49点": {"id": 6159, "score": 41, "attr": {"strain_base": 49}}, "剑胆·锻(内命) 破招等级提升49点": {"id": 6158, "score": 41, "attr": {"surplus": 49}}, "剑胆·锻(外命) 破招等级提升49点": {"id": 6157, "score": 41, "attr": {"surplus": 49}}, "剑胆·锻(内会) 内功会心等级提升49点": {"id": 6156, "score": 41, "attr": {"magical_critical_strike_base": 49}}, "剑胆·锻(外会) 外功会心等级提升49点": {"id": 6155, "score": 41, "attr": {"physical_critical_strike_base": 49}}, "剑胆·锻(内破) 内功破防等级提升49点": {"id": 6153, "score": 41, "attr": {"magical_overcome_base": 49}}, "剑胆·锻(外破) 外功破防等级提升49点": {"id": 6152, "score": 41, "attr": {"physical_overcome_base": 49}}, "苍·安戎·锻(外伤) 外功攻击提升18": {"id": 6053, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·锻(内伤) 内功攻击提升22": {"id": 6052, "score": 35, "attr": {"magical_attack_power_base": 22}}, "雨花甲片(头部) 内功攻击永久提升18点(头部)": {"id": 404, "score": 30, "attr": {"magical_attack_power_base": 18}}, "苍海·锻(身法) 身法永久提升7点(头部)": {"id": 5152, "score": 27, "attr": {"agility_base": 7}}, "苍海·锻(根骨) 根骨永久提升7点(头部)": {"id": 5150, "score": 27, "attr": {"spirit_base": 7}}, "青龙甲片(头部) 内功攻击永久提升16点(头部)": {"id": 422, "score": 26, "attr": {"magical_attack_power_base": 16}}, "白虎甲片(头部) 外功攻击永久提升13点(头部)": {"id": 424, "score": 25, "attr": {"physical_attack_power_base": 13}}, "黑曜甲片(头部) 外功攻击永久提升13点(头部)": {"id": 402, "score": 25, "attr": {"physical_attack_power_base": 13}}, "固·安戎·锻(加速) 加速提升27": {"id": 6013, "score": 23, "attr": {"haste_base": 27}}, "固·安戎·锻(无双) 无双提升27": {"id": 5986, "score": 23, "attr": {"strain_base": 27}}, "固·安戎·锻(内命) 破招提升27": {"id": 5985, "score": 23, "attr": {"surplus": 27}}, "固·安戎·锻(外命) 破招提升27": {"id": 5984, "score": 23, "attr": {"surplus": 27}}, "固·安戎·锻(内会) 内功会心提升27": {"id": 5983, "score": 23, "attr": {"magical_critical_strike_base": 27}}, "固·安戎·锻(外会) 外功会心提升27": {"id": 5982, "score": 23, "attr": {"physical_critical_strike_base": 27}}, "固·安戎·锻(内破) 内功破防提升27": {"id": 5980, "score": 23, "attr": {"magical_overcome_base": 27}}, "固·安戎·锻(外破) 外功破防提升27": {"id": 5979, "score": 23, "attr": {"physical_overcome_base": 27}}, "安戎·锻(加速) 加速提升24": {"id": 6011, "score": 21, "attr": {"haste_base": 16}}, "岩蓝绣(头部) 元气永久提升5点(头部)": {"id": 204, "score": 19, "attr": {"spunk_base": 5}}, "莹白绣(头部) 力道永久提升5点(头部)": {"id": 199, "score": 19, "attr": {"strength_base": 5}}, "明朗·锻(内功破防) 内功破防永久提升20点": {"id": 5583, "score": 17, "attr": {"magical_overcome_base": 20}}, "明朗·锻(外功破防) 外功破防永久提升20点": {"id": 5582, "score": 17, "attr": {"physical_overcome_base": 20}}, "云英甲片(头部) 破招永久提升18点(头部)": {"id": 408, "score": 15, "attr": {"surplus": 18}}, "橙红绣(头部) 永久提升内功攻击8点(头部)": {"id": 31, "score": 15, "attr": {"magical_attack_power_base": 8}}, "煤黑绣(头部) 根骨永久提升4点(头部)": {"id": 15, "score": 15, "attr": {"spirit_base": 4}}, "鹅黄绣图样:头部 力道永久提升4点(头部)": {"id": 3, "score": 15, "attr": {"strength_base": 4}}, "云锡甲片(头部) 破招永久提升16点(头部)": {"id": 394, "score": 14, "attr": {"surplus": 16}}, "角砾甲片(头部) 外功破防永久提升16点(头部)": {"id": 390, "score": 14, "attr": {"physical_overcome_base": 16}}, "流纹甲片(头部) 内功破防永久提升16点(头部)": {"id": 388, "score": 14, "attr": {"magical_overcome_base": 16}}, "紫碧甲片(头部) 身法永久提升3点(头部)": {"id": 172, "score": 11, "attr": {"agility_base": 3}}, "山水绣染(头部) 元气永久提升3点(头部)": {"id": 165, "score": 11, "attr": {"spunk_base": 3}}, "安戎·锻(无双) 无双提升24": {"id": 5958, "score": 0, "attr": {"strain_base": 24}}, "安戎·锻(内命) 破招提升24": {"id": 5957, "score": 0, "attr": {"surplus": 24}}, "安戎·锻(外命) 破招提升24": {"id": 5956, "score": 0, "attr": {"surplus": 24}}, "安戎·锻(内会) 内功会心提升24": {"id": 5955, "score": 0, "attr": {"magical_critical_strike_base": 24}}, "安戎·锻(外会) 外功会心提升24": {"id": 5954, "score": 0, "attr": {"physical_critical_strike_base": 24}}, "安戎·锻(内破) 内功破防提升24": {"id": 5952, "score": 0, "attr": {"magical_overcome_base": 24}}, "安戎·锻(外破) 外功破防提升24": {"id": 5951, "score": 0, "attr": {"physical_overcome_base": 24}}, "安戎·锻(身法) 身法提升14": {"id": 5950, "score": 0, "attr": {"agility_base": 14}}, "安戎·锻(根骨) 根骨提升14": {"id": 5949, "score": 0, "attr": {"spirit_base": 14}}, "行军·锻(内破) 内功破防提升12": {"id": 5942, "score": 0, "attr": {"magical_overcome_base": 12}}, "行军·锻(外破) 外功破防提升12": {"id": 5941, "score": 0, "attr": {"physical_overcome_base": 12}}}
|
qt/assets/enchants/jacket
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"连雾·衣·无双 上衣无双等级提高291": {"score": 419, "attr": {"strain_base": 291}}, "连雾·衣·无双 上衣无双等级提高264": {"score": 380, "attr": {"strain_base": 264}}, "连雾·衣·无双 上衣无双等级提高240": {"score": 313, "attr": {"strain_base": 240}}, "连雾·衣·无双 上衣无双等级提高217": {"score": 258, "attr": {"strain_base": 217}}, "苍·安戎·绣(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·绣(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "白虎绣(上装) 外功攻击永久提升14点(上装)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜绣(上装) 外功攻击永久提升14点(上装)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "青龙绣(上装) 内功攻击永久提升16点(上装)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花绣(上装) 内功攻击永久提升14点(上装)": {"score": 23, "attr": {"magical_attack_power_base": 14}}, "苍·安戎·绣(外破) 内功破防提升24": {"score": 21, "attr": {"physical_overcome_base": 24}}, "苍·安戎·绣(内破) 内功破防提升24": {"score": 21, "attr": {"magical_overcome_base": 24}}, "益元甲片 元气永久提升5点(上装)": {"score": 19, "attr": {"spunk_base": 5}}, "湛蓝甲片(上装) 力道永久提升5点(上装)": {"score": 19, "attr": {"strength_base": 5}}, "云英绣(上装) 破招永久提升18点(上装)": {"score": 15, "attr": {"surplus": 18}}, "云锡绣(上装) 破招永久提升16点(上装)": {"score": 13, "attr": {"surplus": 16}}, "角砾绣(上装) 外功破防值永久提升16点(上衣)": {"score": 13, "attr": {"physical_overcome_base": 16}}, "流纹绣(上装) 内功破防值永久提升16点(上衣)": {"score": 13, "attr": {"magical_overcome_base": 16}}, "百炼甲片 上装力道永久提升3点": {"score": 11, "attr": {"strength_base": 3}}, "鬼虎甲片 上装全属性永久增加3点": {"score": 1, "attr": {"all_major_base": 3}}, "银纹甲片 上装敏捷永久提升3点": {"score": 1, "attr": {"agility_base": 3}}}
|
|
|
1 |
+
{"连雾·衣·无双 上衣无双等级提高291": {"id": 12172, "score": 419, "attr": {"strain_base": 291}}, "连雾·衣·无双 上衣无双等级提高264": {"id": 12003, "score": 380, "attr": {"strain_base": 264}}, "连雾·衣·无双 上衣无双等级提高240": {"id": 11834, "score": 313, "attr": {"strain_base": 240}}, "连雾·衣·无双 上衣无双等级提高217": {"id": 11648, "score": 258, "attr": {"strain_base": 217}}, "苍·安戎·绣(外伤) 外功攻击提升18": {"id": 6040, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·绣(内伤) 内功攻击提升22": {"id": 6036, "score": 35, "attr": {"magical_attack_power_base": 22}}, "白虎绣(上装) 外功攻击永久提升14点(上装)": {"id": 364, "score": 27, "attr": {"physical_attack_power_base": 14}}, "黑曜绣(上装) 外功攻击永久提升14点(上装)": {"id": 346, "score": 27, "attr": {"physical_attack_power_base": 14}}, "青龙绣(上装) 内功攻击永久提升16点(上装)": {"id": 362, "score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花绣(上装) 内功攻击永久提升14点(上装)": {"id": 348, "score": 23, "attr": {"magical_attack_power_base": 14}}, "苍·安戎·绣(外破) 内功破防提升24": {"id": 6049, "score": 21, "attr": {"physical_overcome_base": 24}}, "苍·安戎·绣(内破) 内功破防提升24": {"id": 6048, "score": 21, "attr": {"magical_overcome_base": 24}}, "益元甲片 元气永久提升5点(上装)": {"id": 208, "score": 19, "attr": {"spunk_base": 5}}, "湛蓝甲片(上装) 力道永久提升5点(上装)": {"id": 174, "score": 19, "attr": {"strength_base": 5}}, "云英绣(上装) 破招永久提升18点(上装)": {"id": 352, "score": 15, "attr": {"surplus": 18}}, "云锡绣(上装) 破招永久提升16点(上装)": {"id": 334, "score": 13, "attr": {"surplus": 16}}, "角砾绣(上装) 外功破防值永久提升16点(上衣)": {"id": 330, "score": 13, "attr": {"physical_overcome_base": 16}}, "流纹绣(上装) 内功破防值永久提升16点(上衣)": {"id": 328, "score": 13, "attr": {"magical_overcome_base": 16}}, "百炼甲片 上装力道永久提升3点": {"id": 46, "score": 11, "attr": {"strength_base": 3}}, "鬼虎甲片 上装全属性永久增加3点": {"id": 58, "score": 1, "attr": {"all_major_base": 3}}, "银纹甲片 上装敏捷永久提升3点": {"id": 44, "score": 1, "attr": {"agility_base": 3}}}
|
qt/assets/enchants/primary_weapon
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断浪·兵·铸(武伤) 武器伤害提升658点": {"score": 1050, "attr": {"weapon_damage_base": 658}}, "断浪·兵·铸(内攻) 内功攻击提升524点": {"score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·兵·铸(外攻) 外功攻击提升439点": {"score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·兵·铸(武伤) 武器伤害提升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}}, "断浪·兵·甲(武伤) 武器伤害提升329点": {"score": 524, "attr": {"weapon_damage_base": 329}}, "断浪·兵·甲(内攻) 内功攻击提升262点": {"score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·兵·甲(外攻) 外功攻击提升219点": {"score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·兵·甲(武伤) 武器伤害提升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}}, "奉天·兵·铸(武伤) 武器伤害提升332点": {"score": 437, "attr": {"weapon_damage_base": 332}}, "奉天·兵·铸(内攻) 内功攻击提升264点": {"score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·兵·铸(外攻) 外功攻击提升221点": {"score": 437, "attr": {"physical_attack_power_base": 221}}, "断浪·兵·甲(武伤) 武器伤害提升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}}, "奉天·兵·铸(武伤) 武器伤害提升298点": {"score": 390, "attr": {"weapon_damage_base": 298}}, "奉天·兵·铸(内攻) 内功攻击提升237点": {"score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·兵·铸(外攻) 外功攻击提升198点": {"score": 390, "attr": {"physical_attack_power_base": 198}}, "奉天·兵·铸(武伤) 武器伤害提升268点": {"score": 352, "attr": {"weapon_damage_base": 268}}, "奉天·兵·铸(内攻) 内功攻击提升214点": {"score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·兵·铸(外攻) 外功攻击提升179点": {"score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·兵·甲(武伤) 武器伤害提升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}}, "奉天·兵·铸(内攻) 内功攻击提升175点": {"score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·兵·铸(外攻) 外功攻击提升146点": {"score": 288, "attr": {"physical_attack_power_base": 146}}, "奉天·兵·甲(武伤) 武器伤害提升195点": {"score": 255, "attr": {"weapon_damage_base": 195}}, "奉天·兵·甲(内攻) 内功攻击提升155点": {"score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·兵·甲(外攻) 外功攻击提升130点": {"score": 255, "attr": {"physical_attack_power_base": 130}}, "奉天·兵·铸(武伤) 武器伤害提升142点": {"score": 187, "attr": {"weapon_damage_base": 220}}, "仙踪·兵·铸(武伤) 武器伤害提升142点": {"score": 185, "attr": {"weapon_damage_base": 142}}, "仙踪·兵·铸(内伤) 内功攻击提升113点": {"score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·兵·铸(外伤) 外功攻击提升94点": {"score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·兵·铸(武伤) 武器伤害提升127点": {"score": 165, "attr": {"weapon_damage_base": 127}}, "仙踪·兵·铸(内伤) 内功攻击提升101点": {"score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·兵·铸(外伤) 外功攻击提升85点": {"score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·兵·铸(武伤) 武器伤害提升112点": {"score": 146, "attr": {"weapon_damage_base": 112}}, "仙踪·兵·铸(内伤) 内功攻击提升89点": {"score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·兵·铸(外伤) 外功攻击提升75点": {"score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·兵·铸(武伤) 武器伤害提升102点": {"score": 133, "attr": {"weapon_damage_base": 102}}, "仙踪·兵·铸(内伤) 内功攻击提升82点": {"score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·兵·铸(外伤) 外功攻击提升68点": {"score": 133, "attr": {"physical_attack_power_base": 68}}, "仙踪·兵·甲(武伤) 武器伤害提升71点": {"score": 94, "attr": {"weapon_damage_base": 71}}, "仙踪·兵·甲(内伤) 内功攻击提升57点": {"score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·兵·甲(外伤) 外功攻击提升47点": {"score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·兵·铸(武伤) 武器伤害提升64点": {"score": 83, "attr": {"weapon_damage_base": 64}}, "仙踪·兵·铸(内伤) 内功攻击提升51点": {"score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·兵·铸(外伤) 外功攻击提升43点": {"score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·磨石(内伤) 内功攻击提升50点": {"score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·磨石(外伤) 外功攻击提升42点": {"score": 82, "attr": {"physical_attack_power_base": 42}}, "仙踪·兵·铸(武伤) 武器伤害提升56点": {"score": 74, "attr": {"weapon_damage_base": 56}}, "仙踪·兵·铸(内伤) 内功攻击提升44点": {"score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·兵·铸(外伤) 外功攻击提升37点": {"score": 74, "attr": {"physical_attack_power_base": 37}}, "剑胆·磨石(内伤) 内功攻击提升44点": {"score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·磨石(外伤) 外功攻击提升37点": {"score": 70, "attr": {"physical_attack_power_base": 37}}, "仙踪·兵·铸(武伤) 武器伤害提升51点": {"score": 66, "attr": {"weapon_damage_base": 51}}, "仙踪·兵·铸(内伤) 内功攻击提升41点": {"score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·兵·铸(外伤) 外功攻击提升34点": {"score": 66, "attr": {"physical_attack_power_base": 34}}, "固·安戎·磨石(内伤) 内功攻击提升25": {"score": 41, "attr": {"magical_attack_power_base": 25}}, "固·安戎·磨石(外伤) 外功攻击提升21": {"score": 41, "attr": {"physical_attack_power_base": 21}}, "苍·安戎·磨石(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·磨石(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "青龙磨石 内功攻击永久提升16点(武器)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花磨石 内功攻击永久提升16点(武器)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "流纹磨石 内功攻击永久提升12点(武器)": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "流纹磨石 武器内功攻击永久提升12点": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "劲风磨石 武器外功攻击永久提升10点": {"score": 20, "attr": {"physical_attack_power_base": 10}}, "精元磨石 武器内功攻击永久提升12点": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "云锡磨石 破招永久提升16点(武器)": {"score": 14, "attr": {"surplus": 16}}, "云英磨石 破招永久提升16点(武器)": {"score": 14, "attr": {"surplus": 16}}, "晶凝磨石 外功破防永久提升16点(武器)": {"score": 14, "attr": {"physical_overcome_base": 16}}, "云锡磨石 武器破招永久提升16点": {"score": 14, "attr": {"surplus": 16}}, "云英磨石 武器破招永久提升16点": {"score": 14, "attr": {"surplus": 16}}, "晶凝磨石 武器外功破防永久提升16点": {"score": 14, "attr": {"physical_overcome_base": 16}}, "佳·剑胆·磨石(武伤) 武器伤害提升9点": {"score": 11, "attr": {"weapon_damage_base": 9}}, "百鬼磨石 武器永久增加外功会心13点": {"score": 11, "attr": {"physical_critical_strike_base": 13}}, "百鬼磨石 武器永久增加外功会心13": {"score": 11, "attr": {"physical_critical_strike_base": 13}}, "剑胆·磨石(武伤) 武器伤害提升8点": {"score": 9, "attr": {"weapon_damage_base": 8}}, "细磨石 武器外功破防永久提升9": {"score": 7, "attr": {"physical_overcome_base": 9}}, "固·安戎·磨石(武伤) 武器伤害提升5": {"score": 6, "attr": {"weapon_damage_base": 5}}, "白虎磨石 武器伤害永久提升4点(武器)": {"score": 5, "attr": {"weapon_damage_base": 4}}, "黑曜磨石 武器伤害永久提升4点(武器)": {"score": 5, "attr": {"weapon_damage_base": 4}}, "角砾磨石 武器伤害永久提升4点(武器)": {"score": 5, "attr": {"weapon_damage_base": 4}}, "角砾磨石 武器永久增加伤害4": {"score": 5, "attr": {"weapon_damage_base": 4}}, "血磨石 武器永久增加伤害4点": {"score": 5, "attr": {"weapon_damage_base": 4}}, "基础磨石 武器破招永久提升5": {"score": 4, "attr": {"surplus": 5}}, "润色磨石 武器永久提升外功会心5点": {"score": 4, "attr": {"physical_critical_strike_base": 5}}, "破风磨石 武器永久增加伤害3": {"score": 3, "attr": {"weapon_damage_base": 3}}, "粗磨石 武器伤害永久提升1": {"score": 1, "attr": {"weapon_damage_base": 1}}, "安戎·磨石(武伤) 武器伤害提升4": {"score": 0, "attr": {"weapon_damage_base": 4}}, "安戎·磨石(内伤) 内功攻击提升22": {"score": 0, "attr": {"magical_attack_power_base": 22}}, "安戎·磨石(外伤) 外功攻击提升18": {"score": 0, "attr": {"physical_attack_power_base": 18}}, "行军·磨石(内伤) 内功攻击提升12": {"score": 0, "attr": {"magical_attack_power_base": 12}}, "行军·磨石(外伤) 外功攻击提升12": {"score": 0, "attr": {"physical_attack_power_base": 12}}}
|
|
|
1 |
+
{"断浪·兵·铸(武伤) 武器伤害提升658点": {"id": 12045, "score": 1050, "attr": {"weapon_damage_base": 658}}, "断浪·兵·铸(内攻) 内功攻击提升524点": {"id": 12043, "score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·兵·铸(外攻) 外功攻击提升439点": {"id": 12042, "score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·兵·铸(武伤) 武器伤害提升597点": {"id": 11876, "score": 952, "attr": {"weapon_damage_base": 597}}, "断浪·兵·铸(内攻) 内功攻击提升475点": {"id": 11874, "score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·兵·铸(外攻) 外功攻击提升398点": {"id": 11873, "score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·兵·铸(武伤) 武器伤害提升540点": {"id": 11707, "score": 783, "attr": {"weapon_damage_base": 540}}, "断浪·兵·铸(内攻) 内功攻击提升430点": {"id": 11705, "score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·兵·铸(外攻) 外功攻击提升360点": {"id": 11704, "score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·兵·铸(武伤) 武器伤害提升489点": {"id": 11520, "score": 644, "attr": {"weapon_damage_base": 489}}, "断浪·兵·铸(内攻) 内功攻击提升389点": {"id": 11518, "score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·兵·铸(外攻) 外功攻击提升326点": {"id": 11517, "score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·兵·甲(武伤) 武器伤害提升329点": {"id": 12096, "score": 524, "attr": {"weapon_damage_base": 329}}, "断浪·兵·甲(内攻) 内功攻击提升262点": {"id": 12094, "score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·兵·甲(外攻) 外功攻击提升219点": {"id": 12093, "score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·兵·甲(武伤) 武器伤害提升298点": {"id": 11927, "score": 475, "attr": {"weapon_damage_base": 298}}, "断浪·兵·甲(内攻) 内功攻击提升237点": {"id": 11925, "score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·兵·甲(外攻) 外功攻击提升199点": {"id": 11924, "score": 475, "attr": {"physical_attack_power_base": 199}}, "奉天·兵·铸(武伤) 武器伤害提升332点": {"id": 11432, "score": 437, "attr": {"weapon_damage_base": 332}}, "奉天·兵·铸(内攻) 内功攻击提升264点": {"id": 11430, "score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·兵·铸(外攻) 外功攻击提升221点": {"id": 11429, "score": 437, "attr": {"physical_attack_power_base": 221}}, "断浪·兵·甲(武伤) 武器伤害提升270点": {"id": 11758, "score": 391, "attr": {"weapon_damage_base": 270}}, "断浪·兵·甲(内攻) 内功攻击提升215点": {"id": 11756, "score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·兵·甲(外攻) 外功攻击提升180点": {"id": 11755, "score": 391, "attr": {"physical_attack_power_base": 180}}, "奉天·兵·铸(武伤) 武器伤害提升298点": {"id": 11288, "score": 390, "attr": {"weapon_damage_base": 298}}, "奉天·兵·铸(内攻) 内功攻击提升237点": {"id": 11286, "score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·兵·铸(外攻) 外功攻击提升198点": {"id": 11285, "score": 390, "attr": {"physical_attack_power_base": 198}}, "奉天·兵·铸(武伤) 武器伤害提升268点": {"id": 11200, "score": 352, "attr": {"weapon_damage_base": 268}}, "奉天·兵·铸(内攻) 内功攻击提升214点": {"id": 11198, "score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·兵·铸(外攻) 外功攻击提升179点": {"id": 11197, "score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·兵·甲(武伤) 武器伤害提升244点": {"id": 11571, "score": 322, "attr": {"weapon_damage_base": 244}}, "断浪·兵·甲(内攻) 内功攻击提升194点": {"id": 11569, "score": 322, "attr": {"magical_attack_power_base": 194}}, "断浪·兵·甲(外攻) 外功攻击提升163点": {"id": 11568, "score": 322, "attr": {"physical_attack_power_base": 163}}, "奉天·兵·铸(内攻) 内功攻击提升175点": {"id": 11011, "score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·兵·铸(外攻) 外功攻击提升146点": {"id": 11010, "score": 288, "attr": {"physical_attack_power_base": 146}}, "奉天·兵·甲(武伤) 武器伤害提升195点": {"id": 11064, "score": 255, "attr": {"weapon_damage_base": 195}}, "奉天·兵·甲(内攻) 内功攻击提升155点": {"id": 11062, "score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·兵·甲(外攻) 外功攻击提升130点": {"id": 11061, "score": 255, "attr": {"physical_attack_power_base": 130}}, "奉天·兵·铸(武伤) 武器伤害提升142点": {"id": 11013, "score": 187, "attr": {"weapon_damage_base": 220}}, "仙踪·兵·铸(武伤) 武器伤害提升142点": {"id": 10883, "score": 185, "attr": {"weapon_damage_base": 142}}, "仙踪·兵·铸(内伤) 内功攻击提升113点": {"id": 10881, "score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·兵·铸(外伤) 外功攻击提升94点": {"id": 10880, "score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·兵·铸(武伤) 武器伤害提升127点": {"id": 10711, "score": 165, "attr": {"weapon_damage_base": 127}}, "仙踪·兵·铸(内伤) 内功攻击提升101点": {"id": 10709, "score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·兵·铸(外伤) 外功攻击提升85点": {"id": 10708, "score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·兵·铸(武伤) 武器伤害提升112点": {"id": 10571, "score": 146, "attr": {"weapon_damage_base": 112}}, "仙踪·兵·铸(内伤) 内功攻击提升89点": {"id": 10569, "score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·兵·铸(外伤) 外功攻击提升75点": {"id": 10568, "score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·兵·铸(武伤) 武器伤害提升102点": {"id": 10319, "score": 133, "attr": {"weapon_damage_base": 102}}, "仙踪·兵·铸(内伤) 内功攻击提升82点": {"id": 10317, "score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·兵·铸(外伤) 外功攻击提升68点": {"id": 10316, "score": 133, "attr": {"physical_attack_power_base": 68}}, "仙踪·兵·甲(武伤) 武器伤害提升71点": {"id": 10934, "score": 94, "attr": {"weapon_damage_base": 71}}, "仙踪·兵·甲(内伤) 内功攻击提升57点": {"id": 10932, "score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·兵·甲(外伤) 外功攻击提升47点": {"id": 10931, "score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·兵·铸(武伤) 武器伤害提升64点": {"id": 10762, "score": 83, "attr": {"weapon_damage_base": 64}}, "仙踪·兵·铸(内伤) 内功攻击提升51点": {"id": 10760, "score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·兵·铸(外伤) 外功攻击提升43点": {"id": 10759, "score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·磨石(内伤) 内功攻击提升50点": {"id": 6203, "score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·磨石(外伤) 外功攻击提升42点": {"id": 6202, "score": 82, "attr": {"physical_attack_power_base": 42}}, "仙踪·兵·铸(武伤) 武器伤害提升56点": {"id": 10626, "score": 74, "attr": {"weapon_damage_base": 56}}, "仙踪·兵·铸(内伤) 内功攻击提升44点": {"id": 10624, "score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·兵·铸(外伤) 外功攻击提升37点": {"id": 10623, "score": 74, "attr": {"physical_attack_power_base": 37}}, "剑胆·磨石(内伤) 内功攻击提升44点": {"id": 6173, "score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·磨石(外伤) 外功攻击提升37点": {"id": 6172, "score": 70, "attr": {"physical_attack_power_base": 37}}, "仙踪·兵·铸(武伤) 武器伤害提升51点": {"id": 10374, "score": 66, "attr": {"weapon_damage_base": 51}}, "仙踪·兵·铸(内伤) 内功攻击提升41点": {"id": 10372, "score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·兵·铸(外伤) 外功攻击提升34点": {"id": 10371, "score": 66, "attr": {"physical_attack_power_base": 34}}, "固·安戎·磨石(内伤) 内功攻击提升25": {"id": 5998, "score": 41, "attr": {"magical_attack_power_base": 25}}, "固·安戎·磨石(外伤) 外功攻击提升21": {"id": 5997, "score": 41, "attr": {"physical_attack_power_base": 21}}, "苍·安戎·磨石(外伤) 外功攻击提升18": {"id": 6059, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·磨石(内伤) 内功攻击提升22": {"id": 6058, "score": 35, "attr": {"magical_attack_power_base": 22}}, "青龙磨石 内功攻击永久提升16点(武器)": {"id": 414, "score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花磨石 内功攻击永久提升16点(武器)": {"id": 396, "score": 26, "attr": {"magical_attack_power_base": 16}}, "流纹磨石 内功攻击永久提升12点(武器)": {"id": 378, "score": 20, "attr": {"magical_attack_power_base": 12}}, "流纹磨石 武器内功攻击永久提升12点": {"id": 290, "score": 20, "attr": {"magical_attack_power_base": 12}}, "劲风磨石 武器外功攻击永久提升10点": {"id": 185, "score": 20, "attr": {"physical_attack_power_base": 10}}, "精元磨石 武器内功攻击永久提升12点": {"id": 184, "score": 20, "attr": {"magical_attack_power_base": 12}}, "云锡磨石 破招永久提升16点(武器)": {"id": 384, "score": 14, "attr": {"surplus": 16}}, "云英磨石 破招永久提升16点(武器)": {"id": 383, "score": 14, "attr": {"surplus": 16}}, "晶凝磨石 外功破防永久提升16点(武器)": {"id": 382, "score": 14, "attr": {"physical_overcome_base": 16}}, "云锡磨石 武器破招永久提升16点": {"id": 296, "score": 14, "attr": {"surplus": 16}}, "云英磨石 武器破招永久提升16点": {"id": 295, "score": 14, "attr": {"surplus": 16}}, "晶凝磨石 武器外功破防永久提升16点": {"id": 294, "score": 14, "attr": {"physical_overcome_base": 16}}, "佳·剑胆·磨石(武伤) 武器伤害提升9点": {"id": 6205, "score": 11, "attr": {"weapon_damage_base": 9}}, "百鬼磨石 武器永久增加外功会心13点": {"id": 209, "score": 11, "attr": {"physical_critical_strike_base": 13}}, "百鬼磨石 武器永久增加外功会心13": {"id": 70, "score": 11, "attr": {"physical_critical_strike_base": 13}}, "剑胆·磨石(武伤) 武器伤害提升8点": {"id": 6175, "score": 9, "attr": {"weapon_damage_base": 8}}, "细磨石 武器外功破防永久提升9": {"id": 51, "score": 7, "attr": {"physical_overcome_base": 9}}, "固·安戎·磨石(武伤) 武器伤害提升5": {"id": 6000, "score": 6, "attr": {"weapon_damage_base": 5}}, "白虎磨石 武器伤害永久提升4点(武器)": {"id": 415, "score": 5, "attr": {"weapon_damage_base": 4}}, "黑曜磨石 武器伤害永久提升4点(武器)": {"id": 397, "score": 5, "attr": {"weapon_damage_base": 4}}, "角砾磨石 武器伤害永久提升4点(武器)": {"id": 379, "score": 5, "attr": {"weapon_damage_base": 4}}, "角砾磨石 武器永久增加伤害4": {"id": 291, "score": 5, "attr": {"weapon_damage_base": 4}}, "血磨石 武器永久增加伤害4点": {"id": 53, "score": 5, "attr": {"weapon_damage_base": 4}}, "基础磨石 武器破招永久提升5": {"id": 45, "score": 4, "attr": {"surplus": 5}}, "润色磨石 武器永久提升外功会心5点": {"id": 42, "score": 4, "attr": {"physical_critical_strike_base": 5}}, "破风磨石 武器永久增加伤害3": {"id": 67, "score": 3, "attr": {"weapon_damage_base": 3}}, "粗磨石 武器伤害永久提升1": {"id": 41, "score": 1, "attr": {"weapon_damage_base": 1}}, "安戎·磨石(武伤) 武器伤害提升4": {"id": 5972, "score": 0, "attr": {"weapon_damage_base": 4}}, "安戎·磨石(内伤) 内功攻击提升22": {"id": 5970, "score": 0, "attr": {"magical_attack_power_base": 22}}, "安戎·磨石(外伤) 外功攻击提升18": {"id": 5969, "score": 0, "attr": {"physical_attack_power_base": 18}}, "行军·磨石(内伤) 内功攻击提升12": {"id": 5946, "score": 0, "attr": {"magical_attack_power_base": 12}}, "行军·磨石(外伤) 外功攻击提升12": {"id": 5945, "score": 0, "attr": {"physical_attack_power_base": 12}}}
|
qt/assets/enchants/ring
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断流心岩·戒指(破招) 破招等级提升974点": {"score": 1050, "attr": {"surplus": 974}}, "断流心岩·戒指(内伤) 内功攻击提升524点": {"score": 1050, "attr": {"magical_attack_power_base": 524}}, "断流心岩·戒指(外伤) 外功攻击提升439点": {"score": 1050, "attr": {"physical_attack_power_base": 439}}, "断流心岩·戒指(身法) 身法提升218点": {"score": 1050, "attr": {"agility_base": 218}}, "断流心岩·戒指(元气) 元气提升218点": {"score": 1050, "attr": {"spunk_base": 218}}, "断流心岩·戒指(力道) 力道提升218点": {"score": 1050, "attr": {"strength_base": 218}}, "断流心岩·戒指(根骨) 根骨提升218点": {"score": 1050, "attr": {"spirit_base": 218}}, "断流心岩·戒指(破招) 破招等级提升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}}}
|
|
|
1 |
+
{"断流心岩·戒指(破招) 破招等级提升974点": {"id": 12184, "score": 1050, "attr": {"surplus": 974}}, "断流心岩·戒指(内伤) 内功攻击提升524点": {"id": 12183, "score": 1050, "attr": {"magical_attack_power_base": 524}}, "断流心岩·戒指(外伤) 外功攻击提升439点": {"id": 12182, "score": 1050, "attr": {"physical_attack_power_base": 439}}, "断流心岩·戒指(身法) 身法提升218点": {"id": 12181, "score": 1050, "attr": {"agility_base": 218}}, "断流心岩·戒指(元气) 元气提升218点": {"id": 12180, "score": 1050, "attr": {"spunk_base": 218}}, "断流心岩·戒指(力道) 力道提升218点": {"id": 12179, "score": 1050, "attr": {"strength_base": 218}}, "断流心岩·戒指(根骨) 根骨提升218点": {"id": 12178, "score": 1050, "attr": {"spirit_base": 218}}, "断流心岩·戒指(破招) 破招等级提升883点": {"id": 12015, "score": 952, "attr": {"surplus": 883}}, "断流心岩·戒指(内伤) 内功攻击提升475点": {"id": 12014, "score": 952, "attr": {"magical_attack_power_base": 475}}, "断流心岩·戒指(外伤) 外功攻击提升398点": {"id": 12013, "score": 952, "attr": {"physical_attack_power_base": 398}}, "断流心岩·戒指(身法) 身法提升198点": {"id": 12012, "score": 952, "attr": {"agility_base": 198}}, "断流心岩·戒指(元气) 元气提升198点": {"id": 12011, "score": 952, "attr": {"spunk_base": 198}}, "断流心岩·戒指(力道) 力道提升198点": {"id": 12010, "score": 952, "attr": {"strength_base": 198}}, "断流心岩·戒指(根骨) 根骨提升198点": {"id": 12009, "score": 952, "attr": {"spirit_base": 198}}, "断流心岩·戒指(破招) 破招等级提升799点": {"id": 11846, "score": 783, "attr": {"surplus": 799}}, "断流心岩·戒指(内伤) 内功攻击提升430点": {"id": 11845, "score": 783, "attr": {"magical_attack_power_base": 430}}, "断流心岩·戒指(外伤) 外功攻击提升360点": {"id": 11844, "score": 783, "attr": {"physical_attack_power_base": 360}}, "断流心岩·戒指(身法) 身法提升179点": {"id": 11843, "score": 783, "attr": {"agility_base": 179}}, "断流心岩·戒指(元气) 元气提升179点": {"id": 11842, "score": 783, "attr": {"spunk_base": 179}}, "断流心岩·戒指(力道) 力道提升179点": {"id": 11841, "score": 783, "attr": {"strength_base": 179}}, "断流心岩·戒指(根骨) 根骨提升179点": {"id": 11840, "score": 783, "attr": {"spirit_base": 179}}, "断流心岩·戒指(破招) 破招等级提升723点": {"id": 11662, "score": 644, "attr": {"surplus": 723}}, "断流心岩·戒指(内伤) 内功攻击提升389点": {"id": 11661, "score": 644, "attr": {"magical_attack_power_base": 389}}, "断流心岩·戒指(外伤) 外功攻击提升326点": {"id": 11660, "score": 644, "attr": {"physical_attack_power_base": 326}}, "断流心岩·戒指(身法) 身法提升162点": {"id": 11659, "score": 644, "attr": {"agility_base": 162}}, "断流心岩·戒指(元气) 元气提升162点": {"id": 11658, "score": 644, "attr": {"spunk_base": 162}}, "断流心岩·戒指(力道) 力道提升162点": {"id": 11657, "score": 644, "attr": {"strength_base": 162}}, "断流心岩·戒指(根骨) 根骨提升162点": {"id": 11656, "score": 644, "attr": {"spirit_base": 162}}}
|
qt/assets/enchants/secondary_weapon
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347658\u70b9": {"score": 1050, "attr": {"weapon_damage_base": 658}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347524\u70b9": {"score": 1050, "attr": {"magical_attack_power_base": 524}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347439\u70b9": {"score": 1050, "attr": {"physical_attack_power_base": 439}}, "\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\u5347329\u70b9": {"score": 524, "attr": {"weapon_damage_base": 329}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347262\u70b9": {"score": 524, "attr": {"magical_attack_power_base": 262}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347219\u70b9": {"score": 524, "attr": {"physical_attack_power_base": 219}}, "\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}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347332\u70b9": {"score": 437, "attr": {"weapon_damage_base": 332}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347264\u70b9": {"score": 437, "attr": {"magical_attack_power_base": 264}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347221\u70b9": {"score": 437, "attr": {"physical_attack_power_base": 221}}, "\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}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347298\u70b9": {"score": 390, "attr": {"weapon_damage_base": 298}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347237\u70b9": {"score": 390, "attr": {"magical_attack_power_base": 237}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347198\u70b9": {"score": 390, "attr": {"physical_attack_power_base": 198}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347268\u70b9": {"score": 352, "attr": {"weapon_damage_base": 268}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347214\u70b9": {"score": 352, "attr": {"magical_attack_power_base": 214}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347179\u70b9": {"score": 352, "attr": {"physical_attack_power_base": 179}}, "\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}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347175\u70b9": {"score": 288, "attr": {"magical_attack_power_base": 175}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347146\u70b9": {"score": 288, "attr": {"physical_attack_power_base": 146}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347195\u70b9": {"score": 255, "attr": {"weapon_damage_base": 195}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347155\u70b9": {"score": 255, "attr": {"magical_attack_power_base": 155}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347130\u70b9": {"score": 255, "attr": {"physical_attack_power_base": 130}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347142\u70b9": {"score": 187, "attr": {"weapon_damage_base": 220}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347142\u70b9": {"score": 185, "attr": {"weapon_damage_base": 142}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347113\u70b9": {"score": 185, "attr": {"magical_attack_power_base": 113}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534794\u70b9": {"score": 185, "attr": {"physical_attack_power_base": 94}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347127\u70b9": {"score": 165, "attr": {"weapon_damage_base": 127}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347101\u70b9": {"score": 165, "attr": {"magical_attack_power_base": 101}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534785\u70b9": {"score": 165, "attr": {"physical_attack_power_base": 85}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347112\u70b9": {"score": 146, "attr": {"weapon_damage_base": 112}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534789\u70b9": {"score": 146, "attr": {"magical_attack_power_base": 89}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534775\u70b9": {"score": 146, "attr": {"physical_attack_power_base": 75}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347102\u70b9": {"score": 133, "attr": {"weapon_damage_base": 102}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534782\u70b9": {"score": 133, "attr": {"magical_attack_power_base": 82}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534768\u70b9": {"score": 133, "attr": {"physical_attack_power_base": 68}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534771\u70b9": {"score": 94, "attr": {"weapon_damage_base": 71}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534757\u70b9": {"score": 94, "attr": {"magical_attack_power_base": 57}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534747\u70b9": {"score": 94, "attr": {"physical_attack_power_base": 47}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534764\u70b9": {"score": 83, "attr": {"weapon_damage_base": 64}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534751\u70b9": {"score": 83, "attr": {"magical_attack_power_base": 51}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534743\u70b9": {"score": 83, "attr": {"physical_attack_power_base": 43}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534750\u70b9": {"score": 82, "attr": {"magical_attack_power_base": 50}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534742\u70b9": {"score": 82, "attr": {"physical_attack_power_base": 42}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534756\u70b9": {"score": 74, "attr": {"weapon_damage_base": 56}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534744\u70b9": {"score": 74, "attr": {"magical_attack_power_base": 44}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534737\u70b9": {"score": 74, "attr": {"physical_attack_power_base": 37}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534744\u70b9": {"score": 70, "attr": {"magical_attack_power_base": 44}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534737\u70b9": {"score": 70, "attr": {"physical_attack_power_base": 37}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534751\u70b9": {"score": 66, "attr": {"weapon_damage_base": 51}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534741\u70b9": {"score": 66, "attr": {"magical_attack_power_base": 41}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534734\u70b9": {"score": 66, "attr": {"physical_attack_power_base": 34}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534725": {"score": 41, "attr": {"magical_attack_power_base": 25}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534721": {"score": 41, "attr": {"physical_attack_power_base": 21}}, "\u82cd\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534718": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "\u82cd\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534722": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "\u9752\u9f99\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "\u96e8\u82b1\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "\u6d41\u7eb9\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9\uff08\u6b66\u5668\uff09": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "\u6d41\u7eb9\u78e8\u77f3 \u6b66\u5668\u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "\u52b2\u98ce\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534710\u70b9": {"score": 20, "attr": {"physical_attack_power_base": 10}}, "\u7cbe\u5143\u78e8\u77f3 \u6b66\u5668\u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9": {"score": 20, "attr": {"magical_attack_power_base": 12}}, "\u4e91\u9521\u78e8\u77f3 \u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"score": 14, "attr": {"surplus": 16}}, "\u4e91\u82f1\u78e8\u77f3 \u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"score": 14, "attr": {"surplus": 16}}, "\u6676\u51dd\u78e8\u77f3 \u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"score": 14, "attr": {"physical_overcome_base": 16}}, "\u4e91\u9521\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9": {"score": 14, "attr": {"surplus": 16}}, "\u4e91\u82f1\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9": {"score": 14, "attr": {"surplus": 16}}, "\u6676\u51dd\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u534716\u70b9": {"score": 14, "attr": {"physical_overcome_base": 16}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53479\u70b9": {"score": 11, "attr": {"weapon_damage_base": 9}}, "\u767e\u9b3c\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u5916\u529f\u4f1a\u5fc313\u70b9": {"score": 11, "attr": {"physical_critical_strike_base": 13}}, "\u767e\u9b3c\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u5916\u529f\u4f1a\u5fc313": {"score": 11, "attr": {"physical_critical_strike_base": 13}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53478\u70b9": {"score": 9, "attr": {"weapon_damage_base": 8}}, "\u7ec6\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u53479": {"score": 7, "attr": {"physical_overcome_base": 9}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53475": {"score": 6, "attr": {"weapon_damage_base": 5}}, "\u767d\u864e\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"score": 5, "attr": {"weapon_damage_base": 4}}, "\u9ed1\u66dc\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"score": 5, "attr": {"weapon_damage_base": 4}}, "\u89d2\u783e\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"score": 5, "attr": {"weapon_damage_base": 4}}, "\u89d2\u783e\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb34": {"score": 5, "attr": {"weapon_damage_base": 4}}, "\u8840\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb34\u70b9": {"score": 5, "attr": {"weapon_damage_base": 4}}, "\u57fa\u7840\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u53475": {"score": 4, "attr": {"surplus": 5}}, "\u6da6\u8272\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u63d0\u5347\u5916\u529f\u4f1a\u5fc35\u70b9": {"score": 4, "attr": {"physical_critical_strike_base": 5}}, "\u7834\u98ce\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb33": {"score": 3, "attr": {"weapon_damage_base": 3}}, "\u7c97\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53471": {"score": 1, "attr": {"weapon_damage_base": 1}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53474": {"score": 0, "attr": {"weapon_damage_base": 4}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534722": {"score": 0, "attr": {"magical_attack_power_base": 22}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534718": {"score": 0, "attr": {"physical_attack_power_base": 18}}, "\u884c\u519b\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534712": {"score": 0, "attr": {"magical_attack_power_base": 12}}, "\u884c\u519b\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534712": {"score": 0, "attr": {"physical_attack_power_base": 12}}}
|
|
|
1 |
+
{"\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347658\u70b9": {"id": 12045, "score": 1050, "attr": {"weapon_damage_base": 658}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347524\u70b9": {"id": 12043, "score": 1050, "attr": {"magical_attack_power_base": 524}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347439\u70b9": {"id": 12042, "score": 1050, "attr": {"physical_attack_power_base": 439}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347597\u70b9": {"id": 11876, "score": 952, "attr": {"weapon_damage_base": 597}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347475\u70b9": {"id": 11874, "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": {"id": 11873, "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": {"id": 11707, "score": 783, "attr": {"weapon_damage_base": 540}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347430\u70b9": {"id": 11705, "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": {"id": 11704, "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": {"id": 11520, "score": 644, "attr": {"weapon_damage_base": 489}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347389\u70b9": {"id": 11518, "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": {"id": 11517, "score": 644, "attr": {"physical_attack_power_base": 326}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347329\u70b9": {"id": 12096, "score": 524, "attr": {"weapon_damage_base": 329}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347262\u70b9": {"id": 12094, "score": 524, "attr": {"magical_attack_power_base": 262}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347219\u70b9": {"id": 12093, "score": 524, "attr": {"physical_attack_power_base": 219}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347298\u70b9": {"id": 11927, "score": 475, "attr": {"weapon_damage_base": 298}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347237\u70b9": {"id": 11925, "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": {"id": 11924, "score": 475, "attr": {"physical_attack_power_base": 199}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347332\u70b9": {"id": 11432, "score": 437, "attr": {"weapon_damage_base": 332}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347264\u70b9": {"id": 11430, "score": 437, "attr": {"magical_attack_power_base": 264}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347221\u70b9": {"id": 11429, "score": 437, "attr": {"physical_attack_power_base": 221}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347270\u70b9": {"id": 11758, "score": 391, "attr": {"weapon_damage_base": 270}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347215\u70b9": {"id": 11756, "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": {"id": 11755, "score": 391, "attr": {"physical_attack_power_base": 180}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347298\u70b9": {"id": 11288, "score": 390, "attr": {"weapon_damage_base": 298}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347237\u70b9": {"id": 11286, "score": 390, "attr": {"magical_attack_power_base": 237}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347198\u70b9": {"id": 11285, "score": 390, "attr": {"physical_attack_power_base": 198}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347268\u70b9": {"id": 11200, "score": 352, "attr": {"weapon_damage_base": 268}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347214\u70b9": {"id": 11198, "score": 352, "attr": {"magical_attack_power_base": 214}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347179\u70b9": {"id": 11197, "score": 352, "attr": {"physical_attack_power_base": 179}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347244\u70b9": {"id": 11571, "score": 322, "attr": {"weapon_damage_base": 244}}, "\u65ad\u6d6a\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347194\u70b9": {"id": 11569, "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": {"id": 11568, "score": 322, "attr": {"physical_attack_power_base": 163}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347175\u70b9": {"id": 11011, "score": 288, "attr": {"magical_attack_power_base": 175}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347146\u70b9": {"id": 11010, "score": 288, "attr": {"physical_attack_power_base": 146}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347195\u70b9": {"id": 11064, "score": 255, "attr": {"weapon_damage_base": 195}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u5185\u653b\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347155\u70b9": {"id": 11062, "score": 255, "attr": {"magical_attack_power_base": 155}}, "\u5949\u5929\u00b7\u5175\u00b7\u7532\uff08\u5916\u653b\uff09 \u5916\u529f\u653b\u51fb\u63d0\u5347130\u70b9": {"id": 11061, "score": 255, "attr": {"physical_attack_power_base": 130}}, "\u5949\u5929\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347142\u70b9": {"id": 11013, "score": 187, "attr": {"weapon_damage_base": 220}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347142\u70b9": {"id": 10883, "score": 185, "attr": {"weapon_damage_base": 142}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347113\u70b9": {"id": 10881, "score": 185, "attr": {"magical_attack_power_base": 113}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534794\u70b9": {"id": 10880, "score": 185, "attr": {"physical_attack_power_base": 94}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347127\u70b9": {"id": 10711, "score": 165, "attr": {"weapon_damage_base": 127}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u5347101\u70b9": {"id": 10709, "score": 165, "attr": {"magical_attack_power_base": 101}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534785\u70b9": {"id": 10708, "score": 165, "attr": {"physical_attack_power_base": 85}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347112\u70b9": {"id": 10571, "score": 146, "attr": {"weapon_damage_base": 112}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534789\u70b9": {"id": 10569, "score": 146, "attr": {"magical_attack_power_base": 89}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534775\u70b9": {"id": 10568, "score": 146, "attr": {"physical_attack_power_base": 75}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u5347102\u70b9": {"id": 10319, "score": 133, "attr": {"weapon_damage_base": 102}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534782\u70b9": {"id": 10317, "score": 133, "attr": {"magical_attack_power_base": 82}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534768\u70b9": {"id": 10316, "score": 133, "attr": {"physical_attack_power_base": 68}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534771\u70b9": {"id": 10934, "score": 94, "attr": {"weapon_damage_base": 71}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534757\u70b9": {"id": 10932, "score": 94, "attr": {"magical_attack_power_base": 57}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u7532\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534747\u70b9": {"id": 10931, "score": 94, "attr": {"physical_attack_power_base": 47}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534764\u70b9": {"id": 10762, "score": 83, "attr": {"weapon_damage_base": 64}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534751\u70b9": {"id": 10760, "score": 83, "attr": {"magical_attack_power_base": 51}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534743\u70b9": {"id": 10759, "score": 83, "attr": {"physical_attack_power_base": 43}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534750\u70b9": {"id": 6203, "score": 82, "attr": {"magical_attack_power_base": 50}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534742\u70b9": {"id": 6202, "score": 82, "attr": {"physical_attack_power_base": 42}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534756\u70b9": {"id": 10626, "score": 74, "attr": {"weapon_damage_base": 56}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534744\u70b9": {"id": 10624, "score": 74, "attr": {"magical_attack_power_base": 44}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534737\u70b9": {"id": 10623, "score": 74, "attr": {"physical_attack_power_base": 37}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534744\u70b9": {"id": 6173, "score": 70, "attr": {"magical_attack_power_base": 44}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534737\u70b9": {"id": 6172, "score": 70, "attr": {"physical_attack_power_base": 37}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u534751\u70b9": {"id": 10374, "score": 66, "attr": {"weapon_damage_base": 51}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534741\u70b9": {"id": 10372, "score": 66, "attr": {"magical_attack_power_base": 41}}, "\u4ed9\u8e2a\u00b7\u5175\u00b7\u94f8\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534734\u70b9": {"id": 10371, "score": 66, "attr": {"physical_attack_power_base": 34}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534725": {"id": 5998, "score": 41, "attr": {"magical_attack_power_base": 25}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534721": {"id": 5997, "score": 41, "attr": {"physical_attack_power_base": 21}}, "\u82cd\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534718": {"id": 6059, "score": 35, "attr": {"physical_attack_power_base": 18}}, "\u82cd\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534722": {"id": 6058, "score": 35, "attr": {"magical_attack_power_base": 22}}, "\u9752\u9f99\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"id": 414, "score": 26, "attr": {"magical_attack_power_base": 16}}, "\u96e8\u82b1\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"id": 396, "score": 26, "attr": {"magical_attack_power_base": 16}}, "\u6d41\u7eb9\u78e8\u77f3 \u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9\uff08\u6b66\u5668\uff09": {"id": 378, "score": 20, "attr": {"magical_attack_power_base": 12}}, "\u6d41\u7eb9\u78e8\u77f3 \u6b66\u5668\u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9": {"id": 290, "score": 20, "attr": {"magical_attack_power_base": 12}}, "\u52b2\u98ce\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534710\u70b9": {"id": 185, "score": 20, "attr": {"physical_attack_power_base": 10}}, "\u7cbe\u5143\u78e8\u77f3 \u6b66\u5668\u5185\u529f\u653b\u51fb\u6c38\u4e45\u63d0\u534712\u70b9": {"id": 184, "score": 20, "attr": {"magical_attack_power_base": 12}}, "\u4e91\u9521\u78e8\u77f3 \u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"id": 384, "score": 14, "attr": {"surplus": 16}}, "\u4e91\u82f1\u78e8\u77f3 \u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"id": 383, "score": 14, "attr": {"surplus": 16}}, "\u6676\u51dd\u78e8\u77f3 \u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u534716\u70b9\uff08\u6b66\u5668\uff09": {"id": 382, "score": 14, "attr": {"physical_overcome_base": 16}}, "\u4e91\u9521\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9": {"id": 296, "score": 14, "attr": {"surplus": 16}}, "\u4e91\u82f1\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u534716\u70b9": {"id": 295, "score": 14, "attr": {"surplus": 16}}, "\u6676\u51dd\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u534716\u70b9": {"id": 294, "score": 14, "attr": {"physical_overcome_base": 16}}, "\u4f73\u00b7\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53479\u70b9": {"id": 6205, "score": 11, "attr": {"weapon_damage_base": 9}}, "\u767e\u9b3c\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u5916\u529f\u4f1a\u5fc313\u70b9": {"id": 209, "score": 11, "attr": {"physical_critical_strike_base": 13}}, "\u767e\u9b3c\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u5916\u529f\u4f1a\u5fc313": {"id": 70, "score": 11, "attr": {"physical_critical_strike_base": 13}}, "\u5251\u80c6\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53478\u70b9": {"id": 6175, "score": 9, "attr": {"weapon_damage_base": 8}}, "\u7ec6\u78e8\u77f3 \u6b66\u5668\u5916\u529f\u7834\u9632\u6c38\u4e45\u63d0\u53479": {"id": 51, "score": 7, "attr": {"physical_overcome_base": 9}}, "\u56fa\u00b7\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53475": {"id": 6000, "score": 6, "attr": {"weapon_damage_base": 5}}, "\u767d\u864e\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"id": 415, "score": 5, "attr": {"weapon_damage_base": 4}}, "\u9ed1\u66dc\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"id": 397, "score": 5, "attr": {"weapon_damage_base": 4}}, "\u89d2\u783e\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53474\u70b9\uff08\u6b66\u5668\uff09": {"id": 379, "score": 5, "attr": {"weapon_damage_base": 4}}, "\u89d2\u783e\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb34": {"id": 291, "score": 5, "attr": {"weapon_damage_base": 4}}, "\u8840\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb34\u70b9": {"id": 53, "score": 5, "attr": {"weapon_damage_base": 4}}, "\u57fa\u7840\u78e8\u77f3 \u6b66\u5668\u7834\u62db\u6c38\u4e45\u63d0\u53475": {"id": 45, "score": 4, "attr": {"surplus": 5}}, "\u6da6\u8272\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u63d0\u5347\u5916\u529f\u4f1a\u5fc35\u70b9": {"id": 42, "score": 4, "attr": {"physical_critical_strike_base": 5}}, "\u7834\u98ce\u78e8\u77f3 \u6b66\u5668\u6c38\u4e45\u589e\u52a0\u4f24\u5bb33": {"id": 67, "score": 3, "attr": {"weapon_damage_base": 3}}, "\u7c97\u78e8\u77f3 \u6b66\u5668\u4f24\u5bb3\u6c38\u4e45\u63d0\u53471": {"id": 41, "score": 1, "attr": {"weapon_damage_base": 1}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u6b66\u4f24\uff09 \u6b66\u5668\u4f24\u5bb3\u63d0\u53474": {"id": 5972, "score": 0, "attr": {"weapon_damage_base": 4}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534722": {"id": 5970, "score": 0, "attr": {"magical_attack_power_base": 22}}, "\u5b89\u620e\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534718": {"id": 5969, "score": 0, "attr": {"physical_attack_power_base": 18}}, "\u884c\u519b\u00b7\u78e8\u77f3\uff08\u5185\u4f24\uff09 \u5185\u529f\u653b\u51fb\u63d0\u534712": {"id": 5946, "score": 0, "attr": {"magical_attack_power_base": 12}}, "\u884c\u519b\u00b7\u78e8\u77f3\uff08\u5916\u4f24\uff09 \u5916\u529f\u653b\u51fb\u63d0\u534712": {"id": 5945, "score": 0, "attr": {"physical_attack_power_base": 12}}}
|
qt/assets/enchants/shoes
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断浪·鞋·绣(急速) 加速提升974点": {"score": 1050, "attr": {"haste_base": 974}}, "断浪·鞋·绣(破招) 破招提升974点": {"score": 1050, "attr": {"surplus": 974}}, "断浪·鞋·绣(内攻) 内功攻击提升524点": {"score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·鞋·绣(外攻) 外功攻击提升439点": {"score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·鞋·绣(急速) 加速提升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}}, "断浪·鞋·染(急速) 加速提升487点": {"score": 524, "attr": {"haste_base": 487}}, "断浪·鞋·染(破招) 破招提升487点": {"score": 524, "attr": {"surplus": 487}}, "断浪·鞋·染(内攻) 内功攻击提升262点": {"score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·鞋·染(外攻) 外功攻击提升219点": {"score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·鞋·染(急速) 加速提升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}}, "奉天·鞋·绣(急速) 加速提升491点": {"score": 437, "attr": {"haste_base": 491}}, "奉天·鞋·绣(破招) 破招提升491点": {"score": 437, "attr": {"surplus": 491}}, "奉天·鞋·绣(内攻) 内功攻击提升264点": {"score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·鞋·绣(外攻) 外功攻击提升221点": {"score": 437, "attr": {"physical_attack_power_base": 221}}, "连雾·鞋·内攻 鞋子内功攻击提高210": {"score": 419, "attr": {"magical_attack_power_base": 210}}, "连雾·鞋·外攻 鞋子外功攻击提高176": {"score": 419, "attr": {"physical_attack_power_base": 176}}, "连雾·鞋·破招 鞋子破招等级提高390": {"score": 419, "attr": {"surplus": 390}}, "连雾·鞋·急速 鞋子加速等级提高390": {"score": 419, "attr": {"haste_base": 390}}, "断浪·鞋·染(急速) 加速提升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}}, "奉天·鞋·绣(急速) 加速提升441点": {"score": 390, "attr": {"haste_base": 441}}, "奉天·鞋·绣(破招) 破招提升441点": {"score": 390, "attr": {"surplus": 441}}, "奉天·鞋·绣(内攻) 内功攻击提升237点": {"score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·鞋·绣(外攻) 外功攻击提升198点": {"score": 390, "attr": {"physical_attack_power_base": 198}}, "连雾·鞋·内攻 鞋子内功攻击提高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}}, "奉天·鞋·绣(急速) 加速提升397点": {"score": 352, "attr": {"haste_base": 397}}, "奉天·鞋·绣(破招) 破招提升397点": {"score": 352, "attr": {"surplus": 397}}, "奉天·鞋·绣(内攻) 内功攻击提升214点": {"score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·鞋·绣(外攻) 外功攻击提升179点": {"score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·鞋·染(急速) 加速��升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}}, "奉天·鞋·绣(急速) 加速提升325点": {"score": 288, "attr": {"haste_base": 325}}, "奉天·鞋·绣(破招) 破招提升325点": {"score": 288, "attr": {"surplus": 325}}, "奉天·鞋·绣(内攻) 内功攻击提升175点": {"score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·鞋·绣(外攻) 外功攻击提升146点": {"score": 288, "attr": {"physical_attack_power_base": 146}}, "连雾·鞋·内功 鞋子内功攻击提高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}}, "奉天·鞋·染(急速) 加速提升289点": {"score": 255, "attr": {"haste_base": 289}}, "奉天·鞋·染(破招) 破招提升289点": {"score": 255, "attr": {"surplus": 289}}, "奉天·鞋·染(内攻) 内功攻击提升155点": {"score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·鞋·染(外攻) 外功攻击提升130点": {"score": 255, "attr": {"physical_attack_power_base": 130}}, "仙踪·鞋·绣(急速) 加速提升209点": {"score": 185, "attr": {"haste_base": 209}}, "仙踪·鞋·绣(破招) 破招提升209点": {"score": 185, "attr": {"surplus": 209}}, "仙踪·鞋·绣(内功) 内功攻击提升113点": {"score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·鞋·绣(外功) 外功攻击提升94点": {"score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·鞋·绣(急速) 加速提升188点": {"score": 165, "attr": {"haste_base": 188}}, "仙踪·鞋·绣(破招) 破招提升188点": {"score": 165, "attr": {"surplus": 188}}, "仙踪·鞋·绣(内功) 内功攻击提升101点": {"score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·鞋·绣(外攻) 外功攻击提升85点": {"score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·鞋·绣(急速) 加速提升166点": {"score": 146, "attr": {"haste_base": 166}}, "仙踪·鞋·绣(破招) 破招提升166点": {"score": 146, "attr": {"surplus": 166}}, "仙踪·鞋·绣(内功) 内功攻击提升89点": {"score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·鞋·绣(外攻) 外功攻击提升75点": {"score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·鞋·绣(急速) 加速提升152点": {"score": 133, "attr": {"haste_base": 152}}, "仙踪·鞋·绣(破招) 破招提升152点": {"score": 133, "attr": {"surplus": 152}}, "仙踪·鞋·绣(内功) 内功攻击提升82点": {"score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·鞋·绣(外攻) 外功攻击提升68点": {"score": 133, "attr": {"physical_attack_power_base": 68}}, "珍·重制·铸(身法) 身法提升31点": {"score": 121, "attr": {"agility_base": 31}}, "珍·重制·铸(根骨) 根骨提升31点": {"score": 121, "attr": {"spirit_base": 31}}, "珍·风骨·铸(身法) 身法提升25点": {"score": 98, "attr": {"agility_base": 25}}, "珍·风骨·铸(根骨) 根骨提升25点": {"score": 98, "attr": {"spirit_base": 25}}, "仙踪·鞋·染(急速) 加速提升105点": {"score": 94, "attr": {"haste_base": 105}}, "仙踪·鞋·染(破招) 破招提升105点": {"score": 94, "attr": {"surplus": 105}}, "仙踪·鞋·染(内功) 内功攻击提升57点": {"score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·鞋·染(外功) 外功攻击提升47点": {"score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·鞋·染(急速) 加速提升94点": {"score": 83, "attr": {"haste_base": 94}}, "仙踪·鞋·染(破招) 破招提升94点": {"score": 83, "attr": {"surplus": 94}}, "仙踪·鞋·染(内功) 内功攻击提升51点": {"score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·鞋·染(外攻) 外功攻击提升43点": {"score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·铸(身法) 身法提升21点": {"score": 82, "attr": {"agility_base": 21}}, "佳·剑胆·铸(根骨) 根骨提升21点": {"score": 82, "attr": {"spirit_base": 21}}, "仙踪·鞋·染(急速) 加速提升84点": {"score": 74, "attr": {"haste_base": 84}}, "仙踪·鞋·染(破招) 破招提升84点": {"score": 74, "attr": {"surplus": 84}}, "仙踪·鞋·染(内功) 内功攻击提升44点": {"score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·鞋·染(外攻) 外功攻击提升37点": {"score": 74, "attr": {"physical_attack_power_base": 37}}, "珍·重制·铸(内会) 内功会心等级提升83点": {"score": 74, "attr": {"magical_critical_strike_base": 83}}, "珍·重制·铸(外会) 外功会心等级提升83点": {"score": 74, "attr": {"physical_critical_strike_base": 83}}, "珍·重制·铸(无双) 无双等级提升83点": {"score": 74, "attr": {"strain_base": 83}}, "珍·重制·铸(内命) 破招等级提升83点": {"score": 74, "attr": {"surplus": 83}}, "珍·重制·铸(外命) 破招等级提升83点": {"score": 74, "attr": {"surplus": 83}}, "珍·重制·铸(加速) 加速提升83点": {"score": 74, "attr": {"haste_base": 83}}, "珍·重制·铸(内破) 内功破防等级提升83点": {"score": 74, "attr": {"magical_overcome_base": 83}}, "珍·重制·铸(外破) 外功破防等级提升83点": {"score": 74, "attr": {"physical_overcome_base": 83}}, "剑胆·铸(身法) 身法提升18点": {"score": 70, "attr": {"agility_base": 18}}, "剑胆·铸(根骨) 根骨提升18点": {"score": 70, "attr": {"spirit_base": 18}}, "仙踪·鞋·染(急速) 加速提升76点": {"score": 66, "attr": {"haste_base": 76}}, "仙踪·鞋·染(破招) 破招提升76点": {"score": 66, "attr": {"surplus": 76}}, "仙踪·鞋·染(内功) 内功攻击提升41点": {"score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·鞋·染(外攻) 外功攻击提升34点": {"score": 66, "attr": {"physical_attack_power_base": 34}}, "珍·风骨·铸(加速) 加速提升68点": {"score": 60, "attr": {"haste_base": 68}}, "珍·风骨·铸(内破) 内功破防等级提升68点": {"score": 60, "attr": {"magical_overcome_base": 68}}, "珍·风骨·铸(外破) 外功破防等级提升68点": {"score": 60, "attr": {"physical_overcome_base": 68}}, "珍·风骨·铸(内会) 内功会心等级提升68点": {"score": 60, "attr": {"magical_critical_strike_base": 68}}, "珍·风骨·铸(外会) 外功会心等级提升68点": {"score": 60, "attr": {"physical_critical_strike_base": 68}}, "固·安戎·铸(身法) 身法提升15": {"score": 58, "attr": {"agility_base": 15}}, "固·安戎·铸(根骨) 根骨提升15": {"score": 58, "attr": {"spirit_base": 15}}, "佳·剑胆·铸(加速) 加速等级提升56点": {"score": 49, "attr": {"haste_base": 56}}, "佳·剑胆·铸(无双) 无双等级提升56点": {"score": 49, "attr": {"strain_base": 56}}, "佳·剑胆·铸(内命) 破招等级提升56点": {"score": 49, "attr": {"surplus": 56}}, "佳·剑胆·铸(外命) 破招等级提升56点": {"score": 49, "attr": {"surplus": 56}}, "佳·剑胆·铸(内会) 内功会心等级提升56点": {"score": 49, "attr": {"magical_critical_strike_base": 56}}, "佳·剑胆·铸(外会) 外功会心等级提升56点": {"score": 49, "attr": {"physical_critical_strike_base": 56}}, "佳·剑胆·铸(内破) 内功破防等级提升56点": {"score": 49, "attr": {"magical_overcome_base": 56}}, "佳·剑胆·铸(外破) 外功破防等级提升56点": {"score": 49, "attr": {"physical_overcome_base": 56}}, "剑胆·铸(加速) 加速等级提升49点": {"score": 41, "attr": {"haste_base": 49}}, "剑胆·铸(无双) 无双等级提升49点": {"score": 41, "attr": {"strain_base": 49}}, "剑胆·铸(内命) 破招等级提升49点": {"score": 41, "attr": {"surplus": 49}}, "剑胆·铸(外命) 破招等级提升49点": {"score": 41, "attr": {"surplus": 49}}, "剑胆·铸(内会) 内功会心等级提升49点": {"score": 41, "attr": {"magical_critical_strike_base": 49}}, "剑胆·铸(外会) 外功会心等级提升49点": {"score": 41, "attr": {"physical_critical_strike_base": 49}}, "剑胆·铸(内破) 内功破防等级提升49点": {"score": 41, "attr": {"magical_overcome_base": 49}}, "剑胆·铸(外破) 外功破防等级提升49点": {"score": 41, "attr": {"physical_overcome_base": 49}}, "苍·安戎·铸(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·铸(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "雨花甲片(鞋子) 内功攻击永久提升18点(鞋子)": {"score": 30, "attr": {"magical_attack_power_base": 18}}, "苍海·铸(身法) 身法永久提升7点(鞋子)": {"score": 27, "attr": {"agility_base": 7}}, "苍海·铸(根骨) 根骨永久提升7点(鞋子)": {"score": 27, "attr": {"spirit_base": 7}}, "青龙甲片(鞋子) 内功攻击永久提升16点(鞋子)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "白虎甲片(鞋子) 外功永久提升13点(鞋子)": {"score": 25, "attr": {"physical_attack_power_base": 13}}, "黑曜甲片(鞋子) 外功攻击永久提升13点(鞋子)": {"score": 25, "attr": {"physical_attack_power_base": 13}}, "固·安戎·铸(加速) 加速提升27": {"score": 23, "attr": {"haste_base": 27}}, "固·安戎·铸(无双) 无双提升27": {"score": 23, "attr": {"strain_base": 27}}, "固·安戎·铸(内命) 破招提升27": {"score": 23, "attr": {"surplus": 27}}, "固·安戎·铸(外命) 破招提升27": {"score": 23, "attr": {"surplus": 27}}, "固·安戎·铸(内会) 内功会心提升27": {"score": 23, "attr": {"magical_critical_strike_base": 27}}, "固·安戎·铸(外会) 外功会心提升27": {"score": 23, "attr": {"physical_critical_strike_base": 27}}, "固·安戎·铸(内破) 内功破防提升27": {"score": 23, "attr": {"magical_overcome_base": 27}}, "固·安戎·铸(外破) 外功破防提升27": {"score": 23, "attr": {"physical_overcome_base": 27}}, "安戎·铸(加速) 加速提升24": {"score": 21, "attr": {"haste_base": 16}}, "明朗·铸(内功破防) 内功破防永久提升20点": {"score": 17, "attr": {"magical_overcome_base": 20}}, "明朗·铸(外功破防) 外功破防永久提升20点": {"score": 17, "attr": {"physical_overcome_base": 20}}, "云锡甲片(鞋子) 破招永久提升18点(鞋子)": {"score": 15, "attr": {"surplus": 18}}, "云英甲片(鞋子) 破招永久提升16点(鞋子)": {"score": 14, "attr": {"surplus": 16}}, "角砾甲片(鞋子) 外功会心永久提升16点(鞋子)": {"score": 14, "attr": {"physical_critical_strike_base": 16}}, "流纹甲片(鞋子) 内功会心永久提升16点(鞋子)": {"score": 14, "attr": {"magical_critical_strike_base": 16}}, "安戎·铸(无双) 无双提升24": {"score": 0, "attr": {"strain_base": 24}}, "安戎·铸(内命) 破招提升24": {"score": 0, "attr": {"surplus": 24}}, "安戎·铸(外命) 破招提升24": {"score": 0, "attr": {"surplus": 24}}, "安戎·铸(内会) 内功会心提升24": {"score": 0, "attr": {"magical_critical_strike_base": 24}}, "安戎·铸(外会) 外功会心提升24": {"score": 0, "attr": {"physical_critical_strike_base": 24}}, "安戎·铸(内破) 内功破防提升24": {"score": 0, "attr": {"magical_overcome_base": 24}}, "安戎·铸(外破) 外功破防提升24": {"score": 0, "attr": {"physical_overcome_base": 24}}, "安戎·铸(身法) 身法提升13": {"score": 0, "attr": {"agility_base": 14}}, "安戎·铸(根骨) 根骨提升13": {"score": 0, "attr": {"spirit_base": 14}}, "行军·铸(内破) 内功破防提升12": {"score": 0, "attr": {"magical_overcome_base": 12}}, "行军·铸(外破) 外功破防提升12": {"score": 0, "attr": {"physical_overcome_base": 12}}}
|
|
|
1 |
+
{"断浪·鞋·绣(急速) 加速提升974点": {"id": 12115, "score": 1050, "attr": {"haste_base": 974}}, "断浪·鞋·绣(破招) 破招提升974点": {"id": 12114, "score": 1050, "attr": {"surplus": 974}}, "断浪·鞋·绣(内攻) 内功攻击提升524点": {"id": 12112, "score": 1050, "attr": {"magical_attack_power_base": 524}}, "断浪·鞋·绣(外攻) 外功攻击提升439点": {"id": 12111, "score": 1050, "attr": {"physical_attack_power_base": 439}}, "断浪·鞋·绣(急速) 加速提升883点": {"id": 11946, "score": 952, "attr": {"haste_base": 883}}, "断浪·鞋·绣(破招) 破招提升883点": {"id": 11945, "score": 952, "attr": {"surplus": 883}}, "断浪·鞋·绣(内攻) 内功攻击提升475点": {"id": 11943, "score": 952, "attr": {"magical_attack_power_base": 475}}, "断浪·鞋·绣(外攻) 外功攻击提升398点": {"id": 11942, "score": 952, "attr": {"physical_attack_power_base": 398}}, "断浪·鞋·绣(急速) 加速提升799点": {"id": 11777, "score": 783, "attr": {"haste_base": 799}}, "断浪·鞋·绣(破招) 破招提升799点": {"id": 11776, "score": 783, "attr": {"surplus": 799}}, "断浪·鞋·绣(内功) 内功攻击提升430点": {"id": 11774, "score": 783, "attr": {"magical_attack_power_base": 430}}, "断浪·鞋·绣(外攻) 外功攻击提升360点": {"id": 11773, "score": 783, "attr": {"physical_attack_power_base": 360}}, "断浪·鞋·绣(急速) 加速提升723点": {"id": 11590, "score": 644, "attr": {"haste_base": 723}}, "断浪·鞋·绣(破招) 破招提升723点": {"id": 11589, "score": 644, "attr": {"surplus": 723}}, "断浪·鞋·绣(内功) 内功攻击提升389点": {"id": 11587, "score": 644, "attr": {"magical_attack_power_base": 389}}, "断浪·鞋·绣(外攻) 外功攻击提升326点": {"id": 11586, "score": 644, "attr": {"physical_attack_power_base": 326}}, "断浪·鞋·染(急速) 加速提升487点": {"id": 12138, "score": 524, "attr": {"haste_base": 487}}, "断浪·鞋·染(破招) 破招提升487点": {"id": 12137, "score": 524, "attr": {"surplus": 487}}, "断浪·鞋·染(内攻) 内功攻击提升262点": {"id": 12135, "score": 524, "attr": {"magical_attack_power_base": 262}}, "断浪·鞋·染(外攻) 外功攻击提升219点": {"id": 12134, "score": 524, "attr": {"physical_attack_power_base": 219}}, "断浪·鞋·染(急速) 加速提升442点": {"id": 11969, "score": 475, "attr": {"haste_base": 442}}, "断浪·鞋·染(破招) 破招提升442点": {"id": 11968, "score": 475, "attr": {"surplus": 442}}, "断浪·鞋·染(内攻) 内功攻击提升237点": {"id": 11966, "score": 475, "attr": {"magical_attack_power_base": 237}}, "断浪·鞋·染(外攻) 外功攻击提升199点": {"id": 11965, "score": 475, "attr": {"physical_attack_power_base": 199}}, "奉天·鞋·绣(急速) 加速提升491点": {"id": 11470, "score": 437, "attr": {"haste_base": 491}}, "奉天·鞋·绣(破招) 破招提升491点": {"id": 11469, "score": 437, "attr": {"surplus": 491}}, "奉天·鞋·绣(内攻) 内功攻击提升264点": {"id": 11467, "score": 437, "attr": {"magical_attack_power_base": 264}}, "奉天·鞋·绣(外攻) 外功攻击提升221点": {"id": 11466, "score": 437, "attr": {"physical_attack_power_base": 221}}, "连雾·鞋·内攻 鞋子内功攻击提高210": {"id": 12171, "score": 419, "attr": {"magical_attack_power_base": 210}}, "连雾·鞋·外攻 鞋子外功攻击提高176": {"id": 12170, "score": 419, "attr": {"physical_attack_power_base": 176}}, "连雾·鞋·破招 鞋子破招等级提高390": {"id": 12169, "score": 419, "attr": {"surplus": 390}}, "连雾·鞋·急速 鞋子加速等级提高390": {"id": 12168, "score": 419, "attr": {"haste_base": 390}}, "断浪·鞋·染(急速) 加速提升400点": {"id": 11800, "score": 391, "attr": {"haste_base": 400}}, "断浪·鞋·染(破招) 破招提升400点": {"id": 11799, "score": 391, "attr": {"surplus": 400}}, "断浪·鞋·染(内功) 内功攻击提升215点": {"id": 11797, "score": 391, "attr": {"magical_attack_power_base": 215}}, "断浪·鞋·染(外攻) 外功攻击提升180点": {"id": 11796, "score": 391, "attr": {"physical_attack_power_base": 180}}, "奉天·鞋·绣(急速) 加速提升441点": {"id": 11326, "score": 390, "attr": {"haste_base": 441}}, "奉天·鞋·绣(破招) 破招提升441点": {"id": 11325, "score": 390, "attr": {"surplus": 441}}, "奉天·鞋·绣(内攻) 内功攻击提升237点": {"id": 11323, "score": 390, "attr": {"magical_attack_power_base": 237}}, "奉天·鞋·绣(外攻) 外功攻击提升198点": {"id": 11322, "score": 390, "attr": {"physical_attack_power_base": 198}}, "连雾·鞋·内攻 鞋子内功攻击提高190": {"id": 12002, "score": 380, "attr": {"magical_attack_power_base": 190}}, "连雾·鞋·外攻 鞋子外功攻击提高159": {"id": 12001, "score": 380, "attr": {"physical_attack_power_base": 159}}, "连雾·鞋·破招 鞋子破招等级提高353": {"id": 12000, "score": 380, "attr": {"surplus": 353}}, "连雾·鞋·急速 鞋子加速等级提高353": {"id": 11999, "score": 380, "attr": {"haste_base": 353}}, "奉天·鞋·绣(急速) 加速提升397点": {"id": 11238, "score": 352, "attr": {"haste_base": 397}}, "奉天·鞋·绣(破招) 破招提升397点": {"id": 11237, "score": 352, "attr": {"surplus": 397}}, "奉天·鞋·绣(内攻) 内功攻击提升214点": {"id": 11235, "score": 352, "attr": {"magical_attack_power_base": 214}}, "奉天·鞋·绣(外攻) 外功攻击提升179点": {"id": 11234, "score": 352, "attr": {"physical_attack_power_base": 179}}, "断浪·鞋·染(急速) 加速提升362点": {"id": 11613, "score": 322, "attr": {"haste_base": 362}}, "断浪·鞋·染(破招) 破招提升362点": {"id": 11612, "score": 322, "attr": {"surplus": 362}}, "断浪·鞋·染(内功) 内功攻击提升194点": {"id": 11610, "score": 322, "attr": {"magical_attack_power_base": 194}}, "断浪·鞋·染(外攻) 外功攻击提升163点": {"id": 11609, "score": 322, "attr": {"physical_attack_power_base": 163}}, "连雾·鞋·内功 鞋子内功攻击提高172": {"id": 11833, "score": 313, "attr": {"magical_attack_power_base": 172}}, "连雾·鞋·外功 鞋子外功攻击提高144": {"id": 11832, "score": 313, "attr": {"physical_attack_power_base": 144}}, "连雾·鞋·破招 鞋子破招等级提高320": {"id": 11831, "score": 313, "attr": {"surplus": 320}}, "连雾·鞋·急速 鞋子加速等级提高320": {"id": 11830, "score": 313, "attr": {"haste_base": 320}}, "奉天·鞋·绣(急速) 加速提升325点": {"id": 11083, "score": 288, "attr": {"haste_base": 325}}, "奉天·鞋·绣(破招) 破招提升325点": {"id": 11082, "score": 288, "attr": {"surplus": 325}}, "奉天·鞋·绣(内攻) 内功攻击提升175点": {"id": 11080, "score": 288, "attr": {"magical_attack_power_base": 175}}, "奉天·鞋·绣(外攻) 外功攻击提升146点": {"id": 11079, "score": 288, "attr": {"physical_attack_power_base": 146}}, "连雾·鞋·内功 鞋子内功攻击提高156": {"id": 11647, "score": 258, "attr": {"magical_attack_power_base": 156}}, "连雾·鞋·外功 鞋子外功攻击提高130": {"id": 11646, "score": 258, "attr": {"physical_attack_power_base": 130}}, "连雾·鞋·破招 鞋子破招等级提高289": {"id": 11645, "score": 258, "attr": {"surplus": 289}}, "连雾·鞋·急速 鞋子加速等级提高289": {"id": 11644, "score": 258, "attr": {"haste_base": 289}}, "奉天·鞋·染(急速) 加速提升289点": {"id": 11106, "score": 255, "attr": {"haste_base": 289}}, "奉天·鞋·染(破招) 破招提升289点": {"id": 11105, "score": 255, "attr": {"surplus": 289}}, "奉天·鞋·染(内攻) 内功攻击提升155点": {"id": 11103, "score": 255, "attr": {"magical_attack_power_base": 155}}, "奉天·鞋·染(外攻) 外功攻击提升130点": {"id": 11102, "score": 255, "attr": {"physical_attack_power_base": 130}}, "仙踪·鞋·绣(急速) 加速提升209点": {"id": 10847, "score": 185, "attr": {"haste_base": 209}}, "仙踪·鞋·绣(破招) 破招提升209点": {"id": 10846, "score": 185, "attr": {"surplus": 209}}, "仙踪·鞋·绣(内功) 内功攻击提升113点": {"id": 10844, "score": 185, "attr": {"magical_attack_power_base": 113}}, "仙踪·鞋·绣(外功) 外功攻击提升94点": {"id": 10843, "score": 185, "attr": {"physical_attack_power_base": 94}}, "仙踪·鞋·绣(急速) 加速提升188点": {"id": 10675, "score": 165, "attr": {"haste_base": 188}}, "仙踪·鞋·绣(破招) 破招提升188点": {"id": 10674, "score": 165, "attr": {"surplus": 188}}, "仙踪·鞋·绣(内功) 内功攻击提升101点": {"id": 10672, "score": 165, "attr": {"magical_attack_power_base": 101}}, "仙踪·鞋·绣(外攻) 外功攻击提升85点": {"id": 10671, "score": 165, "attr": {"physical_attack_power_base": 85}}, "仙踪·鞋·绣(急速) 加速提升166点": {"id": 10535, "score": 146, "attr": {"haste_base": 166}}, "仙踪·鞋·绣(破招) 破招提升166点": {"id": 10534, "score": 146, "attr": {"surplus": 166}}, "仙踪·鞋·绣(内功) 内功攻击提升89点": {"id": 10532, "score": 146, "attr": {"magical_attack_power_base": 89}}, "仙踪·鞋·绣(外攻) 外功攻击提升75点": {"id": 10531, "score": 146, "attr": {"physical_attack_power_base": 75}}, "仙踪·鞋·绣(急速) 加速提升152点": {"id": 10407, "score": 133, "attr": {"haste_base": 152}}, "仙踪·鞋·绣(破招) 破招提升152点": {"id": 10406, "score": 133, "attr": {"surplus": 152}}, "仙踪·鞋·绣(内功) 内功攻击提升82点": {"id": 10404, "score": 133, "attr": {"magical_attack_power_base": 82}}, "仙踪·鞋·绣(外攻) 外功攻击提升68点": {"id": 10403, "score": 133, "attr": {"physical_attack_power_base": 68}}, "珍·重制·铸(身法) 身法提升31点": {"id": 6344, "score": 121, "attr": {"agility_base": 31}}, "珍·重制·铸(根骨) 根骨提升31点": {"id": 6343, "score": 121, "attr": {"spirit_base": 31}}, "珍·风骨·铸(身法) 身法提升25点": {"id": 6262, "score": 98, "attr": {"agility_base": 25}}, "珍·风骨·铸(根骨) 根骨提升25点": {"id": 6261, "score": 98, "attr": {"spirit_base": 25}}, "仙踪·鞋·染(急速) 加速提升105点": {"id": 10870, "score": 94, "attr": {"haste_base": 105}}, "仙踪·鞋·染(破招) 破招提升105点": {"id": 10869, "score": 94, "attr": {"surplus": 105}}, "仙踪·鞋·染(内功) 内功攻击提升57点": {"id": 10867, "score": 94, "attr": {"magical_attack_power_base": 57}}, "仙踪·鞋·染(外功) 外功攻击提升47点": {"id": 10866, "score": 94, "attr": {"physical_attack_power_base": 47}}, "仙踪·鞋·染(急速) 加速提升94点": {"id": 10698, "score": 83, "attr": {"haste_base": 94}}, "仙踪·鞋·染(破招) 破招提升94点": {"id": 10697, "score": 83, "attr": {"surplus": 94}}, "仙踪·鞋·染(内功) 内功攻击提升51点": {"id": 10695, "score": 83, "attr": {"magical_attack_power_base": 51}}, "仙踪·鞋·染(外攻) 外功攻击提升43点": {"id": 10694, "score": 83, "attr": {"physical_attack_power_base": 43}}, "佳·剑胆·铸(身法) 身法提升21点": {"id": 6192, "score": 82, "attr": {"agility_base": 21}}, "佳·剑胆·铸(根骨) 根骨提升21点": {"id": 6191, "score": 82, "attr": {"spirit_base": 21}}, "仙踪·鞋·染(急速) 加速提升84点": {"id": 10558, "score": 74, "attr": {"haste_base": 84}}, "仙踪·鞋·染(破招) 破招提升84点": {"id": 10557, "score": 74, "attr": {"surplus": 84}}, "仙踪·鞋·染(内功) 内功攻击提升44点": {"id": 10555, "score": 74, "attr": {"magical_attack_power_base": 44}}, "仙踪·鞋·染(外攻) 外功攻击提升37点": {"id": 10554, "score": 74, "attr": {"physical_attack_power_base": 37}}, "珍·重制·铸(内会) 内功会心等级提升83点": {"id": 6346, "score": 74, "attr": {"magical_critical_strike_base": 83}}, "珍·重制·铸(外会) 外功会心等级提升83点": {"id": 6345, "score": 74, "attr": {"physical_critical_strike_base": 83}}, "珍·重制·铸(无双) 无双等级提升83点": {"id": 6342, "score": 74, "attr": {"strain_base": 83}}, "珍·重制·铸(内命) 破招等级提升83点": {"id": 6341, "score": 74, "attr": {"surplus": 83}}, "珍·重制·铸(外命) 破招等级提升83点": {"id": 6340, "score": 74, "attr": {"surplus": 83}}, "珍·重制·铸(加速) 加速提升83点": {"id": 6339, "score": 74, "attr": {"haste_base": 83}}, "珍·重制·铸(内破) 内功破防等级提升83点": {"id": 6338, "score": 74, "attr": {"magical_overcome_base": 83}}, "珍·重制·铸(外破) 外功破防等级提升83点": {"id": 6337, "score": 74, "attr": {"physical_overcome_base": 83}}, "剑胆·铸(身法) 身法提升18点": {"id": 6162, "score": 70, "attr": {"agility_base": 18}}, "剑胆·铸(根骨) 根骨提升18点": {"id": 6161, "score": 70, "attr": {"spirit_base": 18}}, "仙踪·鞋·染(急速) 加速提升76点": {"id": 10430, "score": 66, "attr": {"haste_base": 76}}, "仙踪·鞋·染(破招) 破招提升76点": {"id": 10429, "score": 66, "attr": {"surplus": 76}}, "仙踪·鞋·染(内功) 内功攻击提升41点": {"id": 10427, "score": 66, "attr": {"magical_attack_power_base": 41}}, "仙踪·鞋·染(外攻) 外功攻击提升34点": {"id": 10426, "score": 66, "attr": {"physical_attack_power_base": 34}}, "珍·风骨·铸(加速) 加速提升68点": {"id": 6288, "score": 60, "attr": {"haste_base": 68}}, "珍·风骨·铸(内破) 内功破防等级提升68点": {"id": 6287, "score": 60, "attr": {"magical_overcome_base": 68}}, "珍·风骨·铸(外破) 外功破防等级提升68点": {"id": 6286, "score": 60, "attr": {"physical_overcome_base": 68}}, "珍·风骨·铸(内会) 内功会心等级提升68点": {"id": 6264, "score": 60, "attr": {"magical_critical_strike_base": 68}}, "珍·风骨·铸(外会) 外功会心等级提升68点": {"id": 6263, "score": 60, "attr": {"physical_critical_strike_base": 68}}, "固·安戎·铸(身法) 身法提升15": {"id": 5988, "score": 58, "attr": {"agility_base": 15}}, "固·安戎·铸(根骨) 根骨提升15": {"id": 5987, "score": 58, "attr": {"spirit_base": 15}}, "佳·剑胆·铸(加速) 加速等级提升56点": {"id": 6201, "score": 49, "attr": {"haste_base": 56}}, "佳·剑胆·铸(无双) 无双等级提升56点": {"id": 6200, "score": 49, "attr": {"strain_base": 56}}, "佳·剑胆·铸(内命) 破招等级提升56点": {"id": 6199, "score": 49, "attr": {"surplus": 56}}, "佳·剑胆·铸(外命) 破招等级提升56点": {"id": 6198, "score": 49, "attr": {"surplus": 56}}, "佳·剑胆·铸(内会) 内功会心等级提升56点": {"id": 6197, "score": 49, "attr": {"magical_critical_strike_base": 56}}, "佳·剑胆·铸(外会) 外功会心等级提升56点": {"id": 6196, "score": 49, "attr": {"physical_critical_strike_base": 56}}, "佳·剑胆·铸(内破) 内功破防等级提升56点": {"id": 6194, "score": 49, "attr": {"magical_overcome_base": 56}}, "佳·剑胆·铸(外破) 外功破防等级提升56点": {"id": 6193, "score": 49, "attr": {"physical_overcome_base": 56}}, "剑胆·铸(加速) 加速等级提升49点": {"id": 6171, "score": 41, "attr": {"haste_base": 49}}, "剑胆·铸(无双) 无双等级提升49点": {"id": 6170, "score": 41, "attr": {"strain_base": 49}}, "剑胆·铸(内命) 破招等级提升49点": {"id": 6169, "score": 41, "attr": {"surplus": 49}}, "剑胆·铸(外命) 破招等级提升49点": {"id": 6168, "score": 41, "attr": {"surplus": 49}}, "剑胆·铸(内会) 内功会心等级提升49点": {"id": 6167, "score": 41, "attr": {"magical_critical_strike_base": 49}}, "剑胆·铸(外会) 外功会心等级提升49点": {"id": 6166, "score": 41, "attr": {"physical_critical_strike_base": 49}}, "剑胆·铸(内破) 内功破防等级提升49点": {"id": 6164, "score": 41, "attr": {"magical_overcome_base": 49}}, "剑胆·铸(外破) 外功破防等级提升49点": {"id": 6163, "score": 41, "attr": {"physical_overcome_base": 49}}, "苍·安戎·铸(外伤) 外功攻击提升18": {"id": 6056, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·铸(内伤) 内功攻击提升22": {"id": 6055, "score": 35, "attr": {"magical_attack_power_base": 22}}, "雨花甲片(鞋子) 内功攻击永久提升18点(鞋子)": {"id": 405, "score": 30, "attr": {"magical_attack_power_base": 18}}, "苍海·铸(身法) 身法永久提升7点(鞋子)": {"id": 5153, "score": 27, "attr": {"agility_base": 7}}, "苍海·铸(根骨) 根骨永久提升7点(鞋子)": {"id": 5151, "score": 27, "attr": {"spirit_base": 7}}, "青龙甲片(鞋子) 内功攻击永久提升16点(鞋子)": {"id": 423, "score": 26, "attr": {"magical_attack_power_base": 16}}, "白虎甲片(鞋子) 外功永久提升13点(鞋子)": {"id": 425, "score": 25, "attr": {"physical_attack_power_base": 13}}, "黑曜甲片(鞋子) 外功攻击永久提升13点(鞋子)": {"id": 403, "score": 25, "attr": {"physical_attack_power_base": 13}}, "固·安戎·铸(加速) 加速提升27": {"id": 6014, "score": 23, "attr": {"haste_base": 27}}, "固·安戎·铸(无双) 无双提升27": {"id": 5996, "score": 23, "attr": {"strain_base": 27}}, "固·安戎·铸(内命) 破招提升27": {"id": 5995, "score": 23, "attr": {"surplus": 27}}, "固·安戎·铸(外命) 破招提升27": {"id": 5994, "score": 23, "attr": {"surplus": 27}}, "固·安戎·铸(内会) 内功会心提升27": {"id": 5993, "score": 23, "attr": {"magical_critical_strike_base": 27}}, "固·安戎·铸(外会) 外功会心提升27": {"id": 5992, "score": 23, "attr": {"physical_critical_strike_base": 27}}, "固·安戎·铸(内破) 内功破防提升27": {"id": 5990, "score": 23, "attr": {"magical_overcome_base": 27}}, "固·安戎·铸(外破) 外功破防提升27": {"id": 5989, "score": 23, "attr": {"physical_overcome_base": 27}}, "安戎·铸(加速) 加速提升24": {"id": 6012, "score": 21, "attr": {"haste_base": 16}}, "明朗·铸(内功破防) 内功破防永久提升20点": {"id": 5586, "score": 17, "attr": {"magical_overcome_base": 20}}, "明朗·铸(外功破防) 外功破防永久提升20点": {"id": 5585, "score": 17, "attr": {"physical_overcome_base": 20}}, "云锡甲片(鞋子) 破招永久提升18点(鞋子)": {"id": 409, "score": 15, "attr": {"surplus": 18}}, "云英甲片(鞋子) 破招永久提升16点(鞋子)": {"id": 395, "score": 14, "attr": {"surplus": 16}}, "角砾甲片(鞋子) 外功会心永久提升16点(鞋子)": {"id": 391, "score": 14, "attr": {"physical_critical_strike_base": 16}}, "流纹甲片(鞋子) 内功会心永久提升16点(鞋子)": {"id": 389, "score": 14, "attr": {"magical_critical_strike_base": 16}}, "安戎·铸(无双) 无双提升24": {"id": 5968, "score": 0, "attr": {"strain_base": 24}}, "安戎·铸(内命) 破招提升24": {"id": 5967, "score": 0, "attr": {"surplus": 24}}, "安戎·铸(外命) 破招提升24": {"id": 5966, "score": 0, "attr": {"surplus": 24}}, "安戎·铸(内会) 内功会心提升24": {"id": 5965, "score": 0, "attr": {"magical_critical_strike_base": 24}}, "安戎·铸(外会) 外功会心提升24": {"id": 5964, "score": 0, "attr": {"physical_critical_strike_base": 24}}, "安戎·铸(内破) 内功破防提升24": {"id": 5962, "score": 0, "attr": {"magical_overcome_base": 24}}, "安戎·铸(外破) 外功破防提升24": {"id": 5961, "score": 0, "attr": {"physical_overcome_base": 24}}, "安戎·铸(身法) 身法提升13": {"id": 5960, "score": 0, "attr": {"agility_base": 14}}, "安戎·铸(根骨) 根骨提升13": {"id": 5959, "score": 0, "attr": {"spirit_base": 14}}, "行军·铸(内破) 内功破防提升12": {"id": 5944, "score": 0, "attr": {"magical_overcome_base": 12}}, "行军·铸(外破) 外功破防提升12": {"id": 5943, "score": 0, "attr": {"physical_overcome_base": 12}}}
|
qt/assets/enchants/tertiary_weapon
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断流心岩·暗器(加速) 加速提升974点": {"score": 1050, "attr": {"haste_base": 974}}, "断流心岩·暗器(内破) 内功破防等级提升974点": {"score": 1050, "attr": {"magical_overcome_base": 974}}, "断流心岩·暗器(外破) 外功破防等级提升974点": {"score": 1050, "attr": {"physical_overcome_base": 974}}, "断流心岩·暗器(身法) 身法提升218点": {"score": 1050, "attr": {"agility_base": 218}}, "断流心岩·暗器(元气) 元气提升218点": {"score": 1050, "attr": {"spunk_base": 218}}, "断流心岩·暗器(力道) 力道提升218点": {"score": 1050, "attr": {"strength_base": 218}}, "断流心岩·暗器(根骨) 根骨提升218点": {"score": 1050, "attr": {"spirit_base": 218}}, "断流心岩·暗器(加速) 加速提升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}}}
|
|
|
1 |
+
{"断流心岩·暗器(加速) 加速提升974点": {"id": 12191, "score": 1050, "attr": {"haste_base": 974}}, "断流心岩·暗器(内破) 内功破防等级提升974点": {"id": 12190, "score": 1050, "attr": {"magical_overcome_base": 974}}, "断流心岩·暗器(外破) 外功破防等级提升974点": {"id": 12189, "score": 1050, "attr": {"physical_overcome_base": 974}}, "断流心岩·暗器(身法) 身法提升218点": {"id": 12188, "score": 1050, "attr": {"agility_base": 218}}, "断流心岩·暗器(元气) 元气提升218点": {"id": 12187, "score": 1050, "attr": {"spunk_base": 218}}, "断流心岩·暗器(力道) 力道提升218点": {"id": 12186, "score": 1050, "attr": {"strength_base": 218}}, "断流心岩·暗器(根骨) 根骨提升218点": {"id": 12185, "score": 1050, "attr": {"spirit_base": 218}}, "断流心岩·暗器(加速) 加速提升883点": {"id": 12022, "score": 952, "attr": {"haste_base": 883}}, "断流心岩·暗器(内破) 内功破防等级提升883点": {"id": 12021, "score": 952, "attr": {"magical_overcome_base": 883}}, "断流心岩·暗器(外破) 外功破防等级提升883点": {"id": 12020, "score": 952, "attr": {"physical_overcome_base": 883}}, "断流心岩·暗器(身法) 身法提升198点": {"id": 12019, "score": 952, "attr": {"agility_base": 198}}, "断流心岩·暗器(元气) 元气提升198点": {"id": 12018, "score": 952, "attr": {"spunk_base": 198}}, "断流心岩·暗器(力道) 力道提升198点": {"id": 12017, "score": 952, "attr": {"strength_base": 198}}, "断流心岩·暗器(根骨) 根骨提升198点": {"id": 12016, "score": 952, "attr": {"spirit_base": 198}}, "断流心岩·暗器(加速) 加速提升799点": {"id": 11853, "score": 783, "attr": {"haste_base": 799}}, "断流心岩·暗器(内破) 内功破防等级提升799点": {"id": 11852, "score": 783, "attr": {"magical_overcome_base": 799}}, "断流心岩·暗器(外破) 外功破防等级提升799点": {"id": 11851, "score": 783, "attr": {"physical_overcome_base": 799}}, "断流心岩·暗器(身法) 身法提升179点": {"id": 11850, "score": 783, "attr": {"agility_base": 179}}, "断流心岩·暗器(元气) 元气提升179点": {"id": 11849, "score": 783, "attr": {"spunk_base": 179}}, "断流心岩·暗器(力道) 力道提升179点": {"id": 11848, "score": 783, "attr": {"strength_base": 179}}, "断流心岩·暗器(根骨) 根骨提升179点": {"id": 11847, "score": 783, "attr": {"spirit_base": 179}}, "断流心岩·暗器(加速) 加速提升723点": {"id": 11669, "score": 644, "attr": {"haste_base": 723}}, "断流心岩·暗器(内破) 内功破防等级提升723点": {"id": 11668, "score": 644, "attr": {"magical_overcome_base": 723}}, "断流心岩·暗器(外破) 外功破防等级提升723点": {"id": 11667, "score": 644, "attr": {"physical_overcome_base": 723}}, "断流心岩·暗器(身法) 身法提升162点": {"id": 11666, "score": 644, "attr": {"agility_base": 162}}, "断流心岩·暗器(元气) 元气提升162点": {"id": 11665, "score": 644, "attr": {"spunk_base": 162}}, "断流心岩·暗器(力道) 力道提升162点": {"id": 11664, "score": 644, "attr": {"strength_base": 162}}, "断流心岩·暗器(根骨) 根骨提升162点": {"id": 11663, "score": 644, "attr": {"spirit_base": 162}}}
|
qt/assets/enchants/wrist
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"断浪·腕·绣(无双) 无双等级提升974点": {"score": 1050, "attr": {"strain_base": 974}}, "断浪·腕·绣(会心) 全会心提升974点": {"score": 1050, "attr": {"all_critical_strike_base": 974}}, "断浪·腕·绣(内破) 内功破防等级提升974点": {"score": 1050, "attr": {"magical_overcome_base": 974}}, "断浪·腕·绣(外破) 外功破防等级提升974点": {"score": 1050, "attr": {"physical_overcome_base": 974}}, "断浪·腕·绣(根骨) 根骨提升218点": {"score": 1050, "attr": {"spirit_base": 218}}, "断浪·腕·绣(力道) 力道提升218点": {"score": 1050, "attr": {"strength_base": 218}}, "断浪·腕·绣(元气) 元气提升218点": {"score": 1050, "attr": {"spunk_base": 218}}, "断浪·腕·绣(身法) 身法提升218点": {"score": 1050, "attr": {"agility_base": 218}}, "断浪·腕·绣(无双) 无双等级提升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}}, "断浪·腕·染(无双) 无双等级提升487点": {"score": 524, "attr": {"strain_base": 487}}, "断浪·腕·染(会心) 全会心提升487点": {"score": 524, "attr": {"all_critical_strike_base": 487}}, "断浪·腕·染(内破) 内功破防等级提升487点": {"score": 524, "attr": {"magical_overcome_base": 487}}, "断浪·腕·染(外破) 外功破防等级提升487点": {"score": 524, "attr": {"physical_overcome_base": 487}}, "断浪·腕·染(根骨) 根骨提升109点": {"score": 524, "attr": {"spirit_base": 109}}, "断浪·腕·染(力道) 力道提升109点": {"score": 524, "attr": {"strength_base": 109}}, "断浪·腕·染(元气) 元气提升109点": {"score": 524, "attr": {"spunk_base": 109}}, "断浪·腕·染(身法) 身法提升109点": {"score": 524, "attr": {"agility_base": 109}}, "断浪·腕·染(无双) 无双等级提升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}}, "奉天·腕·绣(无双) 无双等级提升491点": {"score": 437, "attr": {"strain_base": 491}}, "奉天·腕·绣(会心) 全会心提升491点": {"score": 437, "attr": {"all_critical_strike_base": 491}}, "奉天·腕·绣(内破) 内功破防等级提升491点": {"score": 437, "attr": {"magical_overcome_base": 491}}, "奉天·腕·绣(外破) 外功破防等级提升491点": {"score": 437, "attr": {"physical_overcome_base": 491}}, "奉天·腕·绣(根骨) 根骨提升110点": {"score": 437, "attr": {"spirit_base": 110}}, "奉天·腕·绣(力道) 力道提升110点": {"score": 437, "attr": {"strength_base": 110}}, "奉天·腕·绣(元气) 元气提升110点": {"score": 437, "attr": {"spunk_base": 110}}, "奉天·腕·绣(身法) 身法提升110点": {"score": 437, "attr": {"agility_base": 110}}, "连雾·腕·无双 护腕无双等级提高390": {"score": 419, "attr": {"strain_base": 390}}, "连雾·腕·内破 护腕内功破防等级提高390": {"score": 419, "attr": {"magical_overcome_base": 390}}, "连雾·腕·外破 护腕外功破防等级提高390": {"score": 419, "attr": {"physical_overcome_base": 390}}, "连雾·腕·会心 护腕全会心等级提高390": {"score": 419, "attr": {"all_critical_strike_base": 390}}, "断浪·腕·染(无双) 无双等级提升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}}, "奉天·腕·绣(无双) 无双等级提升441点": {"score": 390, "attr": {"strain_base": 441}}, "奉天·腕·绣(会心) 全会心提升441点": {"score": 390, "attr": {"all_critical_strike_base": 441}}, "奉天·腕·绣(内破) 内功破防等级提升441点": {"score": 390, "attr": {"magical_overcome_base": 441}}, "奉天·腕·绣(外破) 外功破防等级提升441点": {"score": 390, "attr": {"physical_overcome_base": 441}}, "奉天·腕·绣(根骨) 根骨提升99点": {"score": 390, "attr": {"spirit_base": 99}}, "奉天·腕·绣(力道) 力道提升99点": {"score": 390, "attr": {"strength_base": 99}}, "奉天·腕·绣(元气) 元气提升99点": {"score": 390, "attr": {"spunk_base": 99}}, "奉天·腕·绣(身法) 身法提升99点": {"score": 390, "attr": {"agility_base": 99}}, "连雾·腕·无双 护腕无双等级提高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}}, "奉天·腕·绣(无双) 无双等级提升397点": {"score": 352, "attr": {"strain_base": 397}}, "奉天·腕·绣(会心) 全会心提升397点": {"score": 352, "attr": {"all_critical_strike_base": 397}}, "奉天·腕·绣(内破) 内功破防等级提升397点": {"score": 352, "attr": {"magical_overcome_base": 397}}, "奉天·腕·绣(外破) 外功破防等级提升397点": {"score": 352, "attr": {"physical_overcome_base": 397}}, "奉天·腕·绣(根骨) 根骨提升89点": {"score": 352, "attr": {"spirit_base": 89}}, "奉天·腕·绣(力道) 力道提升89点": {"score": 352, "attr": {"strength_base": 89}}, "奉天·腕·绣(元气) 元气提升89点": {"score": 352, "attr": {"spunk_base": 89}}, "奉天·腕·绣(身法) 身法提升89点": {"score": 352, "attr": {"agility_base": 89}}, "断浪·腕·染(无双) 无双等级提升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}}, "奉天·腕·绣(无双) 无双等级提升325点": {"score": 288, "attr": {"strain_base": 325}}, "奉天·腕·绣(会心) 全会心提升325点": {"score": 288, "attr": {"all_critical_strike_base": 325}}, "奉天·腕·绣(内破) 内功破防等级提升325点": {"score": 288, "attr": {"magical_overcome_base": 325}}, "奉天·腕·绣(外破) 外功破防等级提升325点": {"score": 288, "attr": {"physical_overcome_base": 325}}, "奉天·腕·绣(根骨) 根骨提升73点": {"score": 286, "attr": {"spirit_base": 73}}, "奉天·腕·绣(力道) 力道提升73点": {"score": 286, "attr": {"strength_base": 73}}, "奉天·腕·绣(元气) 元气提升73点": {"score": 286, "attr": {"spunk_base": 73}}, "奉天·腕·绣(身法) 身法提升73点": {"score": 286, "attr": {"agility_base": 73}}, "连雾·腕·无双 护腕无双等级提高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}}, "奉天·腕·染(无双) 无双等级提升289点": {"score": 255, "attr": {"strain_base": 289}}, "奉天·腕·染(会心) 全会心提升289点": {"score": 255, "attr": {"all_critical_strike_base": 289}}, "奉天·腕·染(内破) 内功破防等级提升289点": {"score": 255, "attr": {"magical_overcome_base": 289}}, "奉天·腕·染(外破) 外功破防等级提升289点": {"score": 255, "attr": {"physical_overcome_base": 289}}, "奉天·腕·染(根骨) 根骨提升65点": {"score": 255, "attr": {"spirit_base": 65}}, "奉天·腕·染(力道) 力道提升65点": {"score": 255, "attr": {"strength_base": 65}}, "奉天·腕·染(元气) 元气提升65点": {"score": 255, "attr": {"spunk_base": 65}}, "奉天·腕·染(身法) 身法提升65点": {"score": 255, "attr": {"agility_base": 65}}, "仙踪·腕·绣(无双) 无双等级提升209点": {"score": 185, "attr": {"strain_base": 209}}, "仙踪·腕·绣(会心) 全会心提升209点": {"score": 185, "attr": {"all_critical_strike_base": 209}}, "仙踪·腕·绣(内破) 内功破防等级提升209点": {"score": 185, "attr": {"magical_overcome_base": 209}}, "仙踪·腕·绣(外破) 外功破防等级提升209点": {"score": 185, "attr": {"physical_overcome_base": 209}}, "仙踪·腕·绣(根骨) 根骨提升47点": {"score": 185, "attr": {"spirit_base": 47}}, "仙踪·腕·绣(力道) 力道提升47点": {"score": 185, "attr": {"strength_base": 47}}, "仙踪·腕·绣(元气) 元气提升47点": {"score": 185, "attr": {"spunk_base": 47}}, "仙踪·腕·绣(身法) 身法提升47点": {"score": 185, "attr": {"agility_base": 47}}, "仙踪·腕·绣(无双) 无双等级提升188点": {"score": 165, "attr": {"strain_base": 188}}, "仙踪·腕·绣(会心) 全会心提升188点": {"score": 165, "attr": {"all_critical_strike_base": 188}}, "仙踪·腕·绣(内破) 内功破防等级提升188点": {"score": 165, "attr": {"magical_overcome_base": 188}}, "仙踪·腕·绣(外破) 外功破防等级提升188点": {"score": 165, "attr": {"physical_overcome_base": 188}}, "仙踪·腕·绣(根骨) 根骨提升42点": {"score": 165, "attr": {"spirit_base": 42}}, "仙踪·腕·绣(力道) 力道提升42点": {"score": 165, "attr": {"strength_base": 42}}, "仙踪·腕·绣(元气) 元气提升42点": {"score": 165, "attr": {"spunk_base": 42}}, "仙踪·腕·绣(身法) 身法提升42点": {"score": 165, "attr": {"agility_base": 42}}, "仙踪·腕·绣(无双) 无双等级提升166点": {"score": 146, "attr": {"strain_base": 166}}, "仙踪·腕·绣(会心) 全会心提升166点": {"score": 146, "attr": {"all_critical_strike_base": 166}}, "仙踪·腕·绣(内破) 内功破防等级提升166点": {"score": 146, "attr": {"magical_overcome_base": 166}}, "仙踪·腕·绣(外破) 外功破防等级提升166点": {"score": 146, "attr": {"physical_overcome_base": 166}}, "仙踪·腕·绣(根骨) 根骨提升37点": {"score": 146, "attr": {"spirit_base": 37}}, "仙踪·腕·绣(力道) 力道提升37点": {"score": 146, "attr": {"strength_base": 37}}, "仙踪·腕·绣(元气) 元气提升37点": {"score": 146, "attr": {"spunk_base": 37}}, "仙踪·腕·绣(身法) 身法提升37点": {"score": 146, "attr": {"agility_base": 37}}, "仙踪·腕·绣(无双) 无双等级提升152点": {"score": 133, "attr": {"strain_base": 152}}, "仙踪·腕·绣(会心) 全会心提升152点": {"score": 133, "attr": {"all_critical_strike_base": 152}}, "仙踪·腕·绣(内破) 内功破防等级提升152点": {"score": 133, "attr": {"magical_overcome_base": 152}}, "仙踪·腕·绣(外破) 外功破防等级提升152点": {"score": 133, "attr": {"physical_overcome_base": 152}}, "仙踪·腕·绣(根骨) 根骨提升34点": {"score": 133, "attr": {"spirit_base": 34}}, "仙踪·腕·绣(力道) 力道提升34点": {"score": 133, "attr": {"strength_base": 34}}, "仙踪·腕·绣(元气) 元气提升34点": {"score": 133, "attr": {"spunk_base": 34}}, "仙踪·腕·绣(身法) 身法提升34点": {"score": 133, "attr": {"agility_base": 34}}, "珍·重制·染(元气) 元气提升31点": {"score": 121, "attr": {"spunk_base": 31}}, "珍·重制·染(力道) 力道提升31点": {"score": 121, "attr": {"strength_base": 31}}, "珍·重制·染(内伤) 内功攻击提升75点": {"score": 121, "attr": {"magical_attack_power_base": 75}}, "珍·重制·染(外伤) 外功攻击提升62点": {"score": 121, "attr": {"physical_attack_power_base": 62}}, "珍·风骨·染(内伤) 内功攻击提升61点": {"score": 100, "attr": {"magical_attack_power_base": 61}}, "珍·风骨·染(外伤) 外功攻击提升51点": {"score": 100, "attr": {"physical_attack_power_base": 51}}, "珍·风骨·染(元气) 元气提升25点": {"score": 98, "attr": {"spunk_base": 25}}, "珍·风骨·染(力道) 力道提升25点": {"score": 98, "attr": {"strength_base": 25}}, "仙踪·腕·染(无双) 无双等级提升105点": {"score": 94, "attr": {"strain_base": 105}}, "仙踪·腕·染(会心) 全会心提升105点": {"score": 94, "attr": {"all_critical_strike_base": 105}}, "仙踪·腕·染(内破) 内功破防等级提升105点": {"score": 94, "attr": {"magical_overcome_base": 105}}, "仙踪·腕·染(外破) 外功破防等级提升105点": {"score": 94, "attr": {"physical_overcome_base": 105}}, "仙踪·腕·染(根骨) 根骨提升24点": {"score": 94, "attr": {"spirit_base": 24}}, "仙踪·腕·染(力道) 力道提升24点": {"score": 94, "attr": {"strength_base": 24}}, "仙踪·腕·染(元气) 元气提升24点": {"score": 94, "attr": {"spunk_base": 24}}, "仙踪·腕·染(身法) 身法提升24点": {"score": 94, "attr": {"agility_base": 24}}, "仙踪·腕·染(无双) 无双等级提升94点": {"score": 83, "attr": {"strain_base": 94}}, "仙踪·腕·染(会心) 全会心提升94点": {"score": 83, "attr": {"all_critical_strike_base": 94}}, "仙踪·腕·染(内破) 内功破防等级提升94点": {"score": 83, "attr": {"magical_overcome_base": 94}}, "仙踪·腕·染(外破) 外功破防等级提升94点": {"score": 83, "attr": {"physical_overcome_base": 94}}, "仙踪·腕·染(根骨) 根骨提升21点": {"score": 83, "attr": {"spirit_base": 21}}, "仙踪·腕·染(力道) 力道提升21点": {"score": 83, "attr": {"strength_base": 21}}, "仙踪·腕·染(元气) 元气提升21点": {"score": 83, "attr": {"spunk_base": 21}}, "仙踪·腕·染(身法) 身法提升21点": {"score": 83, "attr": {"agility_base": 21}}, "佳·剑胆·染(内伤) 内功攻击提升50点": {"score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·染(外伤) 外功攻击提升42点": {"score": 82, "attr": {"physical_attack_power_base": 42}}, "佳·剑胆·染(元气) 元气提升21点": {"score": 82, "attr": {"spunk_base": 21}}, "佳·剑胆·染(力道) 力道提升21点": {"score": 82, "attr": {"strength_base": 21}}, "仙踪·腕·染(无双) 无双等级提升83点": {"score": 74, "attr": {"strain_base": 83}}, "仙踪·腕·染(会心) 全会心提升83点": {"score": 74, "attr": {"all_critical_strike_base": 83}}, "仙踪·腕·染(内破) 内功破防等级提升83点": {"score": 74, "attr": {"magical_overcome_base": 83}}, "仙踪·腕·染(外破) 外功破防等级提升83点": {"score": 74, "attr": {"physical_overcome_base": 83}}, "仙踪·腕·染(根骨) 根骨提升19点": {"score": 74, "attr": {"spirit_base": 19}}, "仙踪·腕·染(力道) 力道提升19点": {"score": 74, "attr": {"strength_base": 19}}, "仙踪·腕·染(元气) 元气提升19点": {"score": 74, "attr": {"spunk_base": 19}}, "仙踪·腕·染(身法) 身法提升19点": {"score": 74, "attr": {"agility_base": 19}}, "珍·重制·染(内会效) 内功会心效果等级提升73点": {"score": 74, "attr": {"magical_critical_power_base": 83}}, "珍·重制·染(外会效) 外功会心效果等级提升83点": {"score": 74, "attr": {"physical_critical_power_base": 83}}, "剑胆·染(内伤) 内功攻击提升44点": {"score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·染(外伤) 外功攻击提升37点": {"score": 70, "attr": {"physical_attack_power_base": 37}}, "剑胆·染(元气) 元气提升18点": {"score": 70, "attr": {"spunk_base": 18}}, "剑胆·染(力道) 力道提升18点": {"score": 70, "attr": {"strength_base": 18}}, "仙踪·腕·染(无双) 无双等��提升76点": {"score": 66, "attr": {"strain_base": 76}}, "仙踪·腕·染(会心) 全会心提升76点": {"score": 66, "attr": {"all_critical_strike_base": 76}}, "仙踪·腕·染(内破) 内功破防等级提升76点": {"score": 66, "attr": {"magical_overcome_base": 76}}, "仙踪·腕·染(外破) 外功破防等级提升76点": {"score": 66, "attr": {"physical_overcome_base": 76}}, "仙踪·腕·染(根骨) 根骨提升17点": {"score": 66, "attr": {"spirit_base": 17}}, "仙踪·腕·染(力道) 力道提升17点": {"score": 66, "attr": {"strength_base": 17}}, "仙踪·腕·染(元气) 元气提升17点": {"score": 66, "attr": {"spunk_base": 17}}, "仙踪·腕·染(身法) 身法提升17点": {"score": 66, "attr": {"agility_base": 17}}, "珍·风骨·染(外会效) 外功会心效果等级提升68点": {"score": 60, "attr": {"physical_critical_power_base": 68}}, "珍·风骨·染(内会效) 内功会心效果等级提升68点": {"score": 60, "attr": {"magical_critical_power_base": 68}}, "佳·剑胆·染(外会效) 外功会心效果等级提升56点": {"score": 49, "attr": {"physical_critical_power_base": 56}}, "佳·剑胆·染(内会效) 内功会心效果等级提升56点": {"score": 49, "attr": {"magical_critical_power_base": 56}}, "剑胆·染(外会效) 外功会心效果等级提升49点": {"score": 44, "attr": {"physical_critical_power_base": 49}}, "剑胆·染(内会效) 内功会心效果等级提升49点": {"score": 44, "attr": {"magical_critical_power_base": 49}}, "苍·安戎·染(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·染(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·染(内伤) 内功攻击提升22": {"score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·染(外伤) 外功攻击提升18": {"score": 35, "attr": {"physical_attack_power_base": 18}}, "安戎·染(元气) 元气提升9": {"score": 35, "attr": {"spunk_base": 9}}, "安戎·染(力道) 力道提升9": {"score": 35, "attr": {"strength_base": 9}}, "黑曜绣(护手) 外功攻击永久提升16点(护手)": {"score": 31, "attr": {"physical_attack_power_base": 16}}, "苍海·染(元气) 元气永久提升7点(护手": {"score": 27, "attr": {"spunk_base": 7}}, "苍海·染(力道) 力道永久提升7点(护手)": {"score": 27, "attr": {"strength_base": 7}}, "白虎绣(护手) 外功攻击永久提升14点(护手)": {"score": 27, "attr": {"physical_attack_power_base": 14}}, "行军·染(外伤) 外功攻击提升15": {"score": 26, "attr": {"physical_attack_power_base": 15}}, "行军·染(内伤) 内功攻击提升16": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "青龙绣(护手) 内功攻击永久提升16点(护手)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花绣(护手) 内功攻击永久提升16点(护手)": {"score": 26, "attr": {"magical_attack_power_base": 16}}, "安戎·染(外会效) 外功会心效果提升24": {"score": 21, "attr": {"physical_critical_power_base": 24}}, "安戎·染(内会效) 内功会心效果提升24": {"score": 21, "attr": {"magical_critical_power_base": 24}}, "铁纹甲片 护手外功攻击强度永久提升9点": {"score": 17, "attr": {"physical_attack_power_base": 9}}, "云锡绣(护手) 破招永久提升18点(护手)": {"score": 15, "attr": {"surplus": 18}}, "靛蓝绣(护手) 根骨永久提升4点(护手)": {"score": 15, "attr": {"spirit_base": 4}}, "蓝叶绣(护手) 力道永久提升4点(护手)": {"score": 15, "attr": {"strength_base": 4}}, "莹白绣(护手) 力道永久提升4点(护手)": {"score": 15, "attr": {"strength_base": 4}}, "净白绣(护手) 根骨永久提升4点(护手)": {"score": 15, "attr": {"spirit_base": 4}}, "铁黑绣(护手) 身法永久提升4点(护手)": {"score": 15, "attr": {"agility_base": 4}}, "煤黑绣图样:护手 身法永久提升4点(护手)": {"score": 15, "attr": {"agility_base": 4}}, "杏黄绣(护手) 元气永久提升4点(护手)": {"score": 15, "attr": {"spunk_base": 4}}, "鹅黄绣(护手) 元气永久提升4点(护手)": {"score": 15, "attr": {"spunk_base": 4}}, "云英绣(护手) 破招永久提升16点(护手)": {"score": 13, "attr": {"surplus": 16}}, "角砾绣(护手) 外功会心值永久提升16点(护手)": {"score": 13, "attr": {"physical_critical_strike_base": 16}}, "流纹绣(护手) 内功会心值永久提升16点(护手)": {"score": 13, "attr": {"magical_critical_strike_base": 16}}, "湛蓝绣染(护手) 力道永久提升3点(护手)": {"score": 11, "attr": {"strength_base": 3}}, "山水绣染(护手) 元气永久提升3点(护手)": {"score": 11, "attr": {"spunk_base": 3}}, "耀龙银甲片 护手外功会心永久提升5": {"score": 4, "attr": {"physical_critical_strike_base": 5}}, "天罡甲片 护手永久增加破招5": {"score": 4, "attr": {"surplus": 14}}, "雅·安戎·染(外会效) 外功会心效果提升27": {"score": 0, "attr": {"physical_critical_power_base": 27}}, "雅·安戎·染(内会效) 内功会心效果提升27": {"score": 0, "attr": {"magical_critical_power_base": 27}}, "雅·安戎·染(内伤) 内功攻击提升25": {"score": 0, "attr": {"magical_attack_power_base": 25}}, "雅·安戎·染(外伤) 外功攻击提升21": {"score": 0, "attr": {"physical_attack_power_base": 21}}, "雅·安戎·染(元气) 元气提升10": {"score": 0, "attr": {"spunk_base": 10}}, "雅·安戎·染(力道) 力道提升10": {"score": 0, "attr": {"strength_base": 10}}}
|
|
|
1 |
+
{"断浪·腕·绣(无双) 无双等级提升974点": {"id": 12110, "score": 1050, "attr": {"strain_base": 974}}, "断浪·腕·绣(会心) 全会心提升974点": {"id": 12109, "score": 1050, "attr": {"all_critical_strike_base": 974}}, "断浪·腕·绣(内破) 内功破防等级提升974点": {"id": 12108, "score": 1050, "attr": {"magical_overcome_base": 974}}, "断浪·腕·绣(外破) 外功破防等级提升974点": {"id": 12107, "score": 1050, "attr": {"physical_overcome_base": 974}}, "断浪·腕·绣(根骨) 根骨提升218点": {"id": 12105, "score": 1050, "attr": {"spirit_base": 218}}, "断浪·腕·绣(力道) 力道提升218点": {"id": 12104, "score": 1050, "attr": {"strength_base": 218}}, "断浪·腕·绣(元气) 元气提升218点": {"id": 12103, "score": 1050, "attr": {"spunk_base": 218}}, "断浪·腕·绣(身法) 身法提升218点": {"id": 12102, "score": 1050, "attr": {"agility_base": 218}}, "断浪·腕·绣(无双) 无双等级提升883点": {"id": 11941, "score": 952, "attr": {"strain_base": 883}}, "断浪·腕·绣(会心) 全会心提升883点": {"id": 11940, "score": 952, "attr": {"all_critical_strike_base": 883}}, "断浪·腕·绣(内破) 内功破防等级提升883点": {"id": 11939, "score": 952, "attr": {"magical_overcome_base": 883}}, "断浪·腕·绣(外破) 外功破防等级提升883点": {"id": 11938, "score": 952, "attr": {"physical_overcome_base": 883}}, "断浪·腕·绣(根骨) 根骨提升198点": {"id": 11936, "score": 952, "attr": {"spirit_base": 198}}, "断浪·腕·绣(力道) 力道提升198点": {"id": 11935, "score": 952, "attr": {"strength_base": 198}}, "断浪·腕·绣(元气) 元气提升198点": {"id": 11934, "score": 952, "attr": {"spunk_base": 198}}, "断浪·腕·绣(身法) 身法提升198点": {"id": 11933, "score": 952, "attr": {"agility_base": 198}}, "断浪·腕·绣(无双) 无双等级提升799点": {"id": 11772, "score": 783, "attr": {"strain_base": 799}}, "断浪·腕·绣(会心) 全会心提升799点": {"id": 11771, "score": 783, "attr": {"all_critical_strike_base": 799}}, "断浪·腕·绣(内破) 内功破防等级提升799点": {"id": 11770, "score": 783, "attr": {"magical_overcome_base": 799}}, "断浪·腕·绣(外破) 外功破防等级提升799点": {"id": 11769, "score": 783, "attr": {"physical_overcome_base": 799}}, "断浪·腕·绣(根骨) 根骨提升179点": {"id": 11767, "score": 783, "attr": {"spirit_base": 179}}, "断浪·腕·绣(力道) 力道提升179点": {"id": 11766, "score": 783, "attr": {"strength_base": 179}}, "断浪·腕·绣(元气) 元气提升179点": {"id": 11765, "score": 783, "attr": {"spunk_base": 179}}, "断浪·腕·绣(身法) 身法提升179点": {"id": 11764, "score": 783, "attr": {"agility_base": 179}}, "断浪·腕·绣(无双) 无双等级提升723点": {"id": 11585, "score": 644, "attr": {"strain_base": 723}}, "断浪·腕·绣(会心) 全会心提升723点": {"id": 11584, "score": 644, "attr": {"all_critical_strike_base": 723}}, "断浪·腕·绣(内破) 内功破防等级提升723点": {"id": 11583, "score": 644, "attr": {"magical_overcome_base": 723}}, "断浪·腕·绣(外破) 外功破防等级提升723点": {"id": 11582, "score": 644, "attr": {"physical_overcome_base": 723}}, "断浪·腕·绣(根骨) 根骨提升162点": {"id": 11580, "score": 644, "attr": {"spirit_base": 162}}, "断浪·腕·绣(力道) 力道提升162点": {"id": 11579, "score": 644, "attr": {"strength_base": 162}}, "断浪·腕·绣(元气) 元气提升162点": {"id": 11578, "score": 644, "attr": {"spunk_base": 162}}, "断浪·腕·绣(身法) 身法提升162点": {"id": 11577, "score": 644, "attr": {"agility_base": 162}}, "断浪·腕·染(无双) 无双等级提升487点": {"id": 12133, "score": 524, "attr": {"strain_base": 487}}, "断浪·腕·染(会心) 全会心提升487点": {"id": 12132, "score": 524, "attr": {"all_critical_strike_base": 487}}, "断浪·腕·染(内破) 内功破防等级提升487点": {"id": 12131, "score": 524, "attr": {"magical_overcome_base": 487}}, "断浪·腕·染(外破) 外功破防等级提升487点": {"id": 12130, "score": 524, "attr": {"physical_overcome_base": 487}}, "断浪·腕·染(根骨) 根骨提升109点": {"id": 12128, "score": 524, "attr": {"spirit_base": 109}}, "断��·腕·染(力道) 力道提升109点": {"id": 12127, "score": 524, "attr": {"strength_base": 109}}, "断浪·腕·染(元气) 元气提升109点": {"id": 12126, "score": 524, "attr": {"spunk_base": 109}}, "断浪·腕·染(身法) 身法提升109点": {"id": 12125, "score": 524, "attr": {"agility_base": 109}}, "断浪·腕·染(无双) 无双等级提升442点": {"id": 11964, "score": 475, "attr": {"strain_base": 442}}, "断浪·腕·染(会心) 全会心提升442点": {"id": 11963, "score": 475, "attr": {"all_critical_strike_base": 442}}, "断浪·腕·染(内破) 内功破防等级提升442点": {"id": 11962, "score": 475, "attr": {"magical_overcome_base": 442}}, "断浪·腕·染(外破) 外功破防等级提升442点": {"id": 11961, "score": 475, "attr": {"physical_overcome_base": 442}}, "断浪·腕·染(根骨) 根骨提升99点": {"id": 11959, "score": 475, "attr": {"spirit_base": 99}}, "断浪·腕·染(力道) 力道提升99点": {"id": 11958, "score": 475, "attr": {"strength_base": 99}}, "断浪·腕·染(元气) 元气提升99点": {"id": 11957, "score": 475, "attr": {"spunk_base": 99}}, "断浪·腕·染(身法) 身法提升99点": {"id": 11956, "score": 475, "attr": {"agility_base": 99}}, "奉天·腕·绣(无双) 无双等级提升491点": {"id": 11465, "score": 437, "attr": {"strain_base": 491}}, "奉天·腕·绣(会心) 全会心提升491点": {"id": 11464, "score": 437, "attr": {"all_critical_strike_base": 491}}, "奉天·腕·绣(内破) 内功破防等级提升491点": {"id": 11463, "score": 437, "attr": {"magical_overcome_base": 491}}, "奉天·腕·绣(外破) 外功破防等级提升491点": {"id": 11462, "score": 437, "attr": {"physical_overcome_base": 491}}, "奉天·腕·绣(根骨) 根骨提升110点": {"id": 11460, "score": 437, "attr": {"spirit_base": 110}}, "奉天·腕·绣(力道) 力道提升110点": {"id": 11459, "score": 437, "attr": {"strength_base": 110}}, "奉天·腕·绣(元气) 元气提升110点": {"id": 11458, "score": 437, "attr": {"spunk_base": 110}}, "奉天·腕·绣(身法) 身法提升110点": {"id": 11457, "score": 437, "attr": {"agility_base": 110}}, "连雾·腕·无双 护腕无双等级提高390": {"id": 12159, "score": 419, "attr": {"strain_base": 390}}, "连雾·腕·内破 护腕内功破防等级提高390": {"id": 12158, "score": 419, "attr": {"magical_overcome_base": 390}}, "连雾·腕·外破 护腕外功破防等级提高390": {"id": 12157, "score": 419, "attr": {"physical_overcome_base": 390}}, "连雾·腕·会心 护腕全会心等级提高390": {"id": 12149, "score": 419, "attr": {"all_critical_strike_base": 390}}, "断浪·腕·染(无双) 无双等级提升400点": {"id": 11795, "score": 391, "attr": {"strain_base": 400}}, "断浪·腕·染(会心) 全会心提升400点": {"id": 11794, "score": 391, "attr": {"all_critical_strike_base": 400}}, "断浪·腕·染(内破) 内功破防等级提升400点": {"id": 11793, "score": 391, "attr": {"magical_overcome_base": 400}}, "断浪·腕·染(外破) 外功破防等级提升400点": {"id": 11792, "score": 391, "attr": {"physical_overcome_base": 400}}, "断浪·腕·染(根骨) 根骨提升90点": {"id": 11790, "score": 391, "attr": {"spirit_base": 90}}, "断浪·腕·染(力道) 力道提升90点": {"id": 11789, "score": 391, "attr": {"strength_base": 90}}, "断浪·腕·染(元气) 元气提升90点": {"id": 11788, "score": 391, "attr": {"spunk_base": 90}}, "断浪·腕·染(身法) 身法提升90点": {"id": 11787, "score": 391, "attr": {"agility_base": 90}}, "奉天·腕·绣(无双) 无双等级提升441点": {"id": 11321, "score": 390, "attr": {"strain_base": 441}}, "奉天·腕·绣(会心) 全会心提升441点": {"id": 11320, "score": 390, "attr": {"all_critical_strike_base": 441}}, "奉天·腕·绣(内破) 内功破防等级提升441点": {"id": 11319, "score": 390, "attr": {"magical_overcome_base": 441}}, "奉天·腕·绣(外破) 外功破防等级提升441点": {"id": 11318, "score": 390, "attr": {"physical_overcome_base": 441}}, "奉天·腕·绣(根骨) 根骨提升99点": {"id": 11316, "score": 390, "attr": {"spirit_base": 99}}, "奉天·腕·绣(力道) 力道提升99点": {"id": 11315, "score": 390, "attr": {"strength_base": 99}}, "奉天·腕·绣(元气) 元气提升99点": {"id": 11314, "score": 390, "attr": {"spunk_base": 99}}, "奉天·腕·绣(身法) 身法提升99点": {"id": 11313, "score": 390, "attr": {"agility_base": 99}}, "连雾·腕·无双 护腕无双等级提高353": {"id": 11990, "score": 380, "attr": {"strain_base": 353}}, "连雾·腕·内破 护腕内功破防等级提高353": {"id": 11989, "score": 380, "attr": {"magical_overcome_base": 353}}, "连雾·腕·外破 护腕外功破防等级提高353": {"id": 11988, "score": 380, "attr": {"physical_overcome_base": 353}}, "连雾·腕·会心 护腕全会心等级提高353": {"id": 11980, "score": 380, "attr": {"all_critical_strike_base": 353}}, "奉天·腕·绣(无双) 无双等级��升397点": {"id": 11233, "score": 352, "attr": {"strain_base": 397}}, "奉天·腕·绣(会心) 全会心提升397点": {"id": 11232, "score": 352, "attr": {"all_critical_strike_base": 397}}, "奉天·腕·绣(内破) 内功破防等级提升397点": {"id": 11231, "score": 352, "attr": {"magical_overcome_base": 397}}, "奉天·腕·绣(外破) 外功破防等级提升397点": {"id": 11230, "score": 352, "attr": {"physical_overcome_base": 397}}, "奉天·腕·绣(根骨) 根骨提升89点": {"id": 11228, "score": 352, "attr": {"spirit_base": 89}}, "奉天·腕·绣(力道) 力道提升89点": {"id": 11227, "score": 352, "attr": {"strength_base": 89}}, "奉天·腕·绣(元气) 元气提升89点": {"id": 11226, "score": 352, "attr": {"spunk_base": 89}}, "奉天·腕·绣(身法) 身法提升89点": {"id": 11225, "score": 352, "attr": {"agility_base": 89}}, "断浪·腕·染(无双) 无双等级提升362点": {"id": 11608, "score": 322, "attr": {"strain_base": 362}}, "断浪·腕·染(会心) 全会心提升362点": {"id": 11607, "score": 322, "attr": {"all_critical_strike_base": 362}}, "断浪·腕·染(内破) 内功破防等级提升362点": {"id": 11606, "score": 322, "attr": {"magical_overcome_base": 362}}, "断浪·腕·染(外破) 外功破防等级提升362点": {"id": 11605, "score": 322, "attr": {"physical_overcome_base": 362}}, "断浪·腕·染(根骨) 根骨提升81点": {"id": 11603, "score": 322, "attr": {"spirit_base": 81}}, "断浪·腕·染(力道) 力道提升81点": {"id": 11602, "score": 322, "attr": {"strength_base": 81}}, "断浪·腕·染(元气) 元气提升81点": {"id": 11601, "score": 322, "attr": {"spunk_base": 81}}, "断浪·腕·染(身法) 身法提升81点": {"id": 11600, "score": 322, "attr": {"agility_base": 81}}, "连雾·腕·无双 护腕无双等级提高320": {"id": 11821, "score": 313, "attr": {"strain_base": 320}}, "连雾·腕·内破 护腕内功破防等级提高320": {"id": 11820, "score": 313, "attr": {"magical_overcome_base": 320}}, "连雾·腕·外破 护腕外功破防等级提高320": {"id": 11819, "score": 313, "attr": {"physical_overcome_base": 320}}, "连雾·腕·会心 护腕全会心等级提高320": {"id": 11811, "score": 313, "attr": {"all_critical_strike_base": 320}}, "奉天·腕·绣(无双) 无双等级提升325点": {"id": 11078, "score": 288, "attr": {"strain_base": 325}}, "奉天·腕·绣(会心) 全会心提升325点": {"id": 11077, "score": 288, "attr": {"all_critical_strike_base": 325}}, "奉天·腕·绣(内破) 内功破防等级提升325点": {"id": 11076, "score": 288, "attr": {"magical_overcome_base": 325}}, "奉天·腕·绣(外破) 外功破防等级提升325点": {"id": 11075, "score": 288, "attr": {"physical_overcome_base": 325}}, "奉天·腕·绣(根骨) 根骨提升73点": {"id": 11073, "score": 286, "attr": {"spirit_base": 73}}, "奉天·腕·绣(力道) 力道提升73点": {"id": 11072, "score": 286, "attr": {"strength_base": 73}}, "奉天·腕·绣(元气) 元气提升73点": {"id": 11071, "score": 286, "attr": {"spunk_base": 73}}, "奉天·腕·绣(身法) 身法提升73点": {"id": 11070, "score": 286, "attr": {"agility_base": 73}}, "连雾·腕·无双 护腕无双等级提高289": {"id": 11635, "score": 258, "attr": {"strain_base": 289}}, "连雾·腕·内破 护腕内功破防等级提高289": {"id": 11634, "score": 258, "attr": {"magical_overcome_base": 289}}, "连雾·腕·外破 护腕外功破防等级提高289": {"id": 11633, "score": 258, "attr": {"physical_overcome_base": 289}}, "连雾·腕·会心 护腕全会心等级提高289": {"id": 11625, "score": 258, "attr": {"all_critical_strike_base": 289}}, "奉天·腕·染(无双) 无双等级提升289点": {"id": 11101, "score": 255, "attr": {"strain_base": 289}}, "奉天·腕·染(会心) 全会心提升289点": {"id": 11100, "score": 255, "attr": {"all_critical_strike_base": 289}}, "奉天·腕·染(内破) 内功破防等级提升289点": {"id": 11099, "score": 255, "attr": {"magical_overcome_base": 289}}, "奉天·腕·染(外破) 外功破防等级提升289点": {"id": 11098, "score": 255, "attr": {"physical_overcome_base": 289}}, "奉天·腕·染(根骨) 根骨提升65点": {"id": 11096, "score": 255, "attr": {"spirit_base": 65}}, "奉天·腕·染(力道) 力道提升65点": {"id": 11095, "score": 255, "attr": {"strength_base": 65}}, "奉天·腕·染(元气) 元气提升65点": {"id": 11094, "score": 255, "attr": {"spunk_base": 65}}, "奉天·腕·染(身法) 身法提升65点": {"id": 11093, "score": 255, "attr": {"agility_base": 65}}, "仙踪·腕·绣(无双) 无双等级提升209点": {"id": 10842, "score": 185, "attr": {"strain_base": 209}}, "仙踪·腕·绣(会心) 全会心提升209点": {"id": 10841, "score": 185, "attr": {"all_critical_strike_base": 209}}, "仙踪·腕·绣(内破) 内功破防等级提升209点": {"id": 10840, "score": 185, "attr": {"magical_overcome_base": 209}}, "仙踪·腕·绣(外破) 外功破防等级提升209点": {"id": 10839, "score": 185, "attr": {"physical_overcome_base": 209}}, "仙踪·腕·绣(根骨) 根骨提升47点": {"id": 10837, "score": 185, "attr": {"spirit_base": 47}}, "仙踪·腕·绣(力道) 力道提升47点": {"id": 10836, "score": 185, "attr": {"strength_base": 47}}, "仙踪·腕·绣(元气) 元气提升47点": {"id": 10835, "score": 185, "attr": {"spunk_base": 47}}, "仙踪·腕·绣(身法) 身法提升47点": {"id": 10834, "score": 185, "attr": {"agility_base": 47}}, "仙踪·腕·绣(无双) 无双等级提升188点": {"id": 10670, "score": 165, "attr": {"strain_base": 188}}, "仙踪·腕·绣(会心) 全会心提升188点": {"id": 10669, "score": 165, "attr": {"all_critical_strike_base": 188}}, "仙踪·腕·绣(内破) 内功破防等级提升188点": {"id": 10668, "score": 165, "attr": {"magical_overcome_base": 188}}, "仙踪·腕·绣(外破) 外功破防等级提升188点": {"id": 10667, "score": 165, "attr": {"physical_overcome_base": 188}}, "仙踪·腕·绣(根骨) 根骨提升42点": {"id": 10665, "score": 165, "attr": {"spirit_base": 42}}, "仙踪·腕·绣(力道) 力道提升42点": {"id": 10664, "score": 165, "attr": {"strength_base": 42}}, "仙踪·腕·绣(元气) 元气提升42点": {"id": 10663, "score": 165, "attr": {"spunk_base": 42}}, "仙踪·腕·绣(身法) 身法提升42点": {"id": 10662, "score": 165, "attr": {"agility_base": 42}}, "仙踪·腕·绣(无双) 无双等级提升166点": {"id": 10530, "score": 146, "attr": {"strain_base": 166}}, "仙踪·腕·绣(会心) 全会心提升166点": {"id": 10529, "score": 146, "attr": {"all_critical_strike_base": 166}}, "仙踪·腕·绣(内破) 内功破防等级提升166点": {"id": 10528, "score": 146, "attr": {"magical_overcome_base": 166}}, "仙踪·腕·绣(外破) 外功破防等级提升166点": {"id": 10527, "score": 146, "attr": {"physical_overcome_base": 166}}, "仙踪·腕·绣(根骨) 根骨提升37点": {"id": 10525, "score": 146, "attr": {"spirit_base": 37}}, "仙踪·腕·绣(力道) 力道提升37点": {"id": 10524, "score": 146, "attr": {"strength_base": 37}}, "仙踪·腕·绣(元气) 元气提升37点": {"id": 10523, "score": 146, "attr": {"spunk_base": 37}}, "仙踪·腕·绣(身法) 身法提升37点": {"id": 10522, "score": 146, "attr": {"agility_base": 37}}, "仙踪·腕·绣(无双) 无双等级提升152点": {"id": 10402, "score": 133, "attr": {"strain_base": 152}}, "仙踪·腕·绣(会心) 全会心提升152点": {"id": 10401, "score": 133, "attr": {"all_critical_strike_base": 152}}, "仙踪·腕·绣(内破) 内功破防等级提升152点": {"id": 10400, "score": 133, "attr": {"magical_overcome_base": 152}}, "仙踪·腕·绣(外破) 外功破防等级提升152点": {"id": 10399, "score": 133, "attr": {"physical_overcome_base": 152}}, "仙踪·腕·绣(根骨) 根骨提升34点": {"id": 10397, "score": 133, "attr": {"spirit_base": 34}}, "仙踪·腕·绣(力道) 力道提升34点": {"id": 10396, "score": 133, "attr": {"strength_base": 34}}, "仙踪·腕·绣(元气) 元气提升34点": {"id": 10395, "score": 133, "attr": {"spunk_base": 34}}, "仙踪·腕·绣(身法) 身法提升34点": {"id": 10394, "score": 133, "attr": {"agility_base": 34}}, "珍·重制·染(元气) 元气提升31点": {"id": 6310, "score": 121, "attr": {"spunk_base": 31}}, "珍·重制·染(力道) 力道提升31点": {"id": 6309, "score": 121, "attr": {"strength_base": 31}}, "珍·重制·染(内伤) 内功攻击提升75点": {"id": 6305, "score": 121, "attr": {"magical_attack_power_base": 75}}, "珍·重制·染(外伤) 外功攻击提升62点": {"id": 6304, "score": 121, "attr": {"physical_attack_power_base": 62}}, "珍·风骨·染(内伤) 内功攻击提升61点": {"id": 6270, "score": 100, "attr": {"magical_attack_power_base": 61}}, "珍·风骨·染(外伤) 外功攻击提升51点": {"id": 6269, "score": 100, "attr": {"physical_attack_power_base": 51}}, "珍·风骨·染(元气) 元气提升25点": {"id": 6252, "score": 98, "attr": {"spunk_base": 25}}, "珍·风骨·染(力道) 力道提升25点": {"id": 6251, "score": 98, "attr": {"strength_base": 25}}, "仙踪·腕·染(无双) 无双等级提升105点": {"id": 10865, "score": 94, "attr": {"strain_base": 105}}, "仙踪·腕·染(会心) 全会心提升105点": {"id": 10864, "score": 94, "attr": {"all_critical_strike_base": 105}}, "仙踪·腕·染(内破) 内功破防等级提升105点": {"id": 10863, "score": 94, "attr": {"magical_overcome_base": 105}}, "仙踪·腕·染(外破) 外功破防等级提升105点": {"id": 10862, "score": 94, "attr": {"physical_overcome_base": 105}}, "仙踪·腕·染(根骨) 根骨提升24点": {"id": 10860, "score": 94, "attr": {"spirit_base": 24}}, "仙踪·腕·染(力道) 力道提升24点": {"id": 10859, "score": 94, "attr": {"strength_base": 24}}, "仙踪·腕·染(元气) 元气提升24点": {"id": 10858, "score": 94, "attr": {"spunk_base": 24}}, "仙踪·腕·���(身法) 身法提升24点": {"id": 10857, "score": 94, "attr": {"agility_base": 24}}, "仙踪·腕·染(无双) 无双等级提升94点": {"id": 10693, "score": 83, "attr": {"strain_base": 94}}, "仙踪·腕·染(会心) 全会心提升94点": {"id": 10692, "score": 83, "attr": {"all_critical_strike_base": 94}}, "仙踪·腕·染(内破) 内功破防等级提升94点": {"id": 10691, "score": 83, "attr": {"magical_overcome_base": 94}}, "仙踪·腕·染(外破) 外功破防等级提升94点": {"id": 10690, "score": 83, "attr": {"physical_overcome_base": 94}}, "仙踪·腕·染(根骨) 根骨提升21点": {"id": 10688, "score": 83, "attr": {"spirit_base": 21}}, "仙踪·腕·染(力道) 力道提升21点": {"id": 10687, "score": 83, "attr": {"strength_base": 21}}, "仙踪·腕·染(元气) 元气提升21点": {"id": 10686, "score": 83, "attr": {"spunk_base": 21}}, "仙踪·腕·染(身法) 身法提升21点": {"id": 10685, "score": 83, "attr": {"agility_base": 21}}, "佳·剑胆·染(内伤) 内功攻击提升50点": {"id": 6134, "score": 82, "attr": {"magical_attack_power_base": 50}}, "佳·剑胆·染(外伤) 外功攻击提升42点": {"id": 6133, "score": 82, "attr": {"physical_attack_power_base": 42}}, "佳·剑胆·染(元气) 元气提升21点": {"id": 6132, "score": 82, "attr": {"spunk_base": 21}}, "佳·剑胆·染(力道) 力道提升21点": {"id": 6131, "score": 82, "attr": {"strength_base": 21}}, "仙踪·腕·染(无双) 无双等级提升83点": {"id": 10553, "score": 74, "attr": {"strain_base": 83}}, "仙踪·腕·染(会心) 全会心提升83点": {"id": 10552, "score": 74, "attr": {"all_critical_strike_base": 83}}, "仙踪·腕·染(内破) 内功破防等级提升83点": {"id": 10551, "score": 74, "attr": {"magical_overcome_base": 83}}, "仙踪·腕·染(外破) 外功破防等级提升83点": {"id": 10550, "score": 74, "attr": {"physical_overcome_base": 83}}, "仙踪·腕·染(根骨) 根骨提升19点": {"id": 10548, "score": 74, "attr": {"spirit_base": 19}}, "仙踪·腕·染(力道) 力道提升19点": {"id": 10547, "score": 74, "attr": {"strength_base": 19}}, "仙踪·腕·染(元气) 元气提升19点": {"id": 10546, "score": 74, "attr": {"spunk_base": 19}}, "仙踪·腕·染(身法) 身法提升19点": {"id": 10545, "score": 74, "attr": {"agility_base": 19}}, "珍·重制·染(内会效) 内功会心效果等级提升73点": {"id": 6312, "score": 74, "attr": {"magical_critical_power_base": 83}}, "珍·重制·染(外会效) 外功会心效果等级提升83点": {"id": 6311, "score": 74, "attr": {"physical_critical_power_base": 83}}, "剑胆·染(内伤) 内功攻击提升44点": {"id": 6096, "score": 70, "attr": {"magical_attack_power_base": 44}}, "剑胆·染(外伤) 外功攻击提升37点": {"id": 6095, "score": 70, "attr": {"physical_attack_power_base": 37}}, "剑胆·染(元气) 元气提升18点": {"id": 6094, "score": 70, "attr": {"spunk_base": 18}}, "剑胆·染(力道) 力道提升18点": {"id": 6093, "score": 70, "attr": {"strength_base": 18}}, "仙踪·腕·染(无双) 无双等级提升76点": {"id": 10425, "score": 66, "attr": {"strain_base": 76}}, "仙踪·腕·染(会心) 全会心提升76点": {"id": 10424, "score": 66, "attr": {"all_critical_strike_base": 76}}, "仙踪·腕·染(内破) 内功破防等级提升76点": {"id": 10423, "score": 66, "attr": {"magical_overcome_base": 76}}, "仙踪·腕·染(外破) 外功破防等级提升76点": {"id": 10422, "score": 66, "attr": {"physical_overcome_base": 76}}, "仙踪·腕·染(根骨) 根骨提升17点": {"id": 10420, "score": 66, "attr": {"spirit_base": 17}}, "仙踪·腕·染(力道) 力道提升17点": {"id": 10419, "score": 66, "attr": {"strength_base": 17}}, "仙踪·腕·染(元气) 元气提升17点": {"id": 10418, "score": 66, "attr": {"spunk_base": 17}}, "仙踪·腕·染(身法) 身法提升17点": {"id": 10417, "score": 66, "attr": {"agility_base": 17}}, "珍·风骨·染(外会效) 外功会心效果等级提升68点": {"id": 6255, "score": 60, "attr": {"physical_critical_power_base": 68}}, "珍·风骨·染(内会效) 内功会心效果等级提升68点": {"id": 6254, "score": 60, "attr": {"magical_critical_power_base": 68}}, "佳·剑胆·染(外会效) 外功会心效果等级提升56点": {"id": 6137, "score": 49, "attr": {"physical_critical_power_base": 56}}, "佳·剑胆·染(内会效) 内功会心效果等级提升56点": {"id": 6136, "score": 49, "attr": {"magical_critical_power_base": 56}}, "剑胆·染(外会效) 外功会心效果等级提升49点": {"id": 6099, "score": 44, "attr": {"physical_critical_power_base": 49}}, "剑胆·染(内会效) 内功会心效果等级提升49点": {"id": 6098, "score": 44, "attr": {"magical_critical_power_base": 49}}, "苍·安戎·染(外伤) 外功攻击提升18": {"id": 6041, "score": 35, "attr": {"physical_attack_power_base": 18}}, "苍·安戎·染(内伤) 内功攻击提升22": {"id": 6037, "score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·染(内伤) 内功攻击提升22": {"id": 5887, "score": 35, "attr": {"magical_attack_power_base": 22}}, "安戎·染(外伤) 外功攻击提升18": {"id": 5886, "score": 35, "attr": {"physical_attack_power_base": 18}}, "安戎·染(元气) 元气提升9": {"id": 5885, "score": 35, "attr": {"spunk_base": 9}}, "安戎·染(力道) 力道提升9": {"id": 5884, "score": 35, "attr": {"strength_base": 9}}, "黑曜绣(护手) 外功攻击永久提升16点(护手)": {"id": 347, "score": 31, "attr": {"physical_attack_power_base": 16}}, "苍海·染(元气) 元气永久提升7点(护手": {"id": 5149, "score": 27, "attr": {"spunk_base": 7}}, "苍海·染(力道) 力道永久提升7点(护手)": {"id": 5147, "score": 27, "attr": {"strength_base": 7}}, "白虎绣(护手) 外功攻击永久提升14点(护手)": {"id": 365, "score": 27, "attr": {"physical_attack_power_base": 14}}, "行军·染(外伤) 外功攻击提升15": {"id": 5862, "score": 26, "attr": {"physical_attack_power_base": 15}}, "行军·染(内伤) 内功攻击提升16": {"id": 5861, "score": 26, "attr": {"magical_attack_power_base": 16}}, "青龙绣(护手) 内功攻击永久提升16点(护手)": {"id": 363, "score": 26, "attr": {"magical_attack_power_base": 16}}, "雨花绣(护手) 内功攻击永久提升16点(护手)": {"id": 349, "score": 26, "attr": {"magical_attack_power_base": 16}}, "安戎·染(外会效) 外功会心效果提升24": {"id": 5890, "score": 21, "attr": {"physical_critical_power_base": 24}}, "安戎·染(内会效) 内功会心效果提升24": {"id": 5889, "score": 21, "attr": {"magical_critical_power_base": 24}}, "铁纹甲片 护手外功攻击强度永久提升9点": {"id": 43, "score": 17, "attr": {"physical_attack_power_base": 9}}, "云锡绣(护手) 破招永久提升18点(护手)": {"id": 353, "score": 15, "attr": {"surplus": 18}}, "靛蓝绣(护手) 根骨永久提升4点(护手)": {"id": 27, "score": 15, "attr": {"spirit_base": 4}}, "蓝叶绣(护手) 力道永久提升4点(护手)": {"id": 25, "score": 15, "attr": {"strength_base": 4}}, "莹白绣(护手) 力道永久提升4点(护手)": {"id": 22, "score": 15, "attr": {"strength_base": 4}}, "净白绣(护手) 根骨永久提升4点(护手)": {"id": 18, "score": 15, "attr": {"spirit_base": 4}}, "铁黑绣(护手) 身法永久提升4点(护手)": {"id": 16, "score": 15, "attr": {"agility_base": 4}}, "煤黑绣图样:护手 身法永久提升4点(护手)": {"id": 13, "score": 15, "attr": {"agility_base": 4}}, "杏黄绣(护手) 元气永久提升4点(护手)": {"id": 5, "score": 15, "attr": {"spunk_base": 4}}, "鹅黄绣(护手) 元气永久提升4点(护手)": {"id": 1, "score": 15, "attr": {"spunk_base": 4}}, "云英绣(护手) 破招永久提升16点(护手)": {"id": 335, "score": 13, "attr": {"surplus": 16}}, "角砾绣(护手) 外功会心值永久提升16点(护手)": {"id": 331, "score": 13, "attr": {"physical_critical_strike_base": 16}}, "流纹绣(护手) 内功会心值永久提升16点(护手)": {"id": 329, "score": 13, "attr": {"magical_critical_strike_base": 16}}, "湛蓝绣染(护手) 力道永久提升3点(护手)": {"id": 163, "score": 11, "attr": {"strength_base": 3}}, "山水绣染(护手) 元气永久提升3点(护手)": {"id": 162, "score": 11, "attr": {"spunk_base": 3}}, "耀龙银甲片 护手外功会心永久提升5": {"id": 52, "score": 4, "attr": {"physical_critical_strike_base": 5}}, "天罡甲片 护手永久增加破招5": {"id": 50, "score": 4, "attr": {"surplus": 14}}, "雅·安戎·染(外会效) 外功会心效果提升27": {"id": 5928, "score": 0, "attr": {"physical_critical_power_base": 27}}, "雅·安戎·染(内会效) 内功会心效果提升27": {"id": 5927, "score": 0, "attr": {"magical_critical_power_base": 27}}, "雅·安戎·染(内伤) 内功攻击提升25": {"id": 5925, "score": 0, "attr": {"magical_attack_power_base": 25}}, "雅·安戎·染(外伤) 外功攻击提升21": {"id": 5924, "score": 0, "attr": {"physical_attack_power_base": 21}}, "雅·安戎·染(元气) 元气提升10": {"id": 5923, "score": 0, "attr": {"spunk_base": 10}}, "雅·安戎·染(力道) 力道提升10": {"id": 5922, "score": 0, "attr": {"strength_base": 10}}}
|
qt/assets/equipments/belt
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽腰带 (会心 破招) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺腰带_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "看面束腰 (破招 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2236, "surplus": 4782, "strain_base": 4782}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "苏汉束腰 (破防 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "physical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "岂邪腰带 (无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7546}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "神际腰带 (会心 破招 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus": 2338, "physical_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "无吼腰带 (破防 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "若环腰带 (会心) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落带 (加速 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪腰带 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜腰带_测试用 (会心 无双) 15400": {"school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "风烈腰带 (会心 破招) 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": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "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_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪腰带 (加速 破招) 13750": {"school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜腰带 (会心 无双) 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": [], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "静山腰带 (破防 破招) 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": [], "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_critical_strike_base": 3090, "surplus": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠腰带 (破防 破招) 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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临岳腰带 (破防 无双) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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": [], "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, "haste_base": 3017, "surplus": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": "191815", "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": [], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江腰带 (加速 破招) 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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌腰带 (破防 无双) 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": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦腰带 (破防 破招) 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_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬带 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰带 (破防 无双) 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": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关带 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"水泽腰带 (会心 破招) 15800": {"id": 98486, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_critical_strike_base": 3875, "surplus": 3444}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺腰带_测试用 (会心 破招) 15600": {"id": 98588, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "看面束腰 (破招 无双) 15600": {"id": 98469, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2236, "surplus": 4782, "strain_base": 4782}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "苏汉束腰 (破防 无双) 15600": {"id": 98468, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "physical_overcome_base": 4039, "strain_base": 4464}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岂邪腰带 (无双) 15600": {"id": 98449, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7546}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "神际腰带 (会心 破招 无双) 15600": {"id": 98447, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus": 2338, "physical_critical_strike_base": 4039, "strain_base": 2338}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "无吼腰带 (破防 破招) 15600": {"id": 98446, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "surplus": 4251, "physical_overcome_base": 4464}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "若环腰带 (会心) 15600": {"id": 98445, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落带 (加速 破招) 15600": {"id": 98414, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪腰带 (破防 无双) 15600": {"id": 98378, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜腰带_测试用 (会心 无双) 15400": {"id": 98272, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "strain_base": 3357}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "风烈腰带 (会心 破招) 14150": {"id": 96372, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_critical_strike_base": 3470, "surplus": 3085}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光腰带 (破防 破招) 13950": {"id": 98684, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus": 3041}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨带 (会心 无双) 13950": {"id": 98192, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺腰带 (会心 破招) 13950": {"id": 96482, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "余弦束腰 (破招 无双) 13950": {"id": 96355, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2000, "surplus": 4277, "strain_base": 4277}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮舞束腰 (破防 无双) 13950": {"id": 96354, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "physical_overcome_base": 3611, "strain_base": 3991}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "叙尧腰带 (无双) 13950": {"id": 96335, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6748}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "疏绫腰带 (会心 破招 无双) 13950": {"id": 96333, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus": 2091, "physical_critical_strike_base": 3611, "strain_base": 2091}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆檀腰带 (破防 破招) 13950": {"id": 96332, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "surplus": 3801, "physical_overcome_base": 3991}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "岳圭腰带 (会心) 13950": {"id": 96331, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦带 (加速 破招) 13950": {"id": 96300, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行腰带 (破防 无双) 13950": {"id": 96264, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪腰带 (加速 破招) 13750": {"id": 98168, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "haste_base": 3372, "surplus": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜腰带 (会心 无双) 13750": {"id": 96158, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "静山腰带 (破防 破招) 12600": {"id": 97772, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus": 2747}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪舞腰带 (会心 破招) 12600": {"id": 94469, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_critical_strike_base": 3090, "surplus": 2747}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠腰带 (破防 破招) 12450": {"id": 96578, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus": 2714}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静腰带 (会心 破招) 12450": {"id": 94571, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus": 2714}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "泽及腰带 (破防 无双) 12450": {"id": 94444, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "沧鳞腰带 (会心 无双) 12450": {"id": 94442, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "聚远腰带 (破防 破招) 12450": {"id": 94441, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "束缊腰带 (无双) 12450": {"id": 94440, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "strain_base": 5683}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃带 (加速 破招) 12450": {"id": 94409, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿腰带 (破防 无双) 12450": {"id": 94373, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "临岳腰带 (破防 无双) 12400": {"id": 90515, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_overcome_base": 3041, "strain_base": 2703}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒御厨腰带·刀功 (会心 破招) 12300": {"id": 98120, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "寻踪觅宝·惊风腰带 (加速 破招) 12300": {"id": 96084, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·冲霄腰带 (会心 无双) 12300": {"id": 94271, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江腰带 (加速 破招) 12300": {"id": 90647, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌腰带 (破防 无双) 12300": {"id": 90611, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦腰带 (破防 破招) 12300": {"id": 90575, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双腰带 (会心 无双) 12300": {"id": 90539, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬带 (加速 无双) 12300": {"id": 90407, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰带 (破防 无双) 12300": {"id": 90371, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关带 (破招 无双) 12300": {"id": 90335, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22169, "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/bottoms
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽裤 (会心 无双) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺裤_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟下裳 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微尔裤 (会心 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3262, "physical_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水回裤 (无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4622, "strain_base": 10172}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "见美裤 (破防 会心 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "physical_overcome_base": 4251, "physical_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罗一裤 (破防 破招 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus": 4251, "physical_overcome_base": 5162, "strain_base": 3036}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "木幽裤 (会心 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "中空裤 (破防) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4622, "physical_overcome_base": 10779}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落裤 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪裤 (加速 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "physical_overcome_base": 4142, "physical_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破招 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "surplus": 6065, "strain_base": 6065}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4503, "physical_overcome_base": 10503}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4001, "surplus": 3352, "physical_overcome_base": 3631, "physical_critical_strike_base": 3631}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3626, "physical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4251, "physical_critical_strike_base": 9916}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈裤 (会心 无双) 14150": {"school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光裤 (破防 破招) 13950": {"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": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺裤 (会心 破招) 13950": {"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": {"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": 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": 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": {"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": 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": {"strength_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 破招 无双) 13550": {"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": {}}, "外功无封裤 (破防 会心 无双) 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": {}}, "雪舞裤 (会心 无双) 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": {}}, "西风北啸·砾漠裤 (破防 破招) 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": {"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": {"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": 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": {"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": 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": {"strength_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江裤 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌裤 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦裤 (加速 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus": 3831}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双裤 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬裳 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰裤 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关裤 (加速 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus": 3831}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 12100": {"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": {}}}
|
|
|
1 |
+
{"水泽裤 (会心 无双) 15800": {"id": 98498, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_critical_strike_base": 5536, "strain_base": 4921}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺裤_测试用 (会心 破招) 15600": {"id": 98600, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟下裳 (破防 无双) 15600": {"id": 98522, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "strain_base": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微尔裤 (会心 无双) 15600": {"id": 98477, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3262, "physical_critical_strike_base": 3947, "strain_base": 9717}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "水回裤 (无双) 15600": {"id": 98476, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4622, "strain_base": 10172}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "见美裤 (破防 会心 无双) 15600": {"id": 98465, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "physical_overcome_base": 4251, "physical_critical_strike_base": 4858, "strain_base": 3340}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "罗一裤 (破防 破招 无双) 15600": {"id": 98463, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus": 4251, "physical_overcome_base": 5162, "strain_base": 3036}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "木幽裤 (会心 破招) 15600": {"id": 98462, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3942, "surplus": 6377, "physical_critical_strike_base": 6073}, "embed": {"physical_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "中空裤 (破防) 15600": {"id": 98461, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4622, "physical_overcome_base": 10779}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落裤 (破防 破招) 15600": {"id": 98426, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus": 4858}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪裤 (加速 无双) 15600": {"id": 98390, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "haste_base": 5466, "strain_base": 4858}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 15200": {"id": 98573, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "physical_overcome_base": 4142, "physical_critical_strike_base": 4734, "strain_base": 3254}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破招 无双) 15200": {"id": 98572, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3841, "surplus": 6065, "strain_base": 6065}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防) 15200": {"id": 98571, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4503, "physical_overcome_base": 10503}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 14350": {"id": 98549, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4001, "surplus": 3352, "physical_overcome_base": 3631, "physical_critical_strike_base": 3631}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 无双) 14350": {"id": 98548, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3626, "physical_overcome_base": 5586, "strain_base": 5866}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心) 14350": {"id": 98547, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4251, "physical_critical_strike_base": 9916}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈裤 (会心 无双) 14150": {"id": 96384, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光裤 (破防 破招) 13950": {"id": 98696, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨裤 (会心 无双) 13950": {"id": 98204, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺裤 (会心 破招) 13950": {"id": 96494, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟下裳 (破防 无双) 13950": {"id": 96408, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "燕轻裤 (会心 无双) 13950": {"id": 96363, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2917, "physical_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拂声裤 (无双) 13950": {"id": 96362, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4133, "strain_base": 9096}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风袂裤 (破防 会心 无双) 13950": {"id": 96351, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "physical_overcome_base": 3801, "physical_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "含晨裤 (破防 破招 无双) 13950": {"id": 96349, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus": 3801, "physical_overcome_base": 4616, "strain_base": 2715}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "向行裤 (会心 破招) 13950": {"id": 96348, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "满歌裤 (破防) 13950": {"id": 96347, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4133, "physical_overcome_base": 9639}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦裤 (破防 破招) 13950": {"id": 96312, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行裤 (加速 无双) 13950": {"id": 96276, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 破招 无双) 13550": {"id": 96467, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "surplus": 3692, "physical_overcome_base": 4484, "strain_base": 2637}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心 无双) 13550": {"id": 96466, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "physical_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (无双) 13550": {"id": 96465, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4014, "strain_base": 9363}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 无双) 12800": {"id": 96439, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "physical_overcome_base": 3488, "physical_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破招 无双) 12800": {"id": 96438, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "surplus": 5107, "strain_base": 5107}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防) 12800": {"id": 96437, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3792, "physical_overcome_base": 8845}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪舞裤 (会心 无双) 12600": {"id": 94481, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠裤 (破防 破招) 12450": {"id": 96590, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静裤 (会心 破招) 12450": {"id": 94583, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花下裳 (破防 无双) 12450": {"id": 94505, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "不暇裤 (破防 无双) 12450": {"id": 94460, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "physical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泛景裤 (破招) 12450": {"id": 94458, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3688, "surplus": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "锦堂裤 (破防 破招) 12450": {"id": 94457, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "surplus": 5089, "physical_overcome_base": 4604}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "思柔裤 (会心 无双) 12450": {"id": 94456, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2604, "physical_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃裤 (破防 破招) 12450": {"id": 94421, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿裤 (加速 无双) 12450": {"id": 94385, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江裤 (破防 破招) 12300": {"id": 90659, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌裤 (会心 破招) 12300": {"id": 90623, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦裤 (加速 破招) 12300": {"id": 90587, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus": 3831}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双裤 (破防 无双) 12300": {"id": 90551, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬裳 (会心 无双) 12300": {"id": 90419, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰裤 (破防 破招) 12300": {"id": 90383, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关裤 (加速 破招) 12300": {"id": 90347, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus": 3831}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 会心 破招) 12100": {"id": 94556, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3374, "surplus": 2826, "physical_overcome_base": 3062, "physical_critical_strike_base": 3062}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (破防 无双) 12100": {"id": 94555, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3058, "physical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封裤 (会心) 12100": {"id": 94554, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3585, "physical_critical_strike_base": 8361}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/hat
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽冠 (会心 破招) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺冠_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟冠 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落冠 (加速 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus": 4373}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪冠 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜冠_测试用 (破防 破招) 15400": {"school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封头饰 (破防 会心 破招) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus": 3195, "physical_overcome_base": 3462, "physical_critical_strike_base": 3462}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3457, "physical_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4053, "strain_base": 9453}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "surplus": 2765, "physical_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 会效) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "physical_critical_strike_base": 6285, "physical_critical_power_base": 3771}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3826, "physical_overcome_base": 8924}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈冠 (会心 破招) 14150": {"school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光冠 (会心 无双) 13950": {"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": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺冠 (会心 破招) 13950": {"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": {"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": {"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": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪帽 (会心 无双) 13750": {"school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜冠 (破防 破招) 13750": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "外功无封头饰 (破防 会心 无双) 13550": {"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": {}}, "外功无封头饰 (破防 会心 破招) 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": {}}, "雪舞冠 (会心 破招) 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": {}}, "西风北啸·砾漠冠 (会心 无双) 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": {"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": {"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": {"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": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临雾帽 (破防 无双) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·惊风帽 (会心 无双) 12300": {"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": {"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": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌冠 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦冠 (加速 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus": 3448}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双冠 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬冠 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰帽 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关帽 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 12100": {"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": {}}}
|
|
|
1 |
+
{"水泽冠 (会心 破招) 15800": {"id": 98504, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 993, "physical_attack_power_base": 1611, "physical_critical_strike_base": 4982, "surplus": 4429}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺冠_测试用 (会心 破招) 15600": {"id": 98606, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟冠 (会心 破招) 15600": {"id": 98528, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "surplus": 4373}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落冠 (加速 破招) 15600": {"id": 98432, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "haste_base": 4919, "surplus": 4373}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪冠 (会心 无双) 15600": {"id": 98396, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 980, "physical_attack_power_base": 1590, "physical_critical_strike_base": 4919, "strain_base": 4373}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜冠_测试用 (破防 破招) 15400": {"id": 98332, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 968, "physical_attack_power_base": 1570, "physical_overcome_base": 4856, "surplus": 4316}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封头饰 (破防 会心 破招) 15200": {"id": 98561, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3814, "surplus": 3195, "physical_overcome_base": 3462, "physical_critical_strike_base": 3462}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 无双) 15200": {"id": 98560, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3457, "physical_critical_strike_base": 5326, "strain_base": 5592}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (无双) 15200": {"id": 98559, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4053, "strain_base": 9453}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 14350": {"id": 98537, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "surplus": 2765, "physical_critical_strike_base": 4776, "strain_base": 2765}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 会效) 14350": {"id": 98536, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3264, "physical_critical_strike_base": 6285, "physical_critical_power_base": 3771}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防) 14350": {"id": 98535, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3826, "physical_overcome_base": 8924}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈冠 (会心 破招) 14150": {"id": 96390, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 889, "physical_attack_power_base": 1443, "physical_critical_strike_base": 4462, "surplus": 3966}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光冠 (会心 无双) 13950": {"id": 98702, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨帽 (破防 破招) 13950": {"id": 98210, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_overcome_base": 4399, "surplus": 3910}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺冠 (会心 破招) 13950": {"id": 96500, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟冠 (会心 破招) 13950": {"id": 96414, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "surplus": 3910}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦冠 (加速 破招) 13950": {"id": 96318, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "haste_base": 4399, "surplus": 3910}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行冠 (会心 无双) 13950": {"id": 96282, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 877, "physical_attack_power_base": 1422, "physical_critical_strike_base": 4399, "strain_base": 3910}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪帽 (会心 无双) 13750": {"id": 98180, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_critical_strike_base": 4336, "strain_base": 3854}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜冠 (破防 破招) 13750": {"id": 96218, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 864, "physical_attack_power_base": 1402, "physical_overcome_base": 4336, "surplus": 3854}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "外功无封头饰 (破防 会心 无双) 13550": {"id": 96455, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "physical_overcome_base": 3323, "physical_critical_strike_base": 3798, "strain_base": 2611}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招) 13550": {"id": 96454, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3082, "surplus": 4985, "physical_critical_strike_base": 4747}, "embed": {"physical_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心) 13550": {"id": 96453, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3613, "physical_critical_strike_base": 8427}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [15436, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防 会心 破招) 12800": {"id": 96423, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3212, "surplus": 2691, "physical_overcome_base": 2915, "physical_critical_strike_base": 2915}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 无双) 12800": {"id": 96422, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2911, "physical_critical_strike_base": 4485, "strain_base": 4709}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (无双) 12800": {"id": 96421, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3413, "strain_base": 7960}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪舞冠 (会心 破招) 12600": {"id": 94487, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 792, "physical_attack_power_base": 1285, "physical_critical_strike_base": 3973, "surplus": 3532}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠冠 (会心 无双) 12450": {"id": 96596, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静冠 (会心 破招) 12450": {"id": 94589, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花冠 (会心 破招) 12450": {"id": 94511, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "surplus": 3490}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃冠 (加速 破招) 12450": {"id": 94427, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "haste_base": 3926, "surplus": 3490}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿冠 (会心 无双) 12450": {"id": 94391, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 782, "physical_attack_power_base": 1269, "physical_critical_strike_base": 3926, "strain_base": 3490}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "临雾帽 (破防 无双) 12400": {"id": 90527, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1264, "physical_overcome_base": 3910, "strain_base": 3476}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·惊风帽 (会心 无双) 12300": {"id": 96096, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·冲霄冠 (破防 破招) 12300": {"id": 94329, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江冠 (破防 无双) 12300": {"id": 90665, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "strain_base": 3448}, "embed": {"strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌冠 (会心 破招) 12300": {"id": 90629, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦冠 (加速 破招) 12300": {"id": 90593, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "surplus": 3448}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双冠 (��心 无双) 12300": {"id": 90557, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "strain_base": 3448}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬冠 (破防 破招) 12300": {"id": 90425, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_overcome_base": 3879, "surplus": 3448}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰帽 (加速 无双) 12300": {"id": 90389, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "haste_base": 3879, "strain_base": 3448}, "embed": {"strain_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关帽 (会心 破招) 12300": {"id": 90353, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 773, "physical_attack_power_base": 1254, "physical_critical_strike_base": 3879, "surplus": 3448}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 破招 无双) 12100": {"id": 94544, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "surplus": 2332, "physical_critical_strike_base": 4027, "strain_base": 2332}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (会心 会效) 12100": {"id": 94543, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2752, "physical_critical_strike_base": 5299, "physical_critical_power_base": 3180}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封头饰 (破防) 12100": {"id": 94542, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3226, "physical_overcome_base": 7525}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [15436, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/jacket
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽衣 (破防 无双) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺衣_测试用 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落衣 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪衫 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus": 4858}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜衣_测试用 (会心 无双) 15400": {"school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "风烈衣 (破防 无双) 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": {}}, "东方日出·海光衫 (破防 破招) 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": {"strength_base": 974, "physical_attack_power_base": 1580, "surplus": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺衣 (会心 无双) 13950": {"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": {"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": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪衣 (加速 破招) 13750": {"school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus": 4282}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜衣 (会心 无双) 13750": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "雪舞衣 (破防 无双) 12600": {"school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠衣 (破防 破招) 12450": {"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": {"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": {"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": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒御厨上衣·刀功 (破防 无双) 12300": {"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": {"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": {"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": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌衣 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦衣 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双衣 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬衫 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰衫 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关衫 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"水泽衣 (破防 无双) 15800": {"id": 98510, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 1103, "physical_attack_power_base": 1790, "physical_overcome_base": 5536, "strain_base": 4921}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺衣_测试用 (会心 无双) 15600": {"id": 98612, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "strain_base": 4858}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落衣 (会心 破招) 15600": {"id": 98438, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_critical_strike_base": 5466, "surplus": 4858}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪衫 (破防 破招) 15600": {"id": 98402, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 1089, "physical_attack_power_base": 1767, "physical_overcome_base": 5466, "surplus": 4858}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜衣_测试用 (会心 无双) 15400": {"id": 98362, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 1075, "physical_attack_power_base": 1744, "physical_critical_strike_base": 5396, "strain_base": 4796}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 12], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "风烈衣 (破防 无双) 14150": {"id": 96396, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_overcome_base": 4958, "strain_base": 4407}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光衫 (破防 破招) 13950": {"id": 98708, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨衣 (破招 无双) 13950": {"id": 98216, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "surplus": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺衣 (会心 无双) 13950": {"id": 96506, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "strain_base": 4344}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦衣 (会心 破招) 13950": {"id": 96324, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行衫 (破防 破招) 13950": {"id": 96288, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪衣 (加速 破招) 13750": {"id": 98186, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "haste_base": 4817, "surplus": 4282}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜衣 (会心 无双) 13750": {"id": 96248, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 960, "physical_attack_power_base": 1558, "physical_critical_strike_base": 4817, "strain_base": 4282}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 11], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "雪舞衣 (破防 无双) 12600": {"id": 94493, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_overcome_base": 4415, "strain_base": 3924}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠衣 (破防 破招) 12450": {"id": 96602, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静衣 (会心 无双) 12450": {"id": 94595, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "strain_base": 3877}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃衣 (会心 破招) 12450": {"id": 94433, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿衫 (破防 破招) 12450": {"id": 94397, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒御厨上衣·刀功 (破防 无双) 12300": {"id": 98150, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "寻踪觅宝·惊风衣 (加速 破招) 12300": {"id": 96102, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "surplus": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·冲霄衣 (会心 无双) 12300": {"id": 94358, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江衣 (会心 无双) 12300": {"id": 90671, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "physical_critical_power_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌衣 (破防 破招) 12300": {"id": 90635, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "surplus": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦衣 (会心 破招) 12300": {"id": 90599, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双衣 (破防 无双) 12300": {"id": 90563, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬衫 (破防 无双) 12300": {"id": 90431, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_overcome_base": 4309, "strain_base": 3831}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰衫 (加速 无双) 12300": {"id": 90395, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "haste_base": 4309, "strain_base": 3831}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关衫 (会心 破招) 12300": {"id": 90359, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 859, "physical_attack_power_base": 1393, "physical_critical_strike_base": 4309, "surplus": 3831}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [22151, 10], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/necklace
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"运上链 (破防 破招) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落链 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪链 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 2071, "physical_overcome_base": 2515, "strain_base": 1479}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 3107, "physical_critical_strike_base": 2959}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "physical_overcome_base": 5252}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 14800": {"school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus": 1536, "physical_critical_strike_base": 2654, "physical_critical_power_base": 1397}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破招 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus": 2863, "strain_base": 2863}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_critical_strike_base": 4958}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 14150": {"school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨链 (破防 无双) 13950": {"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": {"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": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 13800": {"school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招 无双) 13550": {"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": {}}, "客路链 (破防 破招) 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": {}}, "运上链 (破防 破招) 12800": {"school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 12800": {"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": {}}, "定酣链 (破防 破招) 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": {}}, "灵空·撼地链 (破防 无双) 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": {"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": {"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": {"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": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临邦链 (破防 破招) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江链 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌链 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦链 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双链 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬链 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰链 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关链 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 12100": {"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": {}}}
|
|
|
1 |
+
{"运上链 (破防 破招) 15800": {"id": 39908, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_overcome_base": 2768, "surplus": 2460}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落链 (会心 无双) 15600": {"id": 39836, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪链 (破防 无双) 15600": {"id": 39818, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 15200": {"id": 39941, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 2071, "physical_overcome_base": 2515, "strain_base": 1479}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招) 15200": {"id": 39940, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 3107, "physical_critical_strike_base": 2959}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防) 15200": {"id": 39939, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "physical_overcome_base": 5252}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 14800": {"id": 39896, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_overcome_base": 2593, "surplus": 2305}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 14350": {"id": 39929, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus": 1536, "physical_critical_strike_base": 2654, "physical_critical_power_base": 1397}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破招 无双) 14350": {"id": 39928, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "surplus": 2863, "strain_base": 2863}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心) 14350": {"id": 39927, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_critical_strike_base": 4958}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 14150": {"id": 38844, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨链 (破防 无双) 13950": {"id": 39806, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦链 (会心 无双) 13950": {"id": 38772, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行链 (破防 无双) 13950": {"id": 38754, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 13800": {"id": 39884, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus": 2149}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招 无双) 13550": {"id": 38881, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "surplus": 1451, "physical_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 无双) 13550": {"id": 38880, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (无双) 13550": {"id": 38879, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "strain_base": 4681}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 13300": {"id": 38832, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上链 (破防 破招) 12800": {"id": 39872, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_overcome_base": 2242, "surplus": 1993}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防 破招 无双) 12800": {"id": 38865, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 1744, "physical_overcome_base": 2118, "strain_base": 1246}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 破招) 12800": {"id": 38864, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 2616, "physical_critical_strike_base": 2491}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破防) 12800": {"id": 38863, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "physical_overcome_base": 4422}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣链 (破防 破招) 12600": {"id": 37769, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地链 (破防 无双) 12450": {"id": 39682, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路链 (破防 破招) 12450": {"id": 38820, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静链 (会心 破招) 12450": {"id": 37811, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃链 (会心 无双) 12450": {"id": 37701, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿链 (破防 无双) 12450": {"id": 37683, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临邦链 (破防 破招) 12400": {"id": 34189, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_overcome_base": 2172, "surplus": 1931}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江链 (会心 破招) 12300": {"id": 34261, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌链 (会心 无双) 12300": {"id": 34243, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦链 (破防 破招) 12300": {"id": 34225, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双链 (加速 无双) 12300": {"id": 34207, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬链 (破防 无双) 12300": {"id": 34117, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰链 (会心 破招) 12300": {"id": 34099, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关链 (破招 无双) 12300": {"id": 34081, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心 会效 破招) 12100": {"id": 37802, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus": 1295, "physical_critical_strike_base": 2237, "physical_critical_power_base": 1178}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (破招 无双) 12100": {"id": 37801, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus": 2414, "strain_base": 2414}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封项链 (会心) 12100": {"id": 37800, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_critical_strike_base": 4181}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/pendant
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"运上坠 (会心 无双) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西窗意 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 4, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落坠 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪坠 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "physical_critical_strike_base": 2811, "physical_critical_power_base": 1479, "strain_base": 1627}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 破招) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 2959, "physical_overcome_base": 3107}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "strain_base": 5252}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 14800": {"school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_overcome_base": 1955, "physical_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 4958}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 14150": {"school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨坠 (破防 无双) 13950": {"school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枕槐安 (破防 无双) 13950": {"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": 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": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 13800": {"school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 会效) 13550": {"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": {}}, "客路坠 (会心 无双) 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": {}}, "运上坠 (会心 无双) 12800": {"school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 12800": {"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": {}}, "定酣坠 (会心 无双) 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": {}}, "灵空·撼地坠 (会心 无双) 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": {"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": {"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": 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": 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": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临梧坠 (会心 破招) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus": 1931}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江坠 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌坠 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦坠 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双坠 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬坠 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰佩 (加速 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关佩 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 12100": {"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": {}}, "齐月坠 (破防 无双) 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": {}}}
|
|
|
1 |
+
{"运上坠 (会心 无双) 15800": {"id": 39914, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 552, "physical_attack_power_base": 895, "physical_critical_strike_base": 2768, "strain_base": 2460}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西窗意 (破防 无双) 15600": {"id": 39854, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 4, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 123]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落坠 (会心 破招) 15600": {"id": 39842, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "surplus": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪坠 (破防 破招) 15600": {"id": 39824, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus": 2429}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 15200": {"id": 39947, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "physical_critical_strike_base": 2811, "physical_critical_power_base": 1479, "strain_base": 1627}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 破招) 15200": {"id": 39946, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1920, "surplus": 2959, "physical_overcome_base": 3107}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (无双) 15200": {"id": 39945, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2252, "strain_base": 5252}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 14800": {"id": 39902, "school": "通用", "kind": "力道", "level": 14800, "max_strength": 6, "base": {}, "magic": {"strength_base": 517, "physical_attack_power_base": 838, "physical_critical_strike_base": 2593, "strain_base": 2305}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 14350": {"id": 39935, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_overcome_base": 1955, "physical_critical_strike_base": 2235, "strain_base": 1536}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 无双) 14350": {"id": 39934, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1813, "physical_critical_strike_base": 2793, "strain_base": 2933}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防) 14350": {"id": 39933, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 4958}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 14150": {"id": 38850, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨坠 (破防 无双) 13950": {"id": 39812, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "枕槐安 (破防 无双) 13950": {"id": 38790, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 4, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦坠 (会心 破招) 13950": {"id": 38778, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行坠 (破防 破招) 13950": {"id": 38760, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 13800": {"id": 39890, "school": "通用", "kind": "力道", "level": 13800, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_critical_strike_base": 2417, "strain_base": 2149}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 会效) 13550": {"id": 38887, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 1912, "physical_critical_strike_base": 2044, "physical_critical_power_base": 1319}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心) 13550": {"id": 38886, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_critical_strike_base": 2703, "physical_overcome_base": 2703}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心) 13550": {"id": 38885, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "physical_critical_strike_base": 4681}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 13300": {"id": 38838, "school": "通用", "kind": "力道", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "运上坠 (会心 无双) 12800": {"id": 39878, "school": "通用", "kind": "力道", "level": 12800, "max_strength": 6, "base": {}, "magic": {"strength_base": 447, "physical_attack_power_base": 725, "physical_critical_strike_base": 2242, "strain_base": 1993}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 会效 无双) 12800": {"id": 38873, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "physical_critical_strike_base": 2367, "physical_critical_power_base": 1246, "strain_base": 1370}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 破招) 12800": {"id": 38872, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 2491, "physical_overcome_base": 2616}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (无双) 12800": {"id": 38871, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "strain_base": 4422}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "定酣坠 (会心 无双) 12600": {"id": 37775, "school": "通用", "kind": "��道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵空·撼地坠 (会心 无双) 12450": {"id": 39688, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客路坠 (会心 无双) 12450": {"id": 38826, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静坠 (会心 破招) 12450": {"id": 37817, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "恸黄沙 (破防 无双) 12450": {"id": 37719, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 4, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃坠 (会心 破招) 12450": {"id": 37707, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿坠 (破防 破招) 12450": {"id": 37689, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临梧坠 (会心 破招) 12400": {"id": 34195, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "surplus": 1931}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江坠 (会心 无双) 12300": {"id": 34267, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌坠 (破防 无双) 12300": {"id": 34249, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "strain_base": 1915}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦坠 (会心 破招) 12300": {"id": 34231, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双坠 (加速 无双) 12300": {"id": 34213, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬坠 (会心 无双) 12300": {"id": 34123, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰佩 (加速 破招) 12300": {"id": 34105, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus": 1915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关佩 (破招 无双) 12300": {"id": 34087, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防 会心 无双) 12100": {"id": 37808, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_overcome_base": 1649, "physical_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (会心 无双) 12100": {"id": 37807, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封腰坠 (破防) 12100": {"id": 37806, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_overcome_base": 4181}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "齐月坠 (破防 无双) 12000": {"id": 38736, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/primary_weapon
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"世事浮云 (会心 破招) 15800": {"school": "霸刀", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒_测试用 (破防 破招) 15600": {"school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里长空 (破防 无双) 15600": {"school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "念真刀 (会心 无双) 15600": {"school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重霜 (会心 破招) 14150": {"school": "霸刀", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus": 6346}, "embed": {"physical_attack_power_base": 72, "strength_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": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危魂刀 (会心 无双) 13950": {"school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒 (破防 破招) 13950": {"school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风柳绪 (破防 无双) 13950": {"school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千雷刀 (会心 无双) 13950": {"school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐虎刀 (会心 破招) 13750": {"school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "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": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "田野苍茫 (会心 破招) 12600": {"school": "霸刀", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 12500": {"school": "霸刀", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 5677, "physical_overcome_base": 6488, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·雾掣 (破防 无双) 12450": {"school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪中迹 (破防 破招) 12450": {"school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宝器光 (破防 无双) 12450": {"school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "红尘苦 (会心 无双) 12450": {"school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒绛腊厨装·刀功 (破防 无双) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "寻踪觅宝·长楚刀 (会心 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡辰刀 (破防 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知溪刀 (会心 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叙砚刀 (加速 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪陵刀 (破防 无双) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾劲 (会心 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云雨未消 (加速 破招) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山川形胜 (破防 无双) 12300": {"school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11900": {"school": "霸刀", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5405, "physical_overcome_base": 6177, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 11650": {"school": "霸刀", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5291, "physical_overcome_base": 6047, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11300": {"school": "霸刀", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5132, "physical_overcome_base": 5865, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10900": {"school": "霸刀", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 4950, "physical_overcome_base": 5658, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10800": {"school": "霸刀", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 4905, "physical_overcome_base": 5606, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10300": {"school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10300": {"school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9800": {"school": "霸刀", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4451, "physical_overcome_base": 5087, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9700": {"school": "霸刀", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4405, "physical_overcome_base": 5035, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9300": {"school": "霸刀", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4224, "physical_overcome_base": 4827, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9100": {"school": "霸刀", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4133, "physical_overcome_base": 4723, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"世事浮云 (会心 破招) 15800": {"id": 37284, "school": "霸刀", "kind": "外功", "level": 15800, "max_strength": 6, "base": {"weapon_damage_base": 3675, "weapon_damage_rand": 2450}, "magic": {"strength_base": 1324, "physical_attack_power_base": 5127, "physical_critical_strike_base": 6643, "surplus": 7086}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒_测试用 (破防 破招) 15600": {"id": 37333, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "surplus": 6996}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "万里长空 (破防 无双) 15600": {"id": 37245, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 4, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_overcome_base": 6559, "strain_base": 6996}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2605], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "念真刀 (会心 无双) 15600": {"id": 37214, "school": "霸刀", "kind": "外功", "level": 15600, "max_strength": 6, "base": {"weapon_damage_base": 3629, "weapon_damage_rand": 2419}, "magic": {"strength_base": 1307, "physical_attack_power_base": 5062, "physical_critical_strike_base": 6559, "strain_base": 6996}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重霜 (会心 破招) 14150": {"id": 35813, "school": "霸刀", "kind": "外功", "level": 14150, "max_strength": 6, "base": {"weapon_damage_base": 3291, "weapon_damage_rand": 2194}, "magic": {"strength_base": 1186, "physical_attack_power_base": 4591, "physical_critical_strike_base": 5949, "surplus": 6346}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·觅安期 (破防 无双) 13950": {"id": 37434, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危魂刀 (会心 无双) 13950": {"id": 37171, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山空岁寒 (破防 破招) 13950": {"id": 35864, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "surplus": 6256}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风柳绪 (破防 无双) 13950": {"id": 35774, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 4, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_overcome_base": 5865, "strain_base": 6256}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2540], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "千雷刀 (会心 无双) 13950": {"id": 35743, "school": "霸刀", "kind": "外功", "level": 13950, "max_strength": 6, "base": {"weapon_damage_base": 3245, "weapon_damage_rand": 2163}, "magic": {"strength_base": 1169, "physical_attack_power_base": 4527, "physical_critical_strike_base": 5865, "strain_base": 6256}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·逐虎刀 (会心 破招) 13750": {"id": 37134, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {"weapon_damage_base": 3198, "weapon_damage_rand": 2132}, "magic": {"strength_base": 1152, "physical_attack_power_base": 4462, "physical_critical_strike_base": 5781, "surplus": 6166}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "百炼环首刀 (破防 破招) 13200": {"id": 36904, "school": "霸刀", "kind": "外功", "level": 13200, "max_strength": 4, "base": {"weapon_damage_base": 3070, "weapon_damage_rand": 2047}, "magic": {"strength_base": 1106, "physical_attack_power_base": 4283, "physical_overcome_base": 5550, "surplus": 5920}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [2584, [26060, 4]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "田野苍茫 (会心 破招) 12600": {"id": 34797, "school": "霸刀", "kind": "外功", "level": 12600, "max_strength": 6, "base": {"weapon_damage_base": 2931, "weapon_damage_rand": 1954}, "magic": {"strength_base": 1056, "physical_attack_power_base": 4089, "physical_critical_strike_base": 5297, "surplus": 5651}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 12500": {"id": 38070, "school": "霸刀", "kind": "外功", "level": 12500, "max_strength": 8, "base": {"weapon_damage_base": 4038, "weapon_damage_rand": 2692}, "magic": {"strength_base": 1455, "physical_attack_power_base": 5452, "physical_critical_strike_base": 5677, "physical_overcome_base": 6488, "haste_base": 2028}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·雾掣 (破防 无双) 12450": {"id": 35965, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪中迹 (破防 破招) 12450": {"id": 34845, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "surplus": 5583}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宝器光 (破防 无双) 12450": {"id": 34759, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 4, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_overcome_base": 5234, "strain_base": 5583}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [2498], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "红尘苦 (会心 无双) 12450": {"id": 34729, "school": "霸刀", "kind": "外功", "level": 12450, "max_strength": 6, "base": {"weapon_damage_base": 2896, "weapon_damage_rand": 1931}, "magic": {"strength_base": 1043, "physical_attack_power_base": 4040, "physical_critical_strike_base": 5234, "strain_base": 5583}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒绛腊厨装·刀功 (破防 无双) 12300": {"id": 36852, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "寻踪觅宝·长楚刀 (会心 破招) 12300": {"id": 35700, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [1194], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡辰刀 (破防 破招) 12300": {"id": 32687, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "知溪刀 (会心 破招) 12300": {"id": 32651, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "叙砚刀 (加速 破招) 12300": {"id": 32615, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "雪陵刀 (破防 无双) 12300": {"id": 32579, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "疾劲 (会心 破招) 12300": {"id": 32519, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_critical_strike_base": 5171, "surplus": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云雨未消 (加速 破招) 12300": {"id": 32483, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "haste_base": 5171, "surplus": 5516}, "embed": {"strength_base": 36, "physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "山川形胜 (破防 无双) 12300": {"id": 32447, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {"weapon_damage_base": 2861, "weapon_damage_rand": 1907}, "magic": {"strength_base": 1031, "physical_attack_power_base": 3991, "physical_overcome_base": 5171, "strain_base": 5516}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11900": {"id": 38039, "school": "霸刀", "kind": "外功", "level": 11900, "max_strength": 8, "base": {"weapon_damage_base": 3844, "weapon_damage_rand": 2563}, "magic": {"strength_base": 1385, "physical_attack_power_base": 5190, "physical_critical_strike_base": 5405, "physical_overcome_base": 6177, "haste_base": 1930}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 11650": {"id": 37097, "school": "霸刀", "kind": "外功", "level": 11650, "max_strength": 8, "base": {"weapon_damage_base": 3763, "weapon_damage_rand": 2509}, "magic": {"strength_base": 1356, "physical_attack_power_base": 5081, "physical_critical_strike_base": 5291, "physical_overcome_base": 6047, "haste_base": 1890}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 11300": {"id": 36592, "school": "霸刀", "kind": "外功", "level": 11300, "max_strength": 8, "base": {"weapon_damage_base": 3650, "weapon_damage_rand": 2434}, "magic": {"strength_base": 1315, "physical_attack_power_base": 4929, "physical_critical_strike_base": 5132, "physical_overcome_base": 5865, "haste_base": 1833}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10900": {"id": 37066, "school": "霸刀", "kind": "外功", "level": 10900, "max_strength": 8, "base": {"weapon_damage_base": 3521, "weapon_damage_rand": 2347}, "magic": {"strength_base": 1269, "physical_attack_power_base": 4754, "physical_critical_strike_base": 4950, "physical_overcome_base": 5658, "haste_base": 1768}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4296, 4297, 17375], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10800": {"id": 36562, "school": "霸刀", "kind": "外功", "level": 10800, "max_strength": 8, "base": {"weapon_damage_base": 3489, "weapon_damage_rand": 2326}, "magic": {"strength_base": 1257, "physical_attack_power_base": 4710, "physical_critical_strike_base": 4905, "physical_overcome_base": 5606, "haste_base": 1752}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 10300": {"id": 35621, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 10300": {"id": 37035, "school": "霸刀", "kind": "外功", "level": 10300, "max_strength": 8, "base": {"weapon_damage_base": 3327, "weapon_damage_rand": 2218}, "magic": {"strength_base": 1199, "physical_attack_power_base": 4492, "physical_critical_strike_base": 4678, "physical_overcome_base": 5346, "haste_base": 1671}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9800": {"id": 35591, "school": "霸刀", "kind": "外功", "level": 9800, "max_strength": 8, "base": {"weapon_damage_base": 3166, "weapon_damage_rand": 2110}, "magic": {"strength_base": 1141, "physical_attack_power_base": 4274, "physical_critical_strike_base": 4451, "physical_overcome_base": 5087, "haste_base": 1590}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9700": {"id": 37004, "school": "霸刀", "kind": "外功", "level": 9700, "max_strength": 8, "base": {"weapon_damage_base": 3133, "weapon_damage_rand": 2089}, "magic": {"strength_base": 1129, "physical_attack_power_base": 4231, "physical_critical_strike_base": 4405, "physical_overcome_base": 5035, "haste_base": 1573}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "沉夜重雪 (破防 会心 加速) 9300": {"id": 34427, "school": "霸刀", "kind": "外功", "level": 9300, "max_strength": 8, "base": {"weapon_damage_base": 3004, "weapon_damage_rand": 2003}, "magic": {"strength_base": 1082, "physical_attack_power_base": 4056, "physical_critical_strike_base": 4224, "physical_overcome_base": 4827, "haste_base": 1509}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [4294, 4295, 2430, 1942, 17374, 17239], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "风雪寒鹊 (破防 会心 加速) 9100": {"id": 36973, "school": "霸刀", "kind": "外功", "level": 9100, "max_strength": 8, "base": {"weapon_damage_base": 2939, "weapon_damage_rand": 1960}, "magic": {"strength_base": 1059, "physical_attack_power_base": 3969, "physical_critical_strike_base": 4133, "physical_overcome_base": 4723, "haste_base": 1476}, "embed": {"physical_attack_power_base": 72, "strength_base": 36, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/ring
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"客行江湖·听钟戒 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "似窈戒 (破防 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1903, "surplus": 3188, "physical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓然戒 (会心 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1631, "physical_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赤树戒 (破防 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "望若戒 (会心 会效 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "surplus": 1670, "physical_critical_strike_base": 2885, "physical_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "姑引戒 (破防 会心) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_critical_strike_base": 3112, "physical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "勤俭戒 (无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2311, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落戒 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪指环 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绘山戒 (破防 破招) 13950": {"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": {"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": 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": 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": {"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": 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": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨石 (会心 无双) 13400": {"school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静戒 (会心 破招) 12450": {"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": {"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": 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": {"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": 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": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临尚戒 (会心 无双) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒御厨戒指·刀功 (会心 无双) 12300": {"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": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌戒 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦戒 (加速 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双戒 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬戒 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰戒 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关戒 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"客行江湖·听钟戒 (破防 无双) 15600": {"id": 39920, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "似窈戒 (破防 破招) 15600": {"id": 39869, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1903, "surplus": 3188, "physical_overcome_base": 2885}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "卓然戒 (会心 无双) 15600": {"id": 39868, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1631, "physical_critical_strike_base": 1974, "strain_base": 4858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赤树戒 (破防 无双) 15600": {"id": 39865, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_overcome_base": 3036, "strain_base": 3188}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "望若戒 (会心 会效 破招) 15600": {"id": 39863, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "surplus": 1670, "physical_critical_strike_base": 2885, "physical_critical_power_base": 1518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "姑引戒 (破防 会心) 15600": {"id": 39862, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1971, "physical_critical_strike_base": 3112, "physical_overcome_base": 3112}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "勤俭戒 (无双) 15600": {"id": 39861, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2311, "strain_base": 5390}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落戒 (会心 无双) 15600": {"id": 39848, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_critical_strike_base": 2733, "strain_base": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪指环 (破防 破招) 15600": {"id": 39830, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 545, "physical_attack_power_base": 884, "physical_overcome_base": 2733, "surplus": 2429}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "绘山戒 (破防 破招) 13950": {"id": 39794, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟戒 (破防 无双) 13950": {"id": 38856, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时岑戒 (破防 破招) 13950": {"id": 38805, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1702, "surplus": 2851, "physical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "游练戒 (会心 无双) 13950": {"id": 38804, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1459, "physical_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问年戒 (破防 无双) 13950": {"id": 38801, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "光霆戒 (会心 会效 破招) 13950": {"id": 38799, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "surplus": 1493, "physical_critical_strike_base": 2580, "physical_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "兰珑戒 (破防 会心) 13950": {"id": 38798, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_critical_strike_base": 2783, "physical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "时越戒 (无双) 13950": {"id": 38797, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2066, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦戒 (会心 无双) 13950": {"id": 38784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行指环 (破防 破招) 13950": {"id": 38766, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "暮雨石 (会心 无双) 13400": {"id": 39800, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静戒 (会心 破招) 12450": {"id": 37823, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花戒 (破防 无双) 12450": {"id": 37781, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "催时戒 (破防 无双) 12450": {"id": 37730, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "physical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "破朝戒 (会心 无双) 12450": {"id": 37728, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1302, "physical_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "赫风戒 (破防 破招) 12450": {"id": 37727, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "surplus": 2545, "physical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "问岐戒 (无双) 12450": {"id": 37726, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1844, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃戒 (会心 无双) 12450": {"id": 37713, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿指环 (破防 破招) 12450": {"id": 37695, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临尚戒 (会心 无双) 12400": {"id": 34201, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 433, "physical_attack_power_base": 702, "physical_critical_strike_base": 2172, "strain_base": 1931}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "傲寒御厨戒指·刀功 (会心 无双) 12300": {"id": 39784, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "拭江戒 (破防 破招) 12300": {"id": 34273, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌戒 (会心 破招) 12300": {"id": 34255, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦戒 (加速 破招) 12300": {"id": 34237, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双戒 (破招 无双) 12300": {"id": 34219, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "surplus": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬戒 (会心 破招) 12300": {"id": 34129, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰戒 (加速 无双) 12300": {"id": 34111, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "haste_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关戒 (破防 破招) 12300": {"id": 34093, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_overcome_base": 2155, "surplus": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/shoes
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽靴 (破防 破招) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus": 3444}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺靴_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落靴 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪靴 (加速 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 3401}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜靴_测试用 (破防 无双) 15400": {"school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封鞋 (会心 破招 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus": 2278, "physical_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (无双) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "strain_base": 7352}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus": 2737, "physical_overcome_base": 3324, "strain_base": 1955}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 会心) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 4008, "physical_overcome_base": 4008}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "physical_critical_strike_base": 6941}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "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": [], "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": {"physical_attack_power_base": 72, "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": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "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": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "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": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus": 3041}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪靴 (会心 无双) 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": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜靴 (破防 无双) 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": [], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "外功无封鞋 (会心 会效 无双) 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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠靴 (会心 无双) 12450": {"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": [], "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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临晨鞋 (会心 破招) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus": 2703}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": "191815", "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": [], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江靴 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌靴 (破防 破招) 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": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦靴 (加速 破招) 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_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰靴 (破防 破招) 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": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关履 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"水泽靴 (破防 破招) 15800": {"id": 98492, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus": 3444}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺靴_测试用 (会心 破招) 15600": {"id": 98594, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落靴 (会心 无双) 15600": {"id": 98420, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪靴 (加速 破招) 15600": {"id": 98384, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "haste_base": 3826, "surplus": 3401}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜靴_测试用 (破防 无双) 15400": {"id": 98302, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_overcome_base": 3777, "strain_base": 3357}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封鞋 (会心 破招 无双) 15200": {"id": 98579, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "surplus": 2278, "physical_critical_strike_base": 3935, "strain_base": 2278}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 无双) 15200": {"id": 98578, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 4142, "strain_base": 4349}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (无双) 15200": {"id": 98577, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "strain_base": 7352}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 14350": {"id": 98555, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus": 2737, "physical_overcome_base": 3324, "strain_base": 1955}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 会心) 14350": {"id": 98554, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 4008, "physical_overcome_base": 4008}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心) 14350": {"id": 98553, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "physical_critical_strike_base": 6941}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈靴 (破防 破招) 14150": {"id": 96378, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus": 3085}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "东方日出·海光靴 (会心 无双) 13950": {"id": 98690, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨靴 (破防 无双) 13950": {"id": 98198, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺靴 (会心 破招) 13950": {"id": 96488, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦靴 (会心 无双) 13950": {"id": 96306, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行靴 (加速 破招) 13950": {"id": 96270, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "haste_base": 3421, "surplus": 3041}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪靴 (会心 无双) 13750": {"id": 98174, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_critical_strike_base": 3372, "strain_base": 2998}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜靴 (破防 无双) 13750": {"id": 96188, "school": "霸刀", "kind": "外功", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "strain_base": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "外功无封鞋 (会心 会效 无双) 13550": {"id": 96473, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 3508, "physical_critical_power_base": 1846, "strain_base": 2031}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破招 无双) 13550": {"id": 96472, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "surplus": 3785, "strain_base": 3785}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防) 13550": {"id": 96471, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心 破招 无双) 12800": {"id": 96447, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "surplus": 1918, "physical_critical_strike_base": 3314, "strain_base": 1918}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 无双) 12800": {"id": 96446, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 3488, "strain_base": 3662}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (无双) 12800": {"id": 96445, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "strain_base": 6191}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪舞靴 (破防 破招) 12600": {"id": 94475, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus": 2747}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "西风北啸·砾漠靴 (会心 无双) 12450": {"id": 96584, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静靴 (会心 破招) 12450": {"id": 94577, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus": 2714}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃靴 (会心 无双) 12450": {"id": 94415, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿靴 (加速 破招) 12450": {"id": 94379, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "haste_base": 3053, "surplus": 2714}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "临晨鞋 (会心 破招) 12400": {"id": 90521, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus": 2703}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·惊风靴 (会心 无双) 12300": {"id": 96090, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·冲霄靴 (破防 无双) 12300": {"id": 94300, "school": "霸刀", "kind": "外功", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 33247, "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江靴 (加速 无双) 12300": {"id": 90653, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌靴 (破防 破招) 12300": {"id": 90617, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 2681}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦靴 (加速 破招) 12300": {"id": 90581, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 2681}, "embed": {"physical_attack_power_base": 72, "strength_base": 36}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双靴 (会心 无双) 12300": {"id": 90545, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"strength_base": 36, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬履 (会心 破招) 12300": {"id": 90413, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "surplus": 2681}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰靴 (破防 破招) 12300": {"id": 90377, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 2681}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关履 (加速 无双) 12300": {"id": 90341, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 破招 无双) 12100": {"id": 94562, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus": 2308, "physical_overcome_base": 2803, "strain_base": 1649}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (破防 会心) 12100": {"id": 94561, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3380, "physical_overcome_base": 3380}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封鞋 (会心) 12100": {"id": 94560, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "physical_critical_strike_base": 5853}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 33247, "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/tertiary_weapon
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"泉潺囊_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "同后囊 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_overcome_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落囊 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪囊 (加速 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "surplus": 1953, "physical_critical_strike_base": 3373, "physical_critical_power_base": 1775}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "physical_critical_strike_base": 4438, "physical_critical_power_base": 2663}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2702, "physical_overcome_base": 6302}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "physical_overcome_base": 2430, "physical_critical_strike_base": 2598, "physical_critical_power_base": 1676}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 破招) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "surplus": 3519, "physical_critical_strike_base": 3352}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2551, "strain_base": 5949}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光囊 (会心 无双) 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": {"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": {"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": {"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": {"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": {"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": {}}, "外功无封囊 (破防 会心 破招) 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": {}}, "西风漫·聆 (破防 无双) 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": {}}, "外功无封囊 (会心 会效 破招) 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": {}}, "静山囊 (破防 无双) 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": {}}, "西风北啸·砾漠囊 (会心 无双) 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": {"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": {"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": {"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": {"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": {}}, "临掣囊 (会心 无双) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宸风 (会心 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江囊 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌囊 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦囊 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双囊 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "surplus": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬囊 (会心 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰囊 (破防 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关囊 (破防 破招) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 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": {}}, "龙目·螭吻 (破防 无双) 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": {}}}
|
|
|
1 |
+
{"泉潺囊_测试用 (会心 破招) 15600": {"id": 37306, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "同后囊 (破防 破招) 15600": {"id": 37255, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_overcome_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落囊 (会心 无双) 15600": {"id": 37187, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "physical_critical_strike_base": 3279, "strain_base": 2915}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪囊 (加速 破招) 15600": {"id": 37181, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 654, "physical_attack_power_base": 1060, "haste_base": 3279, "surplus": 2915}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 15200": {"id": 37303, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "surplus": 1953, "physical_critical_strike_base": 3373, "physical_critical_power_base": 1775}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效) 15200": {"id": 37302, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2305, "physical_critical_strike_base": 4438, "physical_critical_power_base": 2663}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防) 15200": {"id": 37301, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2702, "physical_overcome_base": 6302}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 14350": {"id": 37297, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "physical_overcome_base": 2430, "physical_critical_strike_base": 2598, "physical_critical_power_base": 1676}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 破招) 14350": {"id": 37296, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2176, "surplus": 3519, "physical_critical_strike_base": 3352}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (无双) 14350": {"id": 37295, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2551, "strain_base": 5949}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "东方日出·海光囊 (会心 无双) 13950": {"id": 37407, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "危雨囊 (会心 破招) 13950": {"id": 37144, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺囊 (会心 破招) 13950": {"id": 35837, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "越既囊 (破防 破招) 13950": {"id": 35784, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦囊 (会心 无双) 13950": {"id": 35716, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行囊 (加速 破招) 13950": {"id": 35710, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 破招) 13550": {"id": 35834, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2267, "surplus": 1899, "physical_overcome_base": 2057, "physical_critical_strike_base": 2057}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 破招) 13550": {"id": 35833, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2054, "surplus": 3165, "physical_overcome_base": 3323}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心) 13550": {"id": 35832, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2409, "physical_critical_strike_base": 5618}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风漫·聆 (破防 无双) 13400": {"id": 37107, "school": "通用", "kind": "力道", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效 破招) 12800": {"id": 35826, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "surplus": 1644, "physical_critical_strike_base": 2840, "physical_critical_power_base": 1495}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 会效) 12800": {"id": 35825, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "physical_critical_strike_base": 3737, "physical_critical_power_base": 2242}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防) 12800": {"id": 35824, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2275, "physical_overcome_base": 5307}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "静山囊 (破防 无双) 12600": {"id": 36535, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "西风北啸·砾漠囊 (会心 无双) 12450": {"id": 35938, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静囊 (会心 破招) 12450": {"id": 34818, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "微花囊 (破防 破招) 12450": {"id": 34768, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃囊 (会心 无双) 12450": {"id": 34702, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿囊 (加速 破招) 12450": {"id": 34696, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临掣囊 (会心 无双) 12400": {"id": 32546, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 520, "physical_attack_power_base": 843, "physical_critical_strike_base": 2607, "strain_base": 2317}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "宸风 (会心 无双) 12300": {"id": 32696, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "strain_base": 2298}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "拭江囊 (破防 无双) 12300": {"id": 32660, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌囊 (加速 无双) 12300": {"id": 32624, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "haste_base": 2586, "strain_base": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦囊 (破防 破招) 12300": {"id": 32588, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双囊 (破招 无双) 12300": {"id": 32552, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "surplus": 2586, "strain_base": 2298}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬囊 (会心 破招) 12300": {"id": 32492, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_critical_strike_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰囊 (破防 无双) 12300": {"id": 32456, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "strain_base": 2298}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关囊 (破防 破招) 12300": {"id": 32420, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 515, "physical_attack_power_base": 836, "physical_overcome_base": 2586, "surplus": 2298}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (破防 会心 会效) 12100": {"id": 34815, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "physical_overcome_base": 2049, "physical_critical_strike_base": 2190, "physical_critical_power_base": 1413}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (会心 破招) 12100": {"id": 34814, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "surplus": 2968, "physical_critical_strike_base": 2826}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封囊 (无双) 12100": {"id": 34813, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2151, "strain_base": 5017}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "龙目·螭吻 (破防 无双) 12000": {"id": 35636, "school": "通用", "kind": "力道", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/assets/equipments/wrist
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"水泽袖 (破防 破招) 15800": {"school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺护手_测试用 (会心 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手 (破防 破招) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "夜苔护臂 (破防 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "surplus": 4464, "physical_overcome_base": 4039}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "入影护臂 (无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7121}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "云貌护腕 (破防 会心 破招) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3045, "surplus": 2551, "physical_overcome_base": 2763, "physical_critical_strike_base": 2763}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "天直护腕 (破防 会心 会效) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 3082, "physical_critical_strike_base": 3295, "physical_critical_power_base": 2126}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "非色护腕 (破防 无双) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "金土护腕 (会心) 15600": {"school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落护手 (破防 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪护手 (会心 无双) 15600": {"school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜护手_测试用 (会心 破招) 15400": {"school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封护臂 (破防 会心 会效) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 3003, "physical_critical_strike_base": 3210, "physical_critical_power_base": 2071}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_critical_strike_base": 4246, "physical_overcome_base": 4246}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 15200": {"school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "physical_critical_strike_base": 7352}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效 无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 3715, "physical_critical_power_base": 1955, "strain_base": 2151}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus": 3910, "physical_overcome_base": 4106}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (无双) 14350": {"school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "strain_base": 6941}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪袖 (破防 破招) 13750": {"school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜护手 (会心 破招) 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": [], "set_id": "191841", "set_attr": {}, "set_gain": {"2": [1925], "4": [4290, 4291]}}, "外功无封护臂 (会心 会效 破招) 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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "临英护手 (会心 破招) 12400": {"school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus": 2703}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·惊风袖 (破防 破招) 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": [], "set_id": "191815", "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": [], "set_id": "190671", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "拭江袖 (破防 无双) 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": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "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, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦护手 (破防 破招) 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": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "羡双护手 (加速 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬护手 (破防 无双) 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": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰袖 (破招 无双) 12300": {"school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "重关袖 (加速 破招) 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": [], "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": 3132, "physical_critical_power_base": 1649, "strain_base": 1814}, "embed": {"physical_overcome_base": 161, "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": 2140, "surplus": 3297, "physical_overcome_base": 3462}, "embed": {"physical_critical_strike_base": 161, "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": 2509, "strain_base": 5853}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
|
|
|
1 |
+
{"水泽袖 (破防 破招) 15800": {"id": 98480, "school": "通用", "kind": "力道", "level": 15800, "max_strength": 6, "base": {}, "magic": {"strength_base": 772, "physical_attack_power_base": 1253, "physical_overcome_base": 3875, "surplus": 3444}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192188", "set_attr": {"2": {"all_critical_strike_base": 1484}, "4": {"strain_base": 1484}}, "set_gain": {}}, "泉潺护手_测试用 (会心 破招) 15600": {"id": 98582, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "surplus": 3401}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手 (破防 破招) 15600": {"id": 98516, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "surplus": 3401}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夜苔护臂 (破防 破招) 15600": {"id": 98473, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2664, "surplus": 4464, "physical_overcome_base": 4039}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "入影护臂 (无双) 15600": {"id": 98472, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3235, "strain_base": 7121}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "云貌护腕 (破防 会心 破招) 15600": {"id": 98457, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3045, "surplus": 2551, "physical_overcome_base": 2763, "physical_critical_strike_base": 2763}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "天直护腕 (破防 会心 会效) 15600": {"id": 98455, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 3082, "physical_critical_strike_base": 3295, "physical_critical_power_base": 2126}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "非色护腕 (破防 无双) 15600": {"id": 98454, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2759, "physical_overcome_base": 4251, "strain_base": 4464}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "金土护腕 (会心) 15600": {"id": 98453, "school": "精简", "kind": "外功", "level": 15600, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3235, "physical_critical_strike_base": 7546}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "磊落护手 (破防 无双) 15600": {"id": 98408, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_overcome_base": 3826, "strain_base": 3401}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "如雪护手 (会心 无双) 15600": {"id": 98372, "school": "通用", "kind": "力道", "level": 15600, "max_strength": 6, "base": {}, "magic": {"strength_base": 763, "physical_attack_power_base": 1237, "physical_critical_strike_base": 3826, "strain_base": 3401}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "灵源·折霜护手_测试用 (会心 破招) 15400": {"id": 98242, "school": "霸刀", "kind": "外功", "level": 15400, "max_strength": 6, "base": {}, "magic": {"strength_base": 753, "physical_attack_power_base": 1221, "physical_critical_strike_base": 3777, "surplus": 3357}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": "192048", "set_attr": {}, "set_gain": {"2": [4290, 4291], "4": [1925]}}, "外功无封护臂 (破防 会心 会效) 15200": {"id": 98567, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_overcome_base": 3003, "physical_critical_strike_base": 3210, "physical_critical_power_base": 2071}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心) 15200": {"id": 98566, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2689, "physical_critical_strike_base": 4246, "physical_overcome_base": 4246}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 15200": {"id": 98565, "school": "精简", "kind": "外功", "level": 15200, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3152, "physical_critical_strike_base": 7352}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效 无双) 14350": {"id": 98543, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "physical_critical_strike_base": 3715, "physical_critical_power_base": 1955, "strain_base": 2151}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 14350": {"id": 98542, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2538, "surplus": 3910, "physical_overcome_base": 4106}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (无双) 14350": {"id": 98541, "school": "精简", "kind": "外功", "level": 14350, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2976, "strain_base": 6941}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "风烈袖 (破防 破招) 14150": {"id": 96366, "school": "通用", "kind": "力道", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 692, "physical_attack_power_base": 1122, "physical_overcome_base": 3470, "surplus": 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": {}}, "东方日出·海光护手 (会心 破招) 13950": {"id": 98678, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "泉潺护手 (会心 破招) 13950": {"id": 96476, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "surplus": 3041}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·听钟护手 (破防 破招) 13950": {"id": 96402, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "surplus": 3041}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "流晖护臂 (破防 破招) 13950": {"id": 96359, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2382, "surplus": 3991, "physical_overcome_base": 3611}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "星风护臂 (无双) 13950": {"id": 96358, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2893, "strain_base": 6367}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "灭影护腕 (破防 会心 破招) 13950": {"id": 96343, "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": {"id": 96341, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 2756, "physical_critical_strike_base": 2946, "physical_critical_power_base": 1901}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "道尘护腕 (破防 无双) 13950": {"id": 96340, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2468, "physical_overcome_base": 3801, "strain_base": 3991}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "暮峰护腕 (会心) 13950": {"id": 96339, "school": "精简", "kind": "外功", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2893, "physical_critical_strike_base": 6748}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "素鸦护手 (破防 无双) 13950": {"id": 96294, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_overcome_base": 3421, "strain_base": 3041}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "凛行护手 (会心 无双) 13950": {"id": 96258, "school": "通用", "kind": "力道", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 682, "physical_attack_power_base": 1106, "physical_critical_strike_base": 3421, "strain_base": 3041}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·碎浪袖 (破防 破招) 13750": {"id": 98162, "school": "通用", "kind": "力道", "level": 13750, "max_strength": 6, "base": {}, "magic": {"strength_base": 672, "physical_attack_power_base": 1090, "physical_overcome_base": 3372, "surplus": 2998}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "192022", "set_attr": {}, "set_gain": {"4": [1194]}}, "灵源·折霜护手 (会心 破招) 13750": {"id": 96128, "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]}}, "外功无封护臂 (会心 会效 破招) 13550": {"id": 96461, "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": {"id": 96460, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2397, "physical_critical_strike_base": 4616, "physical_critical_power_base": 2769}, "embed": {"physical_overcome_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防) 13550": {"id": 96459, "school": "精简", "kind": "外功", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2810, "physical_overcome_base": 6554}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心 会效) 12800": {"id": 96431, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_overcome_base": 2529, "physical_critical_strike_base": 2703, "physical_critical_power_base": 1744}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 会心) 12800": {"id": 96430, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2264, "physical_critical_strike_base": 3575, "physical_overcome_base": 3575}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心) 12800": {"id": 96429, "school": "精简", "kind": "外功", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2655, "physical_critical_strike_base": 6191}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雪舞袖 (破防 破招) 12600": {"id": 94463, "school": "通用", "kind": "力道", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 616, "physical_attack_power_base": 999, "physical_overcome_base": 3090, "surplus": 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": {}}, "西风北啸·砾漠护手 (会心 破招) 12450": {"id": 96572, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "湖静护手 (会心 破招) 12450": {"id": 94565, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "surplus": 2714}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "客行江湖·梦花护手 (破防 破招) 12450": {"id": 94499, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "surplus": 2714}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "夙辰护腕 (破招) 12450": {"id": 94452, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2582, "surplus": 5683}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "零雨护腕 (会心 无双) 12450": {"id": 94450, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1823, "physical_critical_strike_base": 2205, "strain_base": 5428}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "制野护腕 (破防 无双) 12450": {"id": 94449, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "physical_overcome_base": 3223, "strain_base": 3562}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "雨膏护腕 (破防 破招) 12450": {"id": 94448, "school": "精简", "kind": "外功", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2126, "surplus": 3562, "physical_overcome_base": 3223}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "温刃护手 (破防 无双) 12450": {"id": 94403, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_overcome_base": 3053, "strain_base": 2714}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "安衿护手 (会心 无双) 12450": {"id": 94367, "school": "通用", "kind": "力道", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 609, "physical_attack_power_base": 987, "physical_critical_strike_base": 3053, "strain_base": 2714}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "临英护手 (会心 破招) 12400": {"id": 90509, "school": "通用", "kind": "力道", "level": 12400, "max_strength": 6, "base": {}, "magic": {"strength_base": 606, "physical_attack_power_base": 983, "physical_critical_strike_base": 3041, "surplus": 2703}, "embed": {"strength_base": 36, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "寻踪觅宝·惊风袖 (破防 破招) 12300": {"id": 96078, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "surplus": 2681}, "embed": {"physical_attack_power_base": 72, "physical_overcome_base": 161}, "gains": [], "special_enchant": 22166, "set_id": "191815", "set_attr": {}, "set_gain": {"4": [1194]}}, "濯心·冲霄护手 (会心 破招) 12300": {"id": 94242, "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": {"id": 90641, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "项昌袖 (会心 无双) 12300": {"id": 90605, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_critical_strike_base": 3017, "strain_base": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "曲郦护手 (破防 破招) 12300": {"id": 90569, "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": null, "set_attr": {}, "set_gain": {}}, "羡双护手 (加速 无双) 12300": {"id": 90533, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "忆敬护手 (破防 无双) 12300": {"id": 90401, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "physical_overcome_base": 3017, "strain_base": 2681}, "embed": {"strain_base": 161, "strength_base": 36}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "垣翰袖 (破招 无双) 12300": {"id": 90365, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "surplus": 3017, "strain_base": 2681}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "重关袖 (加速 破招) 12300": {"id": 90329, "school": "通用", "kind": "力道", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 601, "physical_attack_power_base": 975, "haste_base": 3017, "surplus": 2681}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (会心 会效 无双) 12100": {"id": 94550, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "physical_critical_strike_base": 3132, "physical_critical_power_base": 1649, "strain_base": 1814}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}, "外功无封护臂 (破防 破招) 12100": {"id": 94549, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2140, "surplus": 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": {"id": 94548, "school": "精简", "kind": "外功", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2509, "strain_base": 5853}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": 22166, "set_id": null, "set_attr": {}, "set_gain": {}}}
|
qt/components/bonuses.py
CHANGED
@@ -60,9 +60,11 @@ class TeamGainsWidget(QWidget):
|
|
60 |
tab_layout.addWidget(self.team_gains["乘龙箭"]["rate"], 2, 0)
|
61 |
|
62 |
self.team_gains["号令三军"] = {
|
63 |
-
"stack": SpinWithLabel("号令三军", "层数", maximum=48)
|
|
|
64 |
}
|
65 |
tab_layout.addWidget(self.team_gains["号令三军"]["stack"], 3, 0)
|
|
|
66 |
|
67 |
self.team_gains["激雷"] = {
|
68 |
"rate": SpinWithLabel("激雷", "覆盖(%)", maximum=100)
|
|
|
60 |
tab_layout.addWidget(self.team_gains["乘龙箭"]["rate"], 2, 0)
|
61 |
|
62 |
self.team_gains["号令三军"] = {
|
63 |
+
"stack": SpinWithLabel("号令三军", "层数", maximum=48),
|
64 |
+
"rate": SpinWithLabel("号令三军", "覆盖(%)", maximum=100)
|
65 |
}
|
66 |
tab_layout.addWidget(self.team_gains["号令三军"]["stack"], 3, 0)
|
67 |
+
tab_layout.addWidget(self.team_gains["号令三军"]["rate"], 3, 1)
|
68 |
|
69 |
self.team_gains["激雷"] = {
|
70 |
"rate": SpinWithLabel("激雷", "覆盖(%)", maximum=100)
|
qt/components/config.py
CHANGED
@@ -12,11 +12,11 @@ class ConfigWidget(QWidget):
|
|
12 |
bottom_layout = QHBoxLayout()
|
13 |
layout.addLayout(bottom_layout)
|
14 |
|
15 |
-
self.config_select = ComboWithLabel("
|
16 |
top_layout.addWidget(self.config_select, 1)
|
17 |
-
self.load_config = QPushButton("
|
18 |
bottom_layout.addWidget(self.load_config, 1)
|
19 |
-
self.config_name = TextWithLabel("
|
20 |
top_layout.addWidget(self.config_name, 1)
|
21 |
-
self.save_config = QPushButton("
|
22 |
bottom_layout.addWidget(self.save_config, 1)
|
|
|
12 |
bottom_layout = QHBoxLayout()
|
13 |
layout.addLayout(bottom_layout)
|
14 |
|
15 |
+
self.config_select = ComboWithLabel("选择预设方案")
|
16 |
top_layout.addWidget(self.config_select, 1)
|
17 |
+
self.load_config = QPushButton("加载预设方案")
|
18 |
bottom_layout.addWidget(self.load_config, 1)
|
19 |
+
self.config_name = TextWithLabel("设置预设方案")
|
20 |
top_layout.addWidget(self.config_name, 1)
|
21 |
+
self.save_config = QPushButton("保存预设方案")
|
22 |
bottom_layout.addWidget(self.save_config, 1)
|
qt/components/equipments.py
CHANGED
@@ -14,6 +14,7 @@ class EquipmentWidget(QWidget):
|
|
14 |
layout = QVBoxLayout(self)
|
15 |
|
16 |
self.equipment_json = json.load(open(os.path.join(EQUIPMENTS_DIR, self.position), encoding="utf-8"))
|
|
|
17 |
self.enchant_json = json.load(open(os.path.join(ENCHANTS_DIR, self.position), encoding="utf-8"))
|
18 |
self.equipment = ComboWithLabel("装备")
|
19 |
layout.addWidget(self.equipment)
|
|
|
14 |
layout = QVBoxLayout(self)
|
15 |
|
16 |
self.equipment_json = json.load(open(os.path.join(EQUIPMENTS_DIR, self.position), encoding="utf-8"))
|
17 |
+
self.equipment_mapping = {v['id']: k for k, v in self.equipment_json.items()}
|
18 |
self.enchant_json = json.load(open(os.path.join(ENCHANTS_DIR, self.position), encoding="utf-8"))
|
19 |
self.equipment = ComboWithLabel("装备")
|
20 |
layout.addWidget(self.equipment)
|
qt/constant.py
CHANGED
@@ -50,7 +50,7 @@ EMBED_POSITIONS = {
|
|
50 |
"primary_weapon": 3,
|
51 |
"secondary_weapon": 3
|
52 |
}
|
53 |
-
SPECIAL_ENCHANT_POSITIONS = ["hat", "jacket"]
|
54 |
""" Attrs """
|
55 |
ATTR_TYPE_MAP = {
|
56 |
"atMeleeWeaponDamageBase": "weapon_damage_base",
|
|
|
50 |
"primary_weapon": 3,
|
51 |
"secondary_weapon": 3
|
52 |
}
|
53 |
+
SPECIAL_ENCHANT_POSITIONS = ["hat", "jacket", "belt", "wrist", "shoes"]
|
54 |
""" Attrs """
|
55 |
ATTR_TYPE_MAP = {
|
56 |
"atMeleeWeaponDamageBase": "weapon_damage_base",
|
qt/scripts/dashboard.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from
|
2 |
|
3 |
from qt.components.dashboard import DashboardWidget
|
4 |
from qt.constant import ATTR_TYPE_TRANSLATE
|
@@ -6,41 +6,40 @@ from qt.scripts.bonuses import Bonuses
|
|
6 |
from qt.scripts.consumables import Consumables
|
7 |
from qt.scripts.top import Parser
|
8 |
from qt.scripts.equipments import Equipments
|
9 |
-
# from qt.scripts.consumables import Consumables
|
10 |
-
# from qt.scripts.bonuses import Bonuses
|
11 |
from qt.scripts.recipes import Recipes
|
12 |
from qt.scripts.talents import Talents
|
13 |
-
from utils.analyzer import analyze_details
|
14 |
|
15 |
|
16 |
-
def summary_content(summary, total_damage):
|
17 |
content = []
|
18 |
-
for skill in sorted(summary, key=lambda x: summary[x]
|
19 |
detail = summary[skill]
|
20 |
-
critical = round(detail
|
21 |
-
critical_rate = round(detail
|
22 |
-
hit = round(detail
|
23 |
hit_rate = round(100 - critical_rate, 2)
|
24 |
-
damage = round(detail
|
25 |
damage_rate = round(damage / total_damage * 100, 2)
|
26 |
content.append(
|
27 |
-
[f"{skill}/{detail
|
28 |
f"{hit}/{hit_rate}%", f"{critical}/{critical_rate}%", f"{damage}/{damage_rate}%"]
|
29 |
)
|
30 |
return content
|
31 |
|
32 |
|
33 |
-
def detail_content(detail):
|
34 |
damage_content = [
|
35 |
-
["命中伤害", f"{detail
|
36 |
-
["会心伤害", f"{detail
|
37 |
-
["期望伤害", f"{round(detail
|
38 |
-
["会心", f"{round(detail
|
39 |
-
["
|
|
|
40 |
]
|
41 |
gradient_content = [
|
42 |
-
[ATTR_TYPE_TRANSLATE[k], f"{round(v / detail
|
43 |
-
for k, v in detail
|
44 |
]
|
45 |
|
46 |
return damage_content, gradient_content
|
@@ -79,26 +78,26 @@ def dashboard_script(parser: Parser,
|
|
79 |
gain.add(attribute, school.skills, school.buffs)
|
80 |
|
81 |
dashboard_widget.final_attribute.set_content(school.attr_content(attribute))
|
|
|
82 |
|
83 |
-
total_damage, total_gradient, details, summary = analyze_details(record, duration, attribute, school)
|
84 |
for gain in gains:
|
85 |
gain.sub(attribute, school.skills, school.buffs)
|
86 |
|
87 |
-
dashboard_widget.dps.set_text(str(round(
|
88 |
|
89 |
dashboard_widget.gradients.set_content(
|
90 |
-
[[ATTR_TYPE_TRANSLATE[k], f"{round(v, 2)}%"]
|
|
|
91 |
)
|
92 |
|
93 |
dashboard_widget.detail_widget.details = details
|
94 |
set_skills()
|
95 |
|
96 |
-
dashboard_widget.summary.set_content(summary_content(summary,
|
97 |
|
98 |
dashboard_widget.button.clicked.connect(formulate)
|
99 |
|
100 |
def set_skills():
|
101 |
-
set_detail(None)
|
102 |
detail_widget = dashboard_widget.detail_widget
|
103 |
skill = detail_widget.skill_combo.combo_box.currentText()
|
104 |
skill_choices = list(detail_widget.details)
|
@@ -107,9 +106,9 @@ def dashboard_script(parser: Parser,
|
|
107 |
else:
|
108 |
default_index = -1
|
109 |
detail_widget.skill_combo.set_items(skill_choices, default_index=default_index)
|
|
|
110 |
|
111 |
def set_status(_):
|
112 |
-
set_detail(None)
|
113 |
detail_widget = dashboard_widget.detail_widget
|
114 |
skill = detail_widget.skill_combo.combo_box.currentText()
|
115 |
status = detail_widget.status_combo.combo_box.currentText()
|
@@ -119,6 +118,7 @@ def dashboard_script(parser: Parser,
|
|
119 |
else:
|
120 |
default_index = -1
|
121 |
detail_widget.status_combo.set_items(status_choices, default_index=default_index)
|
|
|
122 |
|
123 |
dashboard_widget.detail_widget.skill_combo.combo_box.currentTextChanged.connect(set_status)
|
124 |
|
|
|
1 |
+
from typing import Dict
|
2 |
|
3 |
from qt.components.dashboard import DashboardWidget
|
4 |
from qt.constant import ATTR_TYPE_TRANSLATE
|
|
|
6 |
from qt.scripts.consumables import Consumables
|
7 |
from qt.scripts.top import Parser
|
8 |
from qt.scripts.equipments import Equipments
|
|
|
|
|
9 |
from qt.scripts.recipes import Recipes
|
10 |
from qt.scripts.talents import Talents
|
11 |
+
from utils.analyzer import analyze_details, Detail
|
12 |
|
13 |
|
14 |
+
def summary_content(summary: Dict[str, Detail], total_damage):
|
15 |
content = []
|
16 |
+
for skill in sorted(summary, key=lambda x: summary[x].expected_damage, reverse=True):
|
17 |
detail = summary[skill]
|
18 |
+
critical = round(detail.critical_count, 2)
|
19 |
+
critical_rate = round(detail.critical_count / detail.count * 100, 2)
|
20 |
+
hit = round(detail.count - critical, 2)
|
21 |
hit_rate = round(100 - critical_rate, 2)
|
22 |
+
damage = round(detail.expected_damage, 2)
|
23 |
damage_rate = round(damage / total_damage * 100, 2)
|
24 |
content.append(
|
25 |
+
[f"{skill}/{detail.count}",
|
26 |
f"{hit}/{hit_rate}%", f"{critical}/{critical_rate}%", f"{damage}/{damage_rate}%"]
|
27 |
)
|
28 |
return content
|
29 |
|
30 |
|
31 |
+
def detail_content(detail: Detail):
|
32 |
damage_content = [
|
33 |
+
["命中伤害", f"{round(detail.damage)}"],
|
34 |
+
["会心伤害", f"{round(detail.critical_damage)}"],
|
35 |
+
["期望伤害", f"{round(detail.expected_damage)}"],
|
36 |
+
["会心", f"{round(detail.critical_strike * 100, 2)}%"],
|
37 |
+
["实际会心", f"{round(detail.actual_critical_strike * 100, 2)}%"],
|
38 |
+
["数量", f"{detail.count}"]
|
39 |
]
|
40 |
gradient_content = [
|
41 |
+
[ATTR_TYPE_TRANSLATE[k], f"{round(v / detail.expected_damage * 100, 2)}%"]
|
42 |
+
for k, v in detail.gradients.items()
|
43 |
]
|
44 |
|
45 |
return damage_content, gradient_content
|
|
|
78 |
gain.add(attribute, school.skills, school.buffs)
|
79 |
|
80 |
dashboard_widget.final_attribute.set_content(school.attr_content(attribute))
|
81 |
+
total, summary, details = analyze_details(record, duration, attribute, school)
|
82 |
|
|
|
83 |
for gain in gains:
|
84 |
gain.sub(attribute, school.skills, school.buffs)
|
85 |
|
86 |
+
dashboard_widget.dps.set_text(str(round(total.expected_damage / duration)))
|
87 |
|
88 |
dashboard_widget.gradients.set_content(
|
89 |
+
[[ATTR_TYPE_TRANSLATE[k], f"{round(v / total.expected_damage * 100, 2)}%"]
|
90 |
+
for k, v in total.gradients.items()]
|
91 |
)
|
92 |
|
93 |
dashboard_widget.detail_widget.details = details
|
94 |
set_skills()
|
95 |
|
96 |
+
dashboard_widget.summary.set_content(summary_content(summary, total.expected_damage))
|
97 |
|
98 |
dashboard_widget.button.clicked.connect(formulate)
|
99 |
|
100 |
def set_skills():
|
|
|
101 |
detail_widget = dashboard_widget.detail_widget
|
102 |
skill = detail_widget.skill_combo.combo_box.currentText()
|
103 |
skill_choices = list(detail_widget.details)
|
|
|
106 |
else:
|
107 |
default_index = -1
|
108 |
detail_widget.skill_combo.set_items(skill_choices, default_index=default_index)
|
109 |
+
set_status(None)
|
110 |
|
111 |
def set_status(_):
|
|
|
112 |
detail_widget = dashboard_widget.detail_widget
|
113 |
skill = detail_widget.skill_combo.combo_box.currentText()
|
114 |
status = detail_widget.status_combo.combo_box.currentText()
|
|
|
118 |
else:
|
119 |
default_index = -1
|
120 |
detail_widget.status_combo.set_items(status_choices, default_index=default_index)
|
121 |
+
set_detail(None)
|
122 |
|
123 |
dashboard_widget.detail_widget.skill_combo.combo_box.currentTextChanged.connect(set_status)
|
124 |
|
schools/bei_ao_jue/buffs.py
CHANGED
@@ -3,6 +3,13 @@ from general.buffs import GENERAL_BUFFS
|
|
3 |
|
4 |
|
5 |
BUFFS = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
18384: {
|
7 |
"buff_name": "含风",
|
8 |
"gain_attributes": {
|
|
|
3 |
|
4 |
|
5 |
BUFFS = {
|
6 |
+
11378: {
|
7 |
+
"buff_name": "朔气",
|
8 |
+
"gain_attributes": {
|
9 |
+
"physical_critical_strike_gain": 400,
|
10 |
+
"physical_critical_power_gain": 41
|
11 |
+
}
|
12 |
+
},
|
13 |
18384: {
|
14 |
"buff_name": "含风",
|
15 |
"gain_attributes": {
|
schools/bei_ao_jue/gains.py
CHANGED
@@ -1,15 +1,18 @@
|
|
1 |
from base.recipe import damage_addition_recipe
|
2 |
-
from general.gains.equipment import EQUIPMENT_GAINS,
|
3 |
from base.gain import Gain
|
4 |
|
|
|
5 |
GAINS = {
|
6 |
(22035, 1): Gain(),
|
7 |
-
1925:
|
8 |
4290: damage_addition_recipe([16610], 51),
|
9 |
4291: damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 51),
|
10 |
4294: damage_addition_recipe([16610], 51),
|
11 |
4295: damage_addition_recipe([16760, 16382], 51),
|
12 |
2430: Gain(),
|
13 |
1942: Gain(),
|
|
|
|
|
14 |
**EQUIPMENT_GAINS,
|
15 |
}
|
|
|
1 |
from base.recipe import damage_addition_recipe
|
2 |
+
from general.gains.equipment import EQUIPMENT_GAINS, EquipmentGain, CriticalSet
|
3 |
from base.gain import Gain
|
4 |
|
5 |
+
|
6 |
GAINS = {
|
7 |
(22035, 1): Gain(),
|
8 |
+
1925: CriticalSet(11378),
|
9 |
4290: damage_addition_recipe([16610], 51),
|
10 |
4291: damage_addition_recipe([16803, 16802, 16801, 16800, 17043, 19423, 19424, 32859], 51),
|
11 |
4294: damage_addition_recipe([16610], 51),
|
12 |
4295: damage_addition_recipe([16760, 16382], 51),
|
13 |
2430: Gain(),
|
14 |
1942: Gain(),
|
15 |
+
17374: Gain(),
|
16 |
+
17239: Gain(),
|
17 |
**EQUIPMENT_GAINS,
|
18 |
}
|
schools/bei_ao_jue/skills.py
CHANGED
@@ -11,7 +11,7 @@ SKILLS: Dict[int, Skill | dict] = {
|
|
11 |
1048576 * (0.875 - 1),
|
12 |
1048576 * (0.1375 - 1),
|
13 |
1048576 * (0.275 - 1),
|
14 |
-
1048576 * (0.
|
15 |
]
|
16 |
},
|
17 |
16419: {
|
@@ -126,6 +126,66 @@ SKILLS: Dict[int, Skill | dict] = {
|
|
126 |
[104 * 1.3 * 1.2],
|
127 |
"weapon_damage_cof": 1024
|
128 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
16787: {
|
130 |
"skill_class": PhysicalDamage,
|
131 |
"skill_name": "坚壁清野",
|
@@ -311,7 +371,8 @@ SKILLS: Dict[int, Skill | dict] = {
|
|
311 |
"skill_class": Skill,
|
312 |
"skill_name": "背水沉舟",
|
313 |
"bind_skill": 19555,
|
314 |
-
"
|
|
|
315 |
}
|
316 |
}
|
317 |
|
|
|
11 |
1048576 * (0.875 - 1),
|
12 |
1048576 * (0.1375 - 1),
|
13 |
1048576 * (0.275 - 1),
|
14 |
+
1048576 * (0.4032 - 1)
|
15 |
]
|
16 |
},
|
17 |
16419: {
|
|
|
126 |
[104 * 1.3 * 1.2],
|
127 |
"weapon_damage_cof": 1024
|
128 |
},
|
129 |
+
16939: {
|
130 |
+
"skill_class": PhysicalDamage,
|
131 |
+
"skill_name": "起凤式",
|
132 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
133 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
134 |
+
"attack_power_cof": [16 * 1.3 * 1.2] +
|
135 |
+
[(16 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
136 |
+
[96 * 1.3 * 1.2],
|
137 |
+
"weapon_damage_cof": 1024
|
138 |
+
},
|
139 |
+
16940: {
|
140 |
+
"skill_class": PhysicalDamage,
|
141 |
+
"skill_name": "起凤式",
|
142 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
143 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
144 |
+
"attack_power_cof": [20 * 1.3 * 1.2] +
|
145 |
+
[(20 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
146 |
+
[120 * 1.3 * 1.2],
|
147 |
+
"weapon_damage_cof": 1024
|
148 |
+
},
|
149 |
+
16941: {
|
150 |
+
"skill_class": PhysicalDamage,
|
151 |
+
"skill_name": "腾蛟式",
|
152 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
153 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
154 |
+
"attack_power_cof": [16 * 1.3 * 1.2] +
|
155 |
+
[(16 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
156 |
+
[112 * 1.3 * 1.2],
|
157 |
+
"weapon_damage_cof": 1024
|
158 |
+
},
|
159 |
+
16942: {
|
160 |
+
"skill_class": PhysicalDamage,
|
161 |
+
"skill_name": "腾蛟式",
|
162 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
163 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
164 |
+
"attack_power_cof": [20 * 1.3 * 1.2] +
|
165 |
+
[(20 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
166 |
+
[128 * 1.3 * 1.2],
|
167 |
+
"weapon_damage_cof": 1024
|
168 |
+
},
|
169 |
+
16943: {
|
170 |
+
"skill_class": PhysicalDamage,
|
171 |
+
"skill_name": "擒龙式",
|
172 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
173 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
174 |
+
"attack_power_cof": [16 * 1.3 * 1.2] +
|
175 |
+
[(16 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
176 |
+
[112 * 1.3 * 1.2],
|
177 |
+
"weapon_damage_cof": 1024
|
178 |
+
},
|
179 |
+
16944: {
|
180 |
+
"skill_class": PhysicalDamage,
|
181 |
+
"skill_name": "擒龙式",
|
182 |
+
"damage_base": [30, 35, 40, 45, 50, 55, 60, 65, 70, 80],
|
183 |
+
"damage_rand": [5, 5, 5, 5, 5, 10, 10, 10, 10, 10],
|
184 |
+
"attack_power_cof": [20 * 1.3 * 1.2] +
|
185 |
+
[(20 + (i - 1) * 8) * 1.3 * 1.2 for i in range(2, 10)] +
|
186 |
+
[144 * 1.3 * 1.2],
|
187 |
+
"weapon_damage_cof": 1024
|
188 |
+
},
|
189 |
16787: {
|
190 |
"skill_class": PhysicalDamage,
|
191 |
"skill_name": "坚壁清野",
|
|
|
371 |
"skill_class": Skill,
|
372 |
"skill_name": "背水沉舟",
|
373 |
"bind_skill": 19555,
|
374 |
+
"max_stack": 3,
|
375 |
+
"tick": 6
|
376 |
}
|
377 |
}
|
378 |
|
todolist.txt
CHANGED
@@ -1,5 +1,2 @@
|
|
1 |
-
apply critical set as mask
|
2 |
-
apply wind pendant as mask
|
3 |
-
apply water weapon as mask
|
4 |
apply divine as mask
|
5 |
apply some talents as mask
|
|
|
|
|
|
|
|
|
1 |
apply divine as mask
|
2 |
apply some talents as mask
|
utils/analyzer.py
CHANGED
@@ -1,17 +1,45 @@
|
|
|
|
|
|
|
|
|
|
1 |
from base.attribute import Attribute
|
2 |
from base.skill import Skill
|
3 |
from utils.parser import School
|
4 |
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
def filter_status(status, school: School, skill_id):
|
7 |
buffs = []
|
8 |
for buff_id, buff_level, buff_stack in status:
|
9 |
buff = school.buffs[buff_id]
|
|
|
|
|
10 |
buff.buff_level, buff.buff_stack = buff_level, buff_stack
|
11 |
if buff.gain_attributes or skill_id in buff.gain_skills:
|
12 |
buffs.append(buff)
|
13 |
|
14 |
-
return tuple(buffs)
|
15 |
|
16 |
|
17 |
def add_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill):
|
@@ -36,79 +64,74 @@ def sub_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill)
|
|
36 |
buff.sub_current(attribute, skill)
|
37 |
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
def analyze_details(record, duration: int, attribute: Attribute, school: School):
|
|
|
40 |
details = {}
|
41 |
-
|
42 |
-
total_gradients = {attr: 0. for attr in attribute.grad_attrs}
|
43 |
duration *= 1000
|
44 |
|
45 |
for skill, status in record.items():
|
46 |
skill_id, skill_level, skill_stack = skill
|
47 |
skill: Skill = school.skills[skill_id]
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
52 |
for (current_status, snapshot_status), timeline in status.items():
|
53 |
-
|
54 |
-
for timestamp, critical in timeline:
|
55 |
-
if critical:
|
56 |
-
critical_timeline.append(timestamp)
|
57 |
-
else:
|
58 |
-
hit_timeline.append(timestamp)
|
59 |
-
timeline = [t for t in timeline if t[0] < duration]
|
60 |
-
if not timeline:
|
61 |
continue
|
|
|
62 |
|
63 |
current_buffs = filter_status(current_status, school, skill_id)
|
64 |
snapshot_buffs = filter_status(snapshot_status, school, skill_id)
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
def analyze_summary(details):
|
101 |
-
summary = {}
|
102 |
-
for skill, skill_detail in details.items():
|
103 |
-
skill = skill.split("/")[0]
|
104 |
-
if skill not in summary:
|
105 |
-
summary[skill] = {"count": 0, "critical": 0, "damage": 0}
|
106 |
-
for buff, detail in skill_detail.items():
|
107 |
-
summary[skill]["count"] += detail['count']
|
108 |
-
summary[skill]["critical"] += detail['count'] * detail['expected_critical_strike']
|
109 |
-
summary[skill]["damage"] += detail['count'] * detail['expected_damage']
|
110 |
-
|
111 |
-
return summary
|
112 |
|
113 |
|
114 |
def analyze_gradients(skill, attribute):
|
@@ -116,6 +139,6 @@ def analyze_gradients(skill, attribute):
|
|
116 |
for attr, value in attribute.grad_attrs.items():
|
117 |
origin_value = getattr(attribute, attr)
|
118 |
setattr(attribute, attr, origin_value + value)
|
119 |
-
_, _,
|
120 |
setattr(attribute, attr, origin_value)
|
121 |
return results
|
|
|
1 |
+
from dataclasses import dataclass
|
2 |
+
from collections import defaultdict
|
3 |
+
from typing import Dict
|
4 |
+
|
5 |
from base.attribute import Attribute
|
6 |
from base.skill import Skill
|
7 |
from utils.parser import School
|
8 |
|
9 |
|
10 |
+
@dataclass
|
11 |
+
class Detail:
|
12 |
+
damage: int = 0
|
13 |
+
critical_damage: int = 0
|
14 |
+
expected_damage: float = 0.
|
15 |
+
critical_strike: float = 0.
|
16 |
+
|
17 |
+
gradients: Dict[str, float] = None
|
18 |
+
|
19 |
+
critical_count: int = 0
|
20 |
+
count: int = 0
|
21 |
+
|
22 |
+
def __post_init__(self):
|
23 |
+
self.gradients = defaultdict(float)
|
24 |
+
|
25 |
+
@property
|
26 |
+
def actual_critical_strike(self):
|
27 |
+
if self.count:
|
28 |
+
return self.critical_count / self.count
|
29 |
+
return 0
|
30 |
+
|
31 |
+
|
32 |
def filter_status(status, school: School, skill_id):
|
33 |
buffs = []
|
34 |
for buff_id, buff_level, buff_stack in status:
|
35 |
buff = school.buffs[buff_id]
|
36 |
+
if not buff.activate:
|
37 |
+
continue
|
38 |
buff.buff_level, buff.buff_stack = buff_level, buff_stack
|
39 |
if buff.gain_attributes or skill_id in buff.gain_skills:
|
40 |
buffs.append(buff)
|
41 |
|
42 |
+
return tuple(sorted(buffs, key=lambda x: x.buff_id))
|
43 |
|
44 |
|
45 |
def add_buffs(current_buffs, snapshot_buffs, attribute: Attribute, skill: Skill):
|
|
|
64 |
buff.sub_current(attribute, skill)
|
65 |
|
66 |
|
67 |
+
def concat_buffs(current_buffs, snapshot_buffs):
|
68 |
+
buffs = ",".join(buff.display_name for buff in current_buffs)
|
69 |
+
if snapshot_buffs and current_buffs != snapshot_buffs:
|
70 |
+
buffs += f"({','.join(buff.display_name for buff in snapshot_buffs)})"
|
71 |
+
if not buffs:
|
72 |
+
buffs = "~"
|
73 |
+
return buffs
|
74 |
+
|
75 |
+
|
76 |
def analyze_details(record, duration: int, attribute: Attribute, school: School):
|
77 |
+
total = Detail()
|
78 |
details = {}
|
79 |
+
summary = {}
|
|
|
80 |
duration *= 1000
|
81 |
|
82 |
for skill, status in record.items():
|
83 |
skill_id, skill_level, skill_stack = skill
|
84 |
skill: Skill = school.skills[skill_id]
|
85 |
+
if not skill.activate:
|
86 |
+
continue
|
87 |
+
skill.skill_level, skill.skill_stack, skill_name = skill_level, skill_stack, skill.skill_name
|
88 |
+
|
89 |
+
skill_detail = details[skill.display_name] = {}
|
90 |
+
if not (skill_summary := summary.get(skill_name)):
|
91 |
+
skill_summary = summary[skill_name] = Detail()
|
92 |
+
skill_total = skill_detail[""] = Detail()
|
93 |
for (current_status, snapshot_status), timeline in status.items():
|
94 |
+
if not (timeline := [t for t in timeline if t[0] < duration]):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
continue
|
96 |
+
critical_timeline = [t for t in timeline if t[1]]
|
97 |
|
98 |
current_buffs = filter_status(current_status, school, skill_id)
|
99 |
snapshot_buffs = filter_status(snapshot_status, school, skill_id)
|
100 |
+
buffs = concat_buffs(current_buffs, snapshot_buffs)
|
101 |
+
|
102 |
+
if not (detail := skill_detail.get(buffs)):
|
103 |
+
add_buffs(current_buffs, snapshot_buffs, attribute, skill)
|
104 |
+
detail = skill_detail[buffs] = Detail(*skill(attribute))
|
105 |
+
detail.gradients = analyze_gradients(skill, attribute)
|
106 |
+
sub_buffs(current_buffs, snapshot_buffs, attribute, skill)
|
107 |
+
|
108 |
+
detail.critical_count += len(critical_timeline)
|
109 |
+
detail.count += len(timeline)
|
110 |
+
skill_total.critical_count += len(critical_timeline)
|
111 |
+
skill_total.count += len(timeline)
|
112 |
+
|
113 |
+
skill_total.damage += detail.damage * len(timeline)
|
114 |
+
skill_total.critical_damage += detail.critical_damage * len(timeline)
|
115 |
+
skill_total.expected_damage += detail.expected_damage * len(timeline)
|
116 |
+
skill_total.critical_strike += detail.critical_strike * len(timeline)
|
117 |
+
for attr, residual_damage in detail.gradients.items():
|
118 |
+
skill_total.gradients[attr] += residual_damage * len(timeline)
|
119 |
+
|
120 |
+
total.expected_damage += skill_total.expected_damage
|
121 |
+
total.count += skill_total.count
|
122 |
+
skill_summary.expected_damage += skill_total.expected_damage
|
123 |
+
skill_summary.critical_count += skill_total.critical_strike
|
124 |
+
skill_summary.count += skill_total.count
|
125 |
+
|
126 |
+
skill_total.damage /= skill_total.count
|
127 |
+
skill_total.critical_damage /= skill_total.count
|
128 |
+
skill_total.expected_damage /= skill_total.count
|
129 |
+
skill_total.critical_strike /= skill_total.count
|
130 |
+
for attr, residual_damage in skill_total.gradients.items():
|
131 |
+
total.gradients[attr] += residual_damage
|
132 |
+
skill_total.gradients[attr] /= skill_total.count
|
133 |
+
|
134 |
+
return total, summary, details
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
|
137 |
def analyze_gradients(skill, attribute):
|
|
|
139 |
for attr, value in attribute.grad_attrs.items():
|
140 |
origin_value = getattr(attribute, attr)
|
141 |
setattr(attribute, attr, origin_value + value)
|
142 |
+
_, _, results[attr], _ = skill(attribute)
|
143 |
setattr(attribute, attr, origin_value)
|
144 |
return results
|
utils/parser.py
CHANGED
@@ -152,8 +152,9 @@ class Parser:
|
|
152 |
self.end_time.append(int(timestamp))
|
153 |
self.fight_flag = False
|
154 |
|
155 |
-
def parse_buff(self,
|
156 |
-
|
|
|
157 |
if buff_id not in self.school.buffs:
|
158 |
return
|
159 |
if not buff_stack:
|
@@ -161,23 +162,23 @@ class Parser:
|
|
161 |
else:
|
162 |
self.status[(buff_id, buff_level)] = buff_stack
|
163 |
|
164 |
-
def parse_skill(self,
|
165 |
-
|
|
|
166 |
if skill_id not in self.school.skills:
|
167 |
return
|
168 |
-
|
169 |
timestamp = int(timestamp) - self.start_time[-1]
|
170 |
skill_stack = max(1, self.stacks[skill_id])
|
171 |
if self.ticks[skill_id]:
|
172 |
self.ticks[skill_id] -= 1
|
173 |
-
|
174 |
-
|
175 |
|
176 |
skill_tuple = (skill_id, skill_level, skill_stack)
|
177 |
skill = self.school.skills[skill_id]
|
178 |
if bind_skill := skill.bind_skill:
|
179 |
self.stacks[bind_skill] = min(self.stacks[bind_skill] + 1, skill.max_stack)
|
180 |
-
self.ticks[bind_skill] = skill.tick
|
181 |
self.snapshot[bind_skill] = self.status.copy()
|
182 |
else:
|
183 |
if skill_tuple not in self.current_record:
|
@@ -200,9 +201,9 @@ class Parser:
|
|
200 |
if row[4] == "5":
|
201 |
self.parse_time(parse(row[-1]), row[3])
|
202 |
elif row[4] == "13":
|
203 |
-
self.parse_buff(
|
204 |
elif row[4] == "21" and self.fight_flag:
|
205 |
-
self.parse_skill(
|
206 |
|
207 |
self.record_index = {
|
208 |
f"{i + 1}:{round((end_time - self.start_time[i]) / 1000, 3)}": i for i, end_time in enumerate(self.end_time)
|
|
|
152 |
self.end_time.append(int(timestamp))
|
153 |
self.fight_flag = False
|
154 |
|
155 |
+
def parse_buff(self, row):
|
156 |
+
detail = row.split(",")
|
157 |
+
buff_id, buff_stack, buff_level = int(detail[4]), int(detail[5]), int(detail[8])
|
158 |
if buff_id not in self.school.buffs:
|
159 |
return
|
160 |
if not buff_stack:
|
|
|
162 |
else:
|
163 |
self.status[(buff_id, buff_level)] = buff_stack
|
164 |
|
165 |
+
def parse_skill(self, row, timestamp):
|
166 |
+
detail = row.split(",")
|
167 |
+
skill_id, skill_level, critical = int(detail[4]), int(detail[5]), detail[6] == "true"
|
168 |
if skill_id not in self.school.skills:
|
169 |
return
|
|
|
170 |
timestamp = int(timestamp) - self.start_time[-1]
|
171 |
skill_stack = max(1, self.stacks[skill_id])
|
172 |
if self.ticks[skill_id]:
|
173 |
self.ticks[skill_id] -= 1
|
174 |
+
if not self.ticks[skill_id]:
|
175 |
+
self.stacks[skill_id] = 0
|
176 |
|
177 |
skill_tuple = (skill_id, skill_level, skill_stack)
|
178 |
skill = self.school.skills[skill_id]
|
179 |
if bind_skill := skill.bind_skill:
|
180 |
self.stacks[bind_skill] = min(self.stacks[bind_skill] + 1, skill.max_stack)
|
181 |
+
self.ticks[bind_skill] = skill.tick if not self.ticks[bind_skill] else skill.tick - 1
|
182 |
self.snapshot[bind_skill] = self.status.copy()
|
183 |
else:
|
184 |
if skill_tuple not in self.current_record:
|
|
|
201 |
if row[4] == "5":
|
202 |
self.parse_time(parse(row[-1]), row[3])
|
203 |
elif row[4] == "13":
|
204 |
+
self.parse_buff(row[-1])
|
205 |
elif row[4] == "21" and self.fight_flag:
|
206 |
+
self.parse_skill(row[-1], row[3])
|
207 |
|
208 |
self.record_index = {
|
209 |
f"{i + 1}:{round((end_time - self.start_time[i]) / 1000, 3)}": i for i, end_time in enumerate(self.end_time)
|