AngoHF commited on
Commit
3ed500d
ยท
1 Parent(s): 88de31c

04.13 commit

Browse files
base/attribute.py CHANGED
@@ -13,6 +13,10 @@ class Target:
13
  physical_vulnerable: float = 0
14
  magical_vulnerable: float = 0
15
 
 
 
 
 
16
  @property
17
  def shield_base(self):
18
  raise NotImplementedError
 
13
  physical_vulnerable: float = 0
14
  magical_vulnerable: float = 0
15
 
16
+ @property
17
+ def level_shield_base(self):
18
+ return SHIELD_BASE_MAP[self.target_level]
19
+
20
  @property
21
  def shield_base(self):
22
  raise NotImplementedError
base/skill.py CHANGED
@@ -123,7 +123,7 @@ class Skill:
123
 
124
  damage = damage_addition_result(damage, attribute.damage_addition + self.skill_damage_addition)
125
  damage = overcome_result(damage, attribute.overcome,
126
- attribute.shield_base,
127
  attribute.shield_gain + self.skill_shield_gain,
128
  attribute.shield_ignore,
129
  attribute.shield_constant)
 
123
 
124
  damage = damage_addition_result(damage, attribute.damage_addition + self.skill_damage_addition)
125
  damage = overcome_result(damage, attribute.overcome,
126
+ attribute.level_shield_base + attribute.shield_base,
127
  attribute.shield_gain + self.skill_shield_gain,
128
  attribute.shield_ignore,
129
  attribute.shield_constant)
general/gains/equipment.py CHANGED
@@ -142,7 +142,7 @@ class BeltSpecialEnchant(Gain):
142
 
143
  def __init__(self):
144
  self.all_damage_addition = sum(k * v for k, v in self.damage_addition.items()) * self.duration / self.cooldown
145
- super().__init__(f"{self.all_damage_addition} ไผคๅฎณๅขžๅŠ ")
146
 
147
  def add(self, other):
148
  if isinstance(other, Attribute):
 
142
 
143
  def __init__(self):
144
  self.all_damage_addition = sum(k * v for k, v in self.damage_addition.items()) * self.duration / self.cooldown
145
+ super().__init__(f"{round(self.all_damage_addition, 2)} ไผคๅฎณๅขžๅŠ ")
146
 
147
  def add(self, other):
148
  if isinstance(other, Attribute):
get_assets.py CHANGED
@@ -107,6 +107,8 @@ def get_equips_list(position):
107
  result = {get_equip_name(row): get_equip_detail(row) for row in reversed(equips) if
108
  row['SubType'] != "0" or row['DetailType'] != "9"}
109
  result = {k: v for k, v in result.items() if v['level'] >= equip_min_level or v['max_strength'] == 8}
 
 
110
  return result
111
 
112
 
 
107
  result = {get_equip_name(row): get_equip_detail(row) for row in reversed(equips) if
108
  row['SubType'] != "0" or row['DetailType'] != "9"}
109
  result = {k: v for k, v in result.items() if v['level'] >= equip_min_level or v['max_strength'] == 8}
110
+ result = {k: v for k, v in result.items() if v['kind'] in KINDS}
111
+ result = {k: v for k, v in result.items() if v['school'] in SCHOOLS}
112
  return result
113
 
114
 
logs.jcl DELETED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/belt CHANGED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/bottoms CHANGED
@@ -1 +1 @@
1
- {"้ฃŽๆผฉ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 1928, "strain_base": 2203}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "191984", "set_attr": {"2": {"surplus": 1363}, "4": {"haste_base": 1363}}, "set_gain": {}}, "้ฃŽ่ท่ฃค () 14150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191983", "set_attr": {"2": {"haste_base": 1363}}, "set_gain": {}}, "้ฃŽๅœ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191982", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "้ฃŽ็ƒˆ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 988, "physical_attack_power_base": 1603, "physical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191981", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "้ฃŽ็ปซ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 988, "magical_attack_power_base": 1923, "all_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191980", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "้ฃŽ่ฝป่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 988, "magical_attack_power_base": 1923, "magical_critical_strike_base": 4958, "strain_base": 4407}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "191979", "set_attr": {"2": {"all_critical_strike_base": 1363}, "4": {"strain_base": 1363}}, "set_gain": {}}, "ๆณ‰็’จ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1901, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅพฎ่ฃค () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅนฝ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๆฝบ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_critical_strike_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰้บ“่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "all_critical_strike_base": 4888, "surplus": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅˆ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_critical_strike_base": 4888, "surplus": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅน้œœไธ‹่ฃณ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 3258, "surplus": 815}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆž—่ฐˆไธ‹่ฃณ () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยท้œ„ๆœˆไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅฌ้’Ÿไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "strain_base": 4344}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ–ญๆ„ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ„ๆ‚ ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "strain_base": 4344}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็‡•่ฝป่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2917, "physical_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹‚ๅฃฐ่ฃค (ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 4133, "strain_base": 9096}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ็žณ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3501, "all_critical_strike_base": 3530, "strain_base": 8689}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๆˆท่ฃค (ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4959, "strain_base": 9096}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ่ข‚่ฃค (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "physical_overcome_base": 3801, "physical_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ŸถไบŽ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "magical_overcome_base": 3801, "all_critical_strike_base": 4344, "strain_base": 2987}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅซๆ™จ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus": 3801, "physical_overcome_base": 4616, "strain_base": 2715}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‘่กŒ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3525, "surplus": 5702, "physical_critical_strike_base": 5431}, "embed": {"physical_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆปกๆญŒ่ฃค (็ ด้˜ฒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4133, "physical_overcome_base": 9639}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ—ไพ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๏ฟฝ๏ฟฝ๏ฟฝ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus": 3801, "magical_overcome_base": 4616, "strain_base": 2715}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆผซๆณ ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4230, "surplus": 5702, "all_critical_strike_base": 5431}, "embed": {"all_critical_power_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้›…้‡‡่ฃค (็ ด้˜ฒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4959, "magical_overcome_base": 9639}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒ‰ๆช€่ฃค (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 2715, "strain_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ€่ท่ฃค (ๅŠ ้€Ÿ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "haste_base": 4888}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ธ้›่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ้ธฆ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "physical_overcome_base": 4888, "surplus": 4344}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฃ‘ไบ‘่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’็ปก่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "magical_overcome_base": 4888, "surplus": 4344}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๅณฐ่ฃค (ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 3258}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ้œฒ่ฃค (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_critical_strike_base": 4888}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŽฃ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡›่กŒ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 974, "physical_attack_power_base": 1580, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ€้ข่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰ฌ่‹ฑ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 974, "magical_attack_power_base": 1896, "haste_base": 4888, "strain_base": 4344}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "surplus": 3692, "physical_overcome_base": 4484, "strain_base": 2637}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3424, "physical_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 4014, "strain_base": 9363}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "surplus": 3692, "magical_overcome_base": 4484, "strain_base": 2637}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4109, "all_critical_strike_base": 5275, "strain_base": 5539}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4817, "strain_base": 9363}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้˜ฒๅพกๆ— ๅฐ่ฃค () 12800": {"school": "็ฒพ็ฎ€", "kind": "้˜ฒๅพก", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒป็–—ๆ— ๅฐ่ฃค () 12800": {"school": "็ฒพ็ฎ€", "kind": "ๆฒป็–—", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "physical_overcome_base": 3488, "physical_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"physical_critical_power_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3234, "surplus": 5107, "strain_base": 5107}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3792, "physical_overcome_base": 8845}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "magical_overcome_base": 3488, "all_critical_strike_base": 3986, "strain_base": 2741}, "embed": {"all_critical_power_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3881, "surplus": 5107, "strain_base": 5107}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4551, "magical_overcome_base": 8845}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้›ช่—่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 1717, "strain_base": 1962}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "190858", "set_attr": {"2": {"surplus": 1215}, "4": {"haste_base": 1215}}, "set_gain": {}}, "้›ช่ž่ฃค () 12600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190857", "set_attr": {"2": {"haste_base": 1215}}, "set_gain": {}}, "้›ชๆผซ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190856", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "้›ช่ˆž่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 880, "physical_attack_power_base": 1427, "physical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190855", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "้›ชๆด่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 880, "magical_attack_power_base": 1713, "all_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190854", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "้›ชๆปก่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 880, "magical_attack_power_base": 1713, "magical_critical_strike_base": 4415, "strain_base": 3924}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190853", "set_attr": {"2": {"all_critical_strike_base": 1215}, "4": {"strain_base": 1215}}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยทๆ˜Ÿๅท่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยทๅ›ขๆ พ่ฃค () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท่ง’ๅฏ’่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท็ พๆผ ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท็ฆปๅฃฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท้Ÿณไนฆ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆ€œ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1696, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ฟ ่ฃค () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆœˆ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–้™่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_critical_strike_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ƒŸ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "all_critical_strike_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๅฏ‚่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_critical_strike_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทไธœไปคไธ‹่ฃณ (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2908, "surplus": 727}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅคงไนไธ‹่ฃณ () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅคฉ้…ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆขฆ่Šฑไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "strain_base": 3877}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅƒไธ–ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆธๆต“ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "strain_base": 3877}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธๆš‡่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "physical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ปฃๆ€่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "magical_overcome_base": 4604, "strain_base": 5089}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ›ๆ™ฏ่ฃค (็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3688, "surplus": 8118}, "embed": {"physical_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้”ฆๅ ‚่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 3038, "surplus": 5089, "physical_overcome_base": 4604}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€ๆŸ”่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2604, "physical_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ดปๆฑ ่ฃค (็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 4426, "surplus": 8118}, "embed": {"all_critical_strike_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™คๆญŒ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3645, "surplus": 5089, "magical_overcome_base": 4604}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰งๅพ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3124, "all_critical_strike_base": 3150, "strain_base": 7755}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜ๅฑฟ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 2423, "strain_base": 1212}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฅฎ้˜”่ฃค (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "haste_base": 4362}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŸ“่พž่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธฉๅˆƒ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "physical_overcome_base": 4362, "surplus": 3877}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒๆธก่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๅŽ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "magical_overcome_base": 4362, "surplus": 3877}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้š็Š€่ฃค (ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2908}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฅš้ปŽ่ฃค (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_critical_strike_base": 4362}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ•†้‡Ž่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่กฟ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 869, "physical_attack_power_base": 1410, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆคดๅพฎ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ๆณ“่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 869, "magical_attack_power_base": 1692, "haste_base": 4362, "strain_base": 3877}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3374, "surplus": 2826, "physical_overcome_base": 3062, "physical_critical_strike_base": 3062}, "embed": {"physical_critical_power_base": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3058, "physical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3585, "physical_critical_strike_base": 8361}, "embed": {"physical_critical_power_base": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4049, "surplus": 2826, "magical_overcome_base": 3062, "all_critical_strike_base": 3062}, "embed": {"all_critical_power_base": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3669, "magical_overcome_base": 4710, "strain_base": 4946}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4302, "all_critical_strike_base": 8361}, "embed": {"all_critical_power_base": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ญ„่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11800, "max_strength": 6, "base": {}, "magic": {"surplus": 1837, "strain_base": 919}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™šๅฃถ่ฃค (ๅŠ ้€Ÿ) 11800": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 824, "haste_base": 4134}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ชจ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11800, "max_strength": 6, "base": {}, "magic": {"agility_base": 824, "physical_attack_power_base": 1337, "physical_critical_strike_base": 4134, "strain_base": 3675}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 824, "physical_attack_power_base": 1337, "physical_critical_strike_base": 4134, "strain_base": 3675}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็ฉ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 824, "magical_attack_power_base": 1604, "all_critical_strike_base": 4134, "strain_base": 3675}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็’œ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 824, "magical_attack_power_base": 1604, "magical_critical_strike_base": 4134, "strain_base": 3675}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็…งๅคœ่ฃคยท่ทƒ () 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒงๆตช่ฃคยท็ปš () 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฟๆฒ™่ฃคยท็’จ () 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยท็ด ๆ„ฟ (็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11500, "max_strength": 6, "base": {}, "magic": {"surplus": 2238, "strain_base": 1119}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยทๆ‰ฟไน‰ () 11500": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 803}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยทๅพ—ๅฟ— (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11500, "max_strength": 6, "base": {}, "magic": {"agility_base": 803, "physical_attack_power_base": 1303, "physical_overcome_base": 4029, "strain_base": 3581}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยทๆ–—ๆณ• (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 803, "physical_attack_power_base": 1303, "physical_overcome_base": 4029, "strain_base": 3581}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยทๆ–ญๅฟต (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spunk_base": 803, "magical_attack_power_base": 1563, "magical_overcome_base": 4029, "strain_base": 3581}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยท้š”ๅฟƒ (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 803, "magical_attack_power_base": 1563, "magical_overcome_base": 4029, "strain_base": 3581}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2906, "surplus": 3134, "physical_overcome_base": 3805, "strain_base": 2238}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2906, "physical_critical_strike_base": 4477, "strain_base": 4701}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3407, "strain_base": 7946}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3487, "surplus": 3134, "magical_overcome_base": 3805, "strain_base": 2238}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 3487, "all_critical_strike_base": 4477, "strain_base": 4701}, "embed": {"all_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่ฃค (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 4088, "strain_base": 7946}, "embed": {"all_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎๅพฝ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11300, "max_strength": 6, "base": {}, "magic": {"surplus": 1540, "strain_base": 1760}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "190555", "set_attr": {"2": {"surplus": 1090}, "4": {"haste_base": 1090}}, "set_gain": {}}, "ๆšฎๅฎ›่ฃค () 11300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 789}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190554", "set_attr": {"2": {"haste_base": 1090}}, "set_gain": {}}, "ๆšฎๆธ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11300, "max_strength": 6, "base": {}, "magic": {"agility_base": 789, "physical_attack_power_base": 1280, "physical_critical_strike_base": 3959, "strain_base": 3519}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190553", "set_attr": {"2": {"all_critical_strike_base": 1090}, "4": {"strain_base": 1090}}, "set_gain": {}}, "ๆšฎ็ฅ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 789, "physical_attack_power_base": 1280, "physical_critical_strike_base": 3959, "strain_base": 3519}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190552", "set_attr": {"2": {"all_critical_strike_base": 1090}, "4": {"strain_base": 1090}}, "set_gain": {}}, "ๆšฎ็›ˆ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 789, "magical_attack_power_base": 1536, "all_critical_strike_base": 3959, "strain_base": 3519}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190551", "set_attr": {"2": {"all_critical_strike_base": 1090}, "4": {"strain_base": 1090}}, "set_gain": {}}, "ๆšฎๆผ ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 789, "magical_attack_power_base": 1536, "magical_critical_strike_base": 3959, "strain_base": 3519}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190550", "set_attr": {"2": {"all_critical_strike_base": 1090}, "4": {"strain_base": 1090}}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยท้›จ่†ไธ‹่ฃณ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 2604, "surplus": 651}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ—‹ๆตŽไธ‹่ฃณ () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ˜ฅๅธ†ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "strain_base": 3472}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡ถ็‚ฝไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "strain_base": 3472}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡็ซ ไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1516, "magical_overcome_base": 3907, "strain_base": 3472}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆƒŠๆ†ฉไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1516, "magical_overcome_base": 3907, "strain_base": 3472}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ณž่ฟน่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "physical_overcome_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ฒ็’ง่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2798, "magical_overcome_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็†™้›่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "surplus": 2279, "strain_base": 6945}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœ‰้š…่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2720, "surplus": 4124, "physical_overcome_base": 4124}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ผŽ้’ง่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "physical_critical_strike_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้้˜ป่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2798, "surplus": 2279, "strain_base": 6945}, "embed": {"magical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑŸๆงŽ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 3264, "surplus": 4124, "magical_overcome_base": 4124}, "embed": {"all_critical_strike_base": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅญคๆฒš่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2798, "all_critical_strike_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ็ต่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 2170, "strain_base": 1085}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅถ่ฃค (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "haste_base": 3907}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’ๆฑŸ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็™ฝ่ฑ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1516, "magical_overcome_base": 3907, "surplus": 3472}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€่ฑ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1516, "magical_overcome_base": 3907, "surplus": 3472}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€€ๅ—ไธ‹่ฃณ (ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 2604}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…่•Šไธ‹่ฃณ (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_critical_strike_base": 3907}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟŸๅคœไธ‹่ฃณ (ๅŠ ้€Ÿ ๏ฟฝ๏ฟฝ๏ฟฝๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1263, "haste_base": 3907, "strain_base": 3472}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑไธ‹่ฃณ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "haste_base": 3907, "strain_base": 3472}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡้’ไธ‹่ฃณ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1516, "haste_base": 3907, "strain_base": 3472}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™“่กไธ‹่ฃณ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1516, "haste_base": 3907, "strain_base": 3472}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆณ›่ฃณ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1519, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜้˜‘่ฃณ () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆตฎ่ฃณ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 779, "physical_attack_power_base": 1263, "physical_critical_strike_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟ่ฃณ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_critical_strike_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๅด–่ฃณ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 779, "magical_attack_power_base": 1516, "all_critical_strike_base": 3907, "surplus": 3472}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆฒ…่ฃณ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 779, "magical_attack_power_base": 1516, "magical_critical_strike_base": 3907, "surplus": 3472}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆŠฑ่’่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1499, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๅนๅฏ’่ฃค () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยท้ฃŽๅทก่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆ‰ฟๅนณ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆจ—้—ฒ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๅนฝๅน่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ–‡ๅคฎ่ฃค (ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strain_base": 2569}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠณไผŠ่ฃค () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน…ๅฟต่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่—ๅณฆ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฐจๅณฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฒณๆพœ่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1713, "strain_base": 856}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ‚่ฐท่ฃค (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_critical_strike_base": 3854}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๅฒฑ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…่Šณ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "all_critical_strike_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‰ชๆก่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_critical_strike_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตŽๅปถ่ฃค (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1713, "strain_base": 1499}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่พž่ฃค (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "haste_base": 3854}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅŒ—้‚ฑ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่Šฑ้œญ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€”ๅ—่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ปๅฏ‚่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 2141, "strain_base": 1071}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฃ ็–‘่ฃค () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธŠๅฟฑ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "strain_base": 3426}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "strain_base": 3426}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบญๆพœ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "strain_base": 3426}, "embed": {"magical_attack_power_base": 86, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…ไบ‘่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "strain_base": 3426}, "embed": {"magical_attack_power_base": 86, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†้กบ่ฃณ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1713, "strain_base": 1499}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟ่ฃณ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "haste_base": 3854}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ่ฃณ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "strain_base": 3426}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌ่ฃณ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "strain_base": 3426}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆƒœ่ฃณ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "all_critical_strike_base": 3854, "strain_base": 3426}, "embed": {"surplus": 161, "all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ‰่ฃณ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_critical_strike_base": 3854, "strain_base": 3426}, "embed": {"surplus": 161, "magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡ป้•—่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 2355, "strain_base": 856}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅˆซ่ฃค () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็›ˆ็ป่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ้˜”่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ“’้›จ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "magical_overcome_base": 3854, "surplus": 3426}, "embed": {"magical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ ้›ท่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1499, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บต็›ฎ่ฃค (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_critical_strike_base": 3854}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฝ‹้˜ณ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸ็่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 768, "magical_attack_power_base": 1495, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพท่ฅ„่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 768, "magical_attack_power_base": 1495, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
 
1
+ {"้ฃŽ็ƒˆ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 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_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": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 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": {}}, "่™š้Ÿณ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 824, "physical_attack_power_base": 1337, "physical_critical_strike_base": 4134, "strain_base": 3675}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้›ชๅญฃยทๆ–—ๆณ• (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 803, "physical_attack_power_base": 1303, "physical_overcome_base": 4029, "strain_base": 3581}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2906, "surplus": 3134, "physical_overcome_base": 3805, "strain_base": 2238}, "embed": {"physical_critical_strike_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2906, "physical_critical_strike_base": 4477, "strain_base": 4701}, "embed": {"physical_critical_power_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่ฃค (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 3407, "strain_base": 7946}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ็ฅ่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 789, "physical_attack_power_base": 1280, "physical_critical_strike_base": 3959, "strain_base": 3519}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": "190552", "set_attr": {"2": {"all_critical_strike_base": 1090}, "4": {"strain_base": 1090}}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡ถ็‚ฝไธ‹่ฃณ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "strain_base": 3472}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ณž่ฟน่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "physical_overcome_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็†™้›่ฃค (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "surplus": 2279, "strain_base": 6945}, "embed": {"physical_overcome_base": 161, "strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœ‰้š…่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2720, "surplus": 4124, "physical_overcome_base": 4124}, "embed": {"physical_critical_strike_base": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ผŽ้’ง่ฃค (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 2332, "physical_critical_strike_base": 2387, "strain_base": 6945}, "embed": {"surplus": 161, "physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_overcome_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑไธ‹่ฃณ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "haste_base": 3907, "strain_base": 3472}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟ่ฃณ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 779, "physical_attack_power_base": 1263, "physical_critical_strike_base": 3907, "surplus": 3472}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆ‰ฟๅนณ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œ่ฃค (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒ่ฃค (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "strain_base": 3426}, "embed": {"physical_attack_power_base": 72, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌ่ฃณ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_critical_strike_base": 3854, "strain_base": 3426}, "embed": {"surplus": 161, "physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐ่ฃค (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "physical_overcome_base": 3854, "surplus": 3426}, "embed": {"physical_overcome_base": 161, "surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณ่ฃค (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 768, "physical_attack_power_base": 1246, "haste_base": 3854, "surplus": 3426}, "embed": {"surplus": 161, "physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
qt/assets/equipments/hat CHANGED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/jacket CHANGED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/necklace CHANGED
@@ -1 +1 @@
1
- {"่ฟœๅฝฑ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 14150, "max_strength": 6, "base": {}, "magic": {"haste_base": 1102, "strain_base": 964}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆป้“พ () 14150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 14150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 14150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_overcome_base": 2479, "surplus": 2203}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 14150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–้“พ (็ ด้˜ฒ ็ ดๆ‹›) 14150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_overcome_base": 2479, "surplus": 2203}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒ‰ๆช€้“พ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1629, "strain_base": 407}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ€่ท้“พ (ๅŠ ้€Ÿ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ธ้›้“พ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ้ธฆ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฃ‘ไบ‘้“พ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’็ปก้“พ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๅณฐ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1086, "strain_base": 950}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ้œฒ้“พ (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŽฃ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡›่กŒ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ€้ข้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰ฌ่‹ฑ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "surplus": 1451, "physical_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "strain_base": 4681}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "surplus": 1451, "all_critical_strike_base": 2506, "strain_base": 1451}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 2637, "strain_base": 2769}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ๆ— ๅŒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "strain_base": 4681}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13300, "max_strength": 6, "base": {}, "magic": {"haste_base": 1036, "strain_base": 906}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆป้“พ () 13300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 13300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 13300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_overcome_base": 2330, "surplus": 2071}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 13300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–้“พ (็ ด้˜ฒ ็ ดๆ‹›) 13300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_overcome_base": 2330, "surplus": 2071}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้˜ฒๅพกๆ— ๅฐ้กน้“พ () 12800": {"school": "็ฒพ็ฎ€", "kind": "้˜ฒๅพก", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒป็–—ๆ— ๅฐ้กน้“พ () 12800": {"school": "็ฒพ็ฎ€", "kind": "ๆฒป็–—", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 1744, "physical_overcome_base": 2118, "strain_base": 1246}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 2616, "physical_critical_strike_base": 2491}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "physical_overcome_base": 4422}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ็ ดๆ‹› ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus": 1744, "magical_overcome_base": 2118, "strain_base": 1246}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus": 2616, "all_critical_strike_base": 2491}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "magical_overcome_base": 4422}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกž้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12600, "max_strength": 6, "base": {}, "magic": {"haste_base": 981, "strain_base": 858}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณ้“พ () 12600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12600": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_overcome_base": 2207, "surplus": 1962}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_overcome_base": 2207, "surplus": 1962}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆป้“พ () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–้“พ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆ€œ้“พ (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1212, "strain_base": 606}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ฟ ้“พ () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆœˆ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–้™้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ƒŸ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๅฏ‚้“พ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜ๅฑฟ้“พ (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1454, "strain_base": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฅฎ้˜”้“พ (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŸ“่พž้“พ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธฉๅˆƒ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒๆธก้“พ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๅŽ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้š็Š€้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 848}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฅš้ปŽ้“พ (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ•†้‡Ž้“พ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่กฟ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆคดๅพฎ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ๆณ“้“พ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus": 1295, "physical_critical_strike_base": 2237, "physical_critical_power_base": 1178}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ดๆ‹› ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "surplus": 2414, "strain_base": 2414}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_critical_strike_base": 4181}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus": 1295, "all_critical_strike_base": 2237, "all_critical_power_base": 1178}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (็ ดๆ‹› ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "surplus": 2414, "strain_base": 2414}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "all_critical_strike_base": 4181}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกž้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11850, "max_strength": 6, "base": {}, "magic": {"haste_base": 923, "strain_base": 807}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณ้“พ () 11850": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spirit_base": 414}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11850": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11850, "max_strength": 6, "base": {}, "magic": {"agility_base": 414, "physical_attack_power_base": 671, "physical_overcome_base": 2076, "surplus": 1845}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11850": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11850, "max_strength": 6, "base": {}, "magic": {"strength_base": 414, "physical_attack_power_base": 671, "physical_overcome_base": 2076, "surplus": 1845}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11850": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spunk_base": 414, "magical_attack_power_base": 805, "magical_overcome_base": 2076, "surplus": 1845}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11850": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spirit_base": 414, "magical_attack_power_base": 805, "magical_overcome_base": 2076, "surplus": 1845}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ญ„้“พ (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11800, "max_strength": 6, "base": {}, "magic": {"haste_base": 919, "strain_base": 459, "surplus": 345}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™šๅฃถ้“พ (ๅŠ ้€Ÿ) 11800": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "haste_base": 2067}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ชจ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11800, "max_strength": 6, "base": {}, "magic": {"agility_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็ฉ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็’œ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŠคๅฟต้“พ (็ ดๆ‹› ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11800, "max_strength": 6, "base": {}, "magic": {"surplus": 1148, "strain_base": 574}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฅทๅฟต้“พ (ๅŠ ้€Ÿ) 11800": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "haste_base": 2067}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฐธๅฟต้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11800, "max_strength": 6, "base": {}, "magic": {"agility_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟต้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ›žๅฟต้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ป“ๅฟต้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11600, "max_strength": 6, "base": {}, "magic": {"haste_base": 903, "strain_base": 790}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆป้“พ () 11600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 405}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11600": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11600, "max_strength": 6, "base": {}, "magic": {"agility_base": 405, "physical_attack_power_base": 657, "physical_overcome_base": 2032, "surplus": 1806}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11600, "max_strength": 6, "base": {}, "magic": {"strength_base": 405, "physical_attack_power_base": 657, "physical_overcome_base": 2032, "surplus": 1806}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 405, "magical_attack_power_base": 788, "magical_overcome_base": 2032, "surplus": 1806}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 405, "magical_attack_power_base": 788, "magical_overcome_base": 2032, "surplus": 1806}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็…งๅคœ้กน้“พยท่ทƒ (ไผšๅฟƒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"all_critical_strike_base": 6209}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒงๆตช้กน้“พยท็ปš (ไผšๅฟƒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"all_critical_strike_base": 6209}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฟๆฒ™้กน้“พยท็’จ (ไผšๅฟƒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"all_critical_strike_base": 6209}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "surplus": 1231, "physical_critical_strike_base": 2127, "strain_base": 1231}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_overcome_base": 2238, "strain_base": 2350}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1704, "strain_base": 3973}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1744, "surplus": 1231, "all_critical_strike_base": 2127, "strain_base": 1231}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1744, "magical_overcome_base": 2238, "strain_base": 2350}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ้กน้“พ (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2044, "strain_base": 3973}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅฅš้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11300, "max_strength": 6, "base": {}, "magic": {"haste_base": 880, "strain_base": 770}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็Ž‰็ช—้“พ () 11300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 395}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡Œๅฎน้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11300, "max_strength": 6, "base": {}, "magic": {"agility_base": 395, "physical_attack_power_base": 640, "physical_overcome_base": 1980, "surplus": 1760}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…ƒ้›พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 395, "physical_attack_power_base": 640, "physical_overcome_base": 1980, "surplus": 1760}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน˜็ƒŸ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 395, "magical_attack_power_base": 768, "magical_overcome_base": 1980, "surplus": 1760}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็‡•ๆตฎ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 395, "magical_attack_power_base": 768, "magical_overcome_base": 1980, "surplus": 1760}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท็ฃ็Ÿณ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 868, "strain_base": 434}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท้•ฟ้’้“พ (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "haste_base": 1953}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท้ฃŽ่กŒ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆ’ผๅœฐ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆœชๅˆค้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๅฟƒๆ–‹้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ็ต้กน้ฅฐ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1302, "strain_base": 326}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅถ้กน้ฅฐ (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "haste_base": 1953}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’ๆฑŸ้กน้ฅฐ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆ้กน้ฅฐ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็™ฝ่ฑ้กน้ฅฐ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€่ฑ้กน้ฅฐ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€€ๅ—้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"haste_base": 868, "strain_base": 760}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…่•Š้“พ (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_critical_strike_base": 1953}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟŸๅคœ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡้’้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™“่ก้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆณ›้“พ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1085, "strain_base": 543}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜้˜‘้“พ () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆตฎ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๅด–้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "surplus": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆฒ…้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกž้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"haste_base": 864, "strain_base": 756}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณ้“พ () 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 388, "magical_attack_power_base": 754, "magical_overcome_base": 1945, "surplus": 1728}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_attack_power_base": 754, "magical_overcome_base": 1945, "surplus": 1728}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๅ…ƒ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"surplus": 1188, "strain_base": 432}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด้˜ณ้“พ () 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด่ถŠ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด้‚ฆ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆบช้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 388, "magical_attack_power_base": 754, "magical_overcome_base": 1945, "surplus": 1728}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด้ปŽ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_attack_power_base": 754, "magical_overcome_base": 1945, "surplus": 1728}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ–‡ๅคฎ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1178, "strain_base": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠณไผŠ้“พ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน…ๅฟต้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่—ๅณฆ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "surplus": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฐจๅณฐ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฒณๆพœ้“พ (ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1606}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ‚่ฐท้“พ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๅฒฑ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…่Šณ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‰ชๆก้“พ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตŽๅปถ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 749, "strain_base": 856}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่พž้“พ () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅŒ—้‚ฑ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่Šฑ้œญ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€”ๅ—้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ปๅฏ‚้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฃ ็–‘้“พ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธŠๅฟฑ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบญๆพœ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…ไบ‘้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†้กบ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1071, "strain_base": 535}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟ้“พ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆƒœ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ‰้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡ป้•—้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅˆซ้“พ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็›ˆ็ป้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ้˜”้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "surplus": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ“’้›จ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ ้›ท้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 856, "strain_base": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บต็›ฎ้“พ () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฝ‹้˜ณ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸ็้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพท่ฅ„้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
 
1
+ {"ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 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_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": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 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": 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, "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": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 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": {}}, "ๅฎš้…ฃ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11850": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11850, "max_strength": 6, "base": {}, "magic": {"strength_base": 414, "physical_attack_power_base": 671, "physical_overcome_base": 2076, "surplus": 1845}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟต้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11600, "max_strength": 6, "base": {}, "magic": {"strength_base": 405, "physical_attack_power_base": 657, "physical_overcome_base": 2032, "surplus": 1806}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ไผšๅฟƒ ็ ดๆ‹› ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "surplus": 1231, "physical_critical_strike_base": 2127, "strain_base": 1231}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_overcome_base": 2238, "strain_base": 2350}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ้กน้“พ (ๆ— ๅŒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1704, "strain_base": 3973}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…ƒ้›พ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 395, "physical_attack_power_base": 640, "physical_overcome_base": 1980, "surplus": 1760}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆ’ผๅœฐ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆ้กน้ฅฐ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด้‚ฆ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_overcome_base": 1945, "surplus": 1728}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œ้“พ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆ้“พ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒ้“พ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌ้“พ (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐ้“พ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณ้“พ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
qt/assets/equipments/pendant CHANGED
@@ -1 +1 @@
1
- {"่ฟœๅฝฑๅ  (็ ดๆ‹› ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 14150, "max_strength": 6, "base": {}, "magic": {"surplus": 1102, "strain_base": 551}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆปๅ  (ไผšๅฟƒ) 14150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_critical_strike_base": 2479}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจๅ  (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 14150, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 14150, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 801, "physical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "all_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 14150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 14150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_critical_strike_base": 2479, "strain_base": 2203}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ— ๅฐฝ็ฏ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 4, "base": {}, "magic": {"surplus": 1086, "strain_base": 543}, "embed": {}, "gains": [[6800, 117]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ่ท็ฟป (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {"spirit_base": 36}, "gains": [[6800, 114]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ˜ๆ˜Ÿ้œœ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 4, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆž•ๆงๅฎ‰ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 4, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 116]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅน้ฆ™้›ช (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ไธŠ้›จ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 115]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒ‰ๆช€ๅ  (ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ€่ทๅ  (ๅŠ ้€Ÿ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ธ้›ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ้ธฆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "surplus": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฃ‘ไบ‘ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "surplus": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’็ปกๅ  (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "surplus": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๅณฐๅ  (ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ้œฒๅ  () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŽฃๅ  (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡›่กŒๅ  (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ€้ขๅ  (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰ฌ่‹ฑๅ  (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_overcome_base": 1912, "physical_critical_strike_base": 2044, "physical_critical_power_base": 1319}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1712, "physical_critical_strike_base": 2703, "physical_overcome_base": 2703}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2007, "physical_critical_strike_base": 4681}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "magical_overcome_base": 1912, "all_critical_strike_base": 2044, "all_critical_power_base": 1319}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2054, "all_critical_strike_base": 2703, "magical_overcome_base": 2703}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2409, "all_critical_strike_base": 4681}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑๅ  (็ ดๆ‹› ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13300, "max_strength": 6, "base": {}, "magic": {"surplus": 1036, "strain_base": 518}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆปๅ  (ไผšๅฟƒ) 13300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_critical_strike_base": 2330}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจๅ  (ไผšๅฟƒ ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13300, "max_strength": 6, "base": {}, "magic": {"agility_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13300, "max_strength": 6, "base": {}, "magic": {"strength_base": 464, "physical_attack_power_base": 753, "physical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 464, "magical_attack_power_base": 904, "all_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 13300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 464, "magical_attack_power_base": 904, "magical_critical_strike_base": 2330, "strain_base": 2071}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้˜ฒๅพกๆ— ๅฐ่…ฐๅ  () 12800": {"school": "็ฒพ็ฎ€", "kind": "้˜ฒๅพก", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒป็–—ๆ— ๅฐ่…ฐๅ  () 12800": {"school": "็ฒพ็ฎ€", "kind": "ๆฒป็–—", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ ไผšๆ•ˆ ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "physical_critical_strike_base": 2367, "physical_critical_power_base": 1246, "strain_base": 1370}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1617, "surplus": 2491, "physical_overcome_base": 2616}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1896, "strain_base": 4422}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ ไผšๆ•ˆ ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "all_critical_strike_base": 2367, "all_critical_power_base": 1246, "strain_base": 1370}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1941, "surplus": 2491, "magical_overcome_base": 2616}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (ๆ— ๅŒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2275, "strain_base": 4422}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกžๅ  (็ ดๆ‹› ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12600, "max_strength": 6, "base": {}, "magic": {"surplus": 981, "strain_base": 491}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณๅ  (ไผšๅฟƒ) 12600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_critical_strike_base": 2207}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "๏ฟฝ๏ฟฝ็”จ", "kind": "่บซๆณ•", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 440, "physical_attack_power_base": 714, "physical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 440, "magical_attack_power_base": 856, "all_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 440, "magical_attack_power_base": 856, "magical_critical_strike_base": 2207, "strain_base": 1962}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑๅ  (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 969, "strain_base": 485}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆปๅ  (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆ€œๅ  (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 969, "strain_base": 485, "surplus": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ฟ ๅ  (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆœˆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–้™ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ƒŸๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๅฏ‚ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š๏ฟฝ๏ฟฝ๏ฟฝ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅคชๅนณๆ™– (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 4, "base": {}, "magic": {"surplus": 969, "strain_base": 485}, "embed": {}, "gains": [[6800, 110]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บข่ผๆž (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {"spirit_base": 36}, "gains": [[6800, 107]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้›ๆ— ๆ„ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 4, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ้ป„ๆฒ™ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 4, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 109]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้›ชไธŠๅฐ˜ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎๅคฉ้˜ณ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 108]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜ๅฑฟๅ  (ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฅฎ้˜”ๅ  (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŸ“่พžๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธฉๅˆƒๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒๆธกๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๅŽๅ  (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้š็Š€ๅ  (ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฅš้ปŽๅ  () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ•†้‡Žๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่กฟๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆคดๅพฎๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ๆณ“ๅ  (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_overcome_base": 1649, "physical_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1529, "physical_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1792, "physical_overcome_base": 4181}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "magical_overcome_base": 1649, "all_critical_strike_base": 1884, "strain_base": 1295}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1835, "all_critical_strike_base": 2355, "strain_base": 2473}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2151, "magical_overcome_base": 4181}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้นคๆœˆๅ  (ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1752}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กพๆœˆๅ  (ๅŠ ้€Ÿ) 12000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 419, "haste_base": 2102}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆญŒๆœˆๅ  (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๆœˆๅ  (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 419, "physical_attack_power_base": 680, "physical_overcome_base": 2102, "strain_base": 1869}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฟฏๆœˆๅ  (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆทกๆœˆๅ  (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 419, "magical_attack_power_base": 816, "magical_overcome_base": 2102, "strain_base": 1869}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกžๅ  (็ ดๆ‹› ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11850, "max_strength": 6, "base": {}, "magic": {"surplus": 923, "strain_base": 461}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณๅ  (ไผšๅฟƒ) 11850": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spirit_base": 414, "magical_critical_strike_base": 2076}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11850, "max_strength": 6, "base": {}, "magic": {"agility_base": 414, "physical_attack_power_base": 671, "physical_critical_strike_base": 2076, "strain_base": 1845}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11850, "max_strength": 6, "base": {}, "magic": {"strength_base": 414, "physical_attack_power_base": 671, "physical_critical_strike_base": 2076, "strain_base": 1845}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spunk_base": 414, "magical_attack_power_base": 805, "all_critical_strike_base": 2076, "strain_base": 1845}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11850, "max_strength": 6, "base": {}, "magic": {"spirit_base": 414, "magical_attack_power_base": 805, "magical_critical_strike_base": 2076, "strain_base": 1845}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟœๅฝฑๅ  (็ ดๆ‹› ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11600, "max_strength": 6, "base": {}, "magic": {"surplus": 903, "strain_base": 452}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไป˜็ฆปๅ  (ไผšๅฟƒ) 11600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 405, "magical_critical_strike_base": 2032}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€ขๆจๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11600, "max_strength": 6, "base": {}, "magic": {"agility_base": 405, "physical_attack_power_base": 657, "physical_critical_strike_base": 2032, "strain_base": 1806}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11600, "max_strength": 6, "base": {}, "magic": {"strength_base": 405, "physical_attack_power_base": 657, "physical_critical_strike_base": 2032, "strain_base": 1806}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ฅๅ€พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 405, "magical_attack_power_base": 788, "all_critical_strike_base": 2032, "strain_base": 1806}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’้œ–ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 405, "magical_attack_power_base": 788, "magical_critical_strike_base": 2032, "strain_base": 1806}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็…งๅคœๅ ยท่ทƒ (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 1850, "agility_base": 1850, "spirit_base": 1850, "spunk_base": 1850, "haste_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒงๆตชๅ ยท็ปš (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 1850, "agility_base": 1850, "spirit_base": 1850, "spunk_base": 1850, "haste_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฟๆฒ™ๅ ยท็’จ (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 1850, "agility_base": 1850, "spirit_base": 1850, "spunk_base": 1850, "haste_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_overcome_base": 1623, "physical_critical_strike_base": 1735, "physical_critical_power_base": 1119}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_critical_strike_base": 2294, "physical_overcome_base": 2294}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1704, "physical_critical_strike_base": 3973}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1744, "magical_overcome_base": 1623, "all_critical_strike_base": 1735, "all_critical_power_base": 1119}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 1744, "all_critical_strike_base": 2294, "magical_overcome_base": 2294}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2044, "all_critical_strike_base": 3973}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅฅšๅ  (็ ดๆ‹› ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11300, "max_strength": 6, "base": {}, "magic": {"surplus": 880, "strain_base": 440}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็Ž‰็ช—ๅ  (ไผšๅฟƒ) 11300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 395, "magical_critical_strike_base": 1980}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡Œๅฎนๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11300, "max_strength": 6, "base": {}, "magic": {"agility_base": 395, "physical_attack_power_base": 640, "physical_critical_strike_base": 1980, "strain_base": 1760}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…ƒ้›พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 395, "physical_attack_power_base": 640, "physical_critical_strike_base": 1980, "strain_base": 1760}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน˜็ƒŸๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 395, "magical_attack_power_base": 768, "all_critical_strike_base": 1980, "strain_base": 1760}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็‡•ๆตฎๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 395, "magical_attack_power_base": 768, "magical_critical_strike_base": 1980, "strain_base": 1760}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท็ฃ็Ÿณๅ  (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1085, "strain_base": 543}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท้•ฟ้’ๅ  (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_critical_strike_base": 1953}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยท้ฃŽ่กŒๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆ’ผๅœฐๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆœชๅˆคๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๅฟƒๆ–‹ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ่€€ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 4, "base": {}, "magic": {"surplus": 868, "strain_base": 434}, "embed": {}, "gains": [[6800, 103]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆจ่Šฑๆณช (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 4, "base": {}, "magic": {"spirit_base": 389, "magical_critical_strike_base": 1953}, "embed": {"spirit_base": 36}, "gains": [[6800, 100]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ดฏ้ณž (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 4, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 102]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ่ฝ็ง‹ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 4, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 102]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฌ›ๆณฃ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 4, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 101]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆข…ๆœˆ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {"magical_overcome_base": 161}, "gains": [[6800, 101]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ็ตๅ  (ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1628}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅถๅ  (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "haste_base": 1953}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’ๆฑŸๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็™ฝ่ฑๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "surplus": 1736}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€่ฑๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€€ๅ—ๅ  (ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1628}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…่•Šๅ  () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟŸๅคœๅ  (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑๅ  (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡้’ๅ  (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "surplus": 1736}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™“่กๅ  (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "surplus": 1736}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆณ›ๅ  (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"haste_base": 868, "strain_base": 434, "surplus": 326}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜้˜‘ๅ  (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_critical_strike_base": 1953}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆตฎๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๅด–ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "surplus": 1736}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆฒ…ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅž‚ๅกžๅ  (็ ดๆ‹› ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"surplus": 864, "strain_base": 432}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ๅ‘ณๅ  (ไผšๅฟƒ) 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_critical_strike_base": 1945}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฌบๆž—ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็•…ๅ…‰ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 388, "magical_attack_power_base": 754, "all_critical_strike_base": 1945, "strain_base": 1728}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ้›ถๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_attack_power_base": 754, "magical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆœฌๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"haste_base": 864, "strain_base": 756}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆ–นๅ  () 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด่‹‘ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "surplus": 1728}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆขงๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "surplus": 1728}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๅ…ธๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 388, "magical_attack_power_base": 754, "all_critical_strike_base": 1945, "surplus": 1728}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดไนๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_attack_power_base": 754, "magical_critical_strike_base": 1945, "surplus": 1728}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ–‡ๅคฎๅ  (ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1285}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠณไผŠๅ  () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน…ๅฟตๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่—ๅณฆๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฐจๅณฐๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฒณๆพœๅ  (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 749, "strain_base": 856}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ‚่ฐทๅ  (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๅฒฑๅ  (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๅ  (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…่Šณๅ  (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "strain_base": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‰ชๆกๅ  (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "strain_base": 1713}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตŽๅปถๅ  (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1178, "strain_base": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่พžๅ  (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅŒ—้‚ฑๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่Šฑ้œญๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "surplus": 1713}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€”ๅ—ๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ปๅฏ‚ๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฃ ็–‘ๅ  () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธŠๅฟฑๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบญๆพœๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…ไบ‘ๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†้กบๅ  (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1071, "strain_base": 535}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟๅ  (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆƒœๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ‰ๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡ป้•—ไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1071, "strain_base": 535}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅˆซไฝฉ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็›ˆ็ปไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ้˜”ไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "surplus": 1713}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ“’้›จไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "surplus": 1713}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ ้›ทไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "surplus": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บต็›ฎไฝฉ () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฝ‹้˜ณไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸ็ไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพท่ฅ„ไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {"magical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
 
1
+ {"ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 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": 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": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 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": 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, "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": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ๆ— ๅŒ) 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": {}}, "ๅฎš้…ฃๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11850": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11850, "max_strength": 6, "base": {}, "magic": {"strength_base": 414, "physical_attack_power_base": 671, "physical_critical_strike_base": 2076, "strain_base": 1845}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่ทฏๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11600, "max_strength": 6, "base": {}, "magic": {"strength_base": 405, "physical_attack_power_base": 657, "physical_critical_strike_base": 2032, "strain_base": 1806}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_overcome_base": 1623, "physical_critical_strike_base": 1735, "physical_critical_power_base": 1119}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (็ ด้˜ฒ ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1453, "physical_critical_strike_base": 2294, "physical_overcome_base": 2294}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐ่…ฐๅ  (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1704, "physical_critical_strike_base": 3973}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…ƒ้›พๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 395, "physical_attack_power_base": 640, "physical_critical_strike_base": 1980, "strain_base": 1760}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ต็ฉบยทๆ’ผๅœฐๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ่ฝ็ง‹ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 4, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {"physical_overcome_base": 161}, "gains": [[6800, 102]], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑๅ  (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎš้…ฃๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆขงๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "surplus": 1728}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๅ  (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "strain_base": 1713}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๅ  (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๅ  (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๅ  (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "strain_base": 1713}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐไฝฉ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณไฝฉ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
qt/assets/equipments/primary_weapon CHANGED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/ring CHANGED
@@ -1 +1 @@
1
- {"่ถŠๅทžๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1358, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ปต่ฟžๆˆ’ (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ๆญฆๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ป˜ๅฑฑๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฝ’ๆœ”ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้’ไนกๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅน้œœๆˆ’ (ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2036}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆž—่ฐˆๆˆ’ (ๅŠ ้€Ÿ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "haste_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยท้œ„ๆœˆๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅฌ้’Ÿๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ–ญๆ„ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ„ๆ‚ ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ถๅฒ‘ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1702, "surplus": 2851, "physical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธธ็ปƒๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1459, "physical_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็’จไบ‘ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2042, "surplus": 2851, "magical_overcome_base": 2580}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธฐๅ†‰ๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1750, "all_critical_strike_base": 1765, "strain_base": 4344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ฎๅนด๏ฟฝ๏ฟฝ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅณปๆฐดๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "magical_overcome_base": 2715, "strain_base": 2851}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…‰้œ†ๆˆ’ (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "surplus": 1493, "physical_critical_strike_base": 2580, "physical_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…ฐ็‘ๆˆ’ (็ ด้˜ฒ ไผšๅฟƒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1763, "physical_critical_strike_base": 2783, "physical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ถ่ถŠๆˆ’ (ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2066, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅธŒๅปถๆˆ’ (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "surplus": 1493, "all_critical_strike_base": 2580, "all_critical_power_base": 1358}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พฝๅฎนๆˆ’ (็ ด้˜ฒ ไผšๅฟƒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2115, "all_critical_strike_base": 2783, "magical_overcome_base": 2783}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธน่Žฒๆˆ’ (ๆ— ๅŒ) 13950": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13950, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2480, "strain_base": 4820}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒ‰ๆช€ๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 1629, "surplus": 407}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ€่ทๆˆ’ () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ธ้›ๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ้ธฆๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฃ‘ไบ‘ๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "all_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’็ปกๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_critical_strike_base": 2444, "strain_base": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๅณฐๆŒ‡็Žฏ (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1358, "strain_base": 679}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ้œฒๆŒ‡็Žฏ (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_critical_strike_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŽฃๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡›่กŒๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 487, "physical_attack_power_base": 790, "physical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ€้ขๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰ฌ่‹ฑๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 487, "magical_attack_power_base": 948, "magical_overcome_base": 2444, "surplus": 2172}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จ็ป“ (ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strain_base": 1565}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จ็  (ไผšๅฟƒ) 13400": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 468, "magical_critical_strike_base": 2347}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จ็Ž‰ (ไผšๅฟƒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จ็Ÿณ (ไผšๅฟƒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 468, "physical_attack_power_base": 759, "physical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จ็Žฏ (ไผšๅฟƒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 468, "magical_attack_power_base": 911, "all_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆšฎ้›จๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 468, "magical_attack_power_base": 911, "magical_critical_strike_base": 2347, "strain_base": 2087}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆ€œๆˆ’ (็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1454}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ฟ ๆˆ’ (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆœˆๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–้™ๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ƒŸๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๅฏ‚ๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทไธœไปคๆˆ’ (ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1818}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅคงไนๆˆ’ (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "haste_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅคฉ้…ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆขฆ่Šฑๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅƒไธ–ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆธๆต“ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‚ฌๆ—ถๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "physical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่งฃๆ€œๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "magical_overcome_base": 2302, "strain_base": 2545}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ ดๆœๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1302, "physical_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ตซ้ฃŽๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1519, "surplus": 2545, "physical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ฎๅฒๆˆ’ (ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1844, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅธ˜็ตฎๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1562, "all_critical_strike_base": 1575, "strain_base": 3877}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…ๆ–—ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1823, "surplus": 2545, "magical_overcome_base": 2302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ˜ญๆœˆๆˆ’ (ๆ— ๅŒ) 12450": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12450, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 2213, "strain_base": 4059}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜ๅฑฟๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1454, "surplus": 364}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฅฎ้˜”ๆˆ’ () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŸ“่พžๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธฉๅˆƒๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒๆธกๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "all_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๅŽๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_critical_strike_base": 2181, "strain_base": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้š็Š€ๆŒ‡็Žฏ (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1212, "strain_base": 606}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฅš้ปŽๆŒ‡็Žฏ (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_critical_strike_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ•†้‡ŽๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่กฟๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 435, "physical_attack_power_base": 705, "physical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆคดๅพฎๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ๆณ“ๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 435, "magical_attack_power_base": 846, "magical_overcome_base": 2181, "surplus": 1939}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆขง้ฃŽๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ไธ‡็ต", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅฒšๅณฐๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅˆ€ๅฎ—", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่ฟŽๆ–ฐๅพกๅŽจๆˆ’ๆŒ‡ยทๆฐด็…ฎ (ไผšๅฟƒ) 12300": {"school": "่ฏๅฎ—", "kind": "ๆฒป็–—", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่ฟŽๆ–ฐๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "่ฏๅฎ—", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅฏป้พ™ๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "่กๅคฉ", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅ‡Œๆ™“ๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅ‡Œ้›ช", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๆฒงๆณขๅพกๅŽจๆˆ’ๆŒ‡ยท๏ฟฝ๏ฟฝ๏ฟฝๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "่“ฌ่Žฑ", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅ‚ฒๅฏ’ๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "้œธๅˆ€", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅคๆ„ๅพกๅŽจๆˆ’ๆŒ‡ยทๆฐด็…ฎ (ไผšๅฟƒ) 12300": {"school": "้•ฟๆญŒ", "kind": "ๆฒป็–—", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅคๆ„ๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "้•ฟๆญŒ", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅกž้›ชๅพกๅŽจๆˆ’ๆŒ‡ยทๆธ…่’ธ (ๅŠ ้€Ÿ ๆ— ๅŒ) 12300": {"school": "่‹ไบ‘", "kind": "้˜ฒๅพก", "level": 12300, "max_strength": 6, "base": {}, "magic": {"haste_base": 958, "strain_base": 838}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅกž้›ชๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅทฅ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "่‹ไบ‘", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅฆ™็ซๅพกๅŽจๆˆ’ๆŒ‡ยทๆธ…่’ธ (็ ดๆ‹› ๆ— ๅŒ) 12300": {"school": "ๆ˜Žๆ•™", "kind": "้˜ฒๅพก", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1436, "surplus": 359}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅฆ™็ซๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๆ˜Žๆ•™", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "้†‰ๆขฆ้€้ฅๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ไธๅธฎ", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่‡ณๅฐŠๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "่—ๅ‰‘", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่œ€ๆœˆๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅ”้—จ", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่œ€ๆœˆๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅ”้—จ", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็‘ถๆ˜ŸๅพกๅŽจๆˆ’ๆŒ‡ยทๆฐด็…ฎ (ไผšๅฟƒ) 12300": {"school": "ไบ”ๆฏ’", "kind": "ๆฒป็–—", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็‘ถๆ˜ŸๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ไบ”ๆฏ’", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "้œ“่ฃณๅพก๏ฟฝ๏ฟฝๆˆ’ๆŒ‡ยทๆฐด็…ฎ (ไผšๅฟƒ) 12300": {"school": "ไธƒ็ง€", "kind": "ๆฒป็–—", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "้œ“่ฃณๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ไธƒ็ง€", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็ต่™šๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "็บฏ้˜ณ", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"agility_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็ต่™šๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "็บฏ้˜ณ", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅพก่ตๅพกๅŽจๆˆ’ๆŒ‡ยท็”Ÿ็…Ž (ๆ— ๅŒ) 12300": {"school": "ๅคฉ็ญ–", "kind": "้˜ฒๅพก", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1436}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "ๅพก่ตๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅคฉ็ญ–", "kind": "ๅค–ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strength_base": 429, "physical_attack_power_base": 697, "physical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็ฟก็ฟ ๅพกๅŽจๆˆ’ๆŒ‡ยทๆฐด็…ฎ (ไผšๅฟƒ) 12300": {"school": "ไธ‡่Šฑ", "kind": "ๆฒป็–—", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 429, "magical_critical_strike_base": 2155}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "็ฟก็ฟ ๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ไธ‡่Šฑ", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่ฉๆๅพกๅŽจๆˆ’ๆŒ‡ยทๆธ…่’ธ (ๆ— ๅŒ) 12300": {"school": "ๅฐ‘ๆž—", "kind": "้˜ฒๅพก", "level": 12300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1796}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่ฉๆๅพกๅŽจๆˆ’ๆŒ‡ยท็ซๅ€™ (ไผšๅฟƒ ๆ— ๅŒ) 12300": {"school": "ๅฐ‘ๆž—", "kind": "ๅ†…ๅŠŸ", "level": 12300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 429, "magical_attack_power_base": 836, "magical_critical_strike_base": 2155, "strain_base": 1915}, "embed": {}, "gains": [], "special_enchant": [], "set_id": "125741", "set_attr": {"2": {"all_major_base": 305}}, "set_gain": {}}, "่™š้ญ„ๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11800, "max_strength": 6, "base": {}, "magic": {"surplus": 1148, "strain_base": 574}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™šๅฃถๆˆ’ (ๅŠ ้€Ÿ) 11800": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "haste_base": 2067}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ชจๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11800, "max_strength": 6, "base": {}, "magic": {"agility_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็ฉๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็’œๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 412, "magical_attack_power_base": 802, "magical_overcome_base": 2067, "strain_base": 1837}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็…งๅคœๆˆ’ยท่ทƒ (็ ด้˜ฒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"physical_overcome_base": 7338, "magical_overcome_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒงๆตชๆˆ’ยท็ปš (็ ด้˜ฒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"physical_overcome_base": 7338, "magical_overcome_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฟๆฒ™ๆˆ’ยท็’จ (็ ด้˜ฒ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"physical_overcome_base": 7338, "magical_overcome_base": 7338}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ—ๅฒฉๆˆ’ (ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strain_base": 1343}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ขงๅฒšๆˆ’ (ๅŠ ้€Ÿ) 11500": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 402, "haste_base": 2015}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆพๆ‰ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11500, "max_strength": 6, "base": {}, "magic": {"agility_base": 402, "physical_attack_power_base": 651, "physical_overcome_base": 2015, "surplus": 1791}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ˜Ÿ็”ตๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 402, "physical_attack_power_base": 651, "physical_overcome_base": 2015, "surplus": 1791}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็œ ไบ‘ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spunk_base": 402, "magical_attack_power_base": 782, "magical_overcome_base": 2015, "surplus": 1791}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฝ’็Ž‰ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 402, "magical_attack_power_base": 782, "magical_overcome_base": 2015, "surplus": 1791}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยท้›จ่†ๆˆ’ (ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1628}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ—‹ๆตŽๆˆ’ (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "haste_base": 1953}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆ˜ฅๅธ†ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡ถ็‚ฝๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡็ซ ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๆƒŠๆ†ฉๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœช่งฃๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1166, "physical_overcome_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ˜ผ็œ ๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1399, "magical_overcome_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพกๆœฝๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1166, "physical_critical_strike_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไผ‘ๅ€šๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1360, "surplus": 2062, "physical_overcome_base": 2062}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎนไธŽๆˆ’ (ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1652, "strain_base": 3418}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฝปๆผ“ๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1399, "all_critical_strike_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠๅŸๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1632, "surplus": 2062, "magical_overcome_base": 2062}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พๅฟƒๆˆ’ (ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"magical_attack_power_base": 1982, "strain_base": 3418}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ็ตๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1302, "surplus": 326}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅถๆˆ’ () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’ๆฑŸๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็™ฝ่ฑๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€่ฑๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€€ๅ—ๆŒ‡็Žฏ (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1085, "strain_base": 543}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…่•ŠๆŒ‡็Žฏ (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_critical_strike_base": 1953}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟŸๅคœๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡้’ๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™“่กๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_overcome_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆณ›ๆˆ’ (็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1302}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜้˜‘ๆˆ’ (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "haste_base": 1953}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆตฎๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๅด–ๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 389, "magical_attack_power_base": 758, "all_critical_strike_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆฒ…ๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 389, "magical_attack_power_base": 758, "magical_critical_strike_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๅฃๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"haste_base": 864, "strain_base": 432}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดไปปๆˆ’ () 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดไป™ๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๅฐšๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆ›ฆๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 388, "magical_attack_power_base": 754, "all_critical_strike_base": 1945, "strain_base": 1728}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด่กฃๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 388, "magical_attack_power_base": 754, "magical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ–‡ๅคฎๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 428, "surplus": 321}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠณไผŠๆˆ’ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน…ๅฟตๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่—ๅณฆๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฐจๅณฐๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฒณๆพœๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "surplus": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ‚่ฐทๆˆ’ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๅฒฑๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…่Šณๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‰ชๆกๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตŽๅปถๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "surplus": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่พžๆˆ’ () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅŒ—้‚ฑๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่Šฑ้œญๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€”ๅ—ๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ปๅฏ‚ๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฃ ็–‘ๆˆ’ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธŠๅฟฑๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบญๆพœๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…ไบ‘ๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "surplus": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†้กบๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 428}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟๆˆ’ (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_critical_strike_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆƒœๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "all_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ‰ๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡ป้•—ๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅˆซๆˆ’ (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "haste_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็›ˆ็ปๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ้˜”ๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ“’้›จๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "haste_base": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ ้›ทๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 856, "strain_base": 749}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บต็›ฎๆˆ’ () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฝ‹้˜ณๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸ็ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพท่ฅ„ๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 384, "magical_attack_power_base": 748, "magical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
 
1
+ {"็ป˜ๅฑฑๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 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": {}}, "ๅ‚ฒๅฏ’ๅพกๅŽจๆˆ’ๆŒ‡ยทๅˆ€ๅŠŸ (ไผšๅฟƒ ๆ— ๅŒ) 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": {}}, "่™š้Ÿณๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 412, "physical_attack_power_base": 668, "physical_overcome_base": 2067, "strain_base": 1837}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ˜Ÿ็”ตๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 402, "physical_attack_power_base": 651, "physical_overcome_base": 2015, "surplus": 1791}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎข่กŒๆฑŸๆน–ยทๅ‡ถ็‚ฝๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœช่งฃๆˆ’ (็ ด้˜ฒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1166, "physical_overcome_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพกๆœฝๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1166, "physical_critical_strike_base": 1194, "strain_base": 3472}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไผ‘ๅ€šๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1360, "surplus": 2062, "physical_overcome_base": 2062}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎนไธŽๆˆ’ (ๆ— ๅŒ) 11150": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11150, "max_strength": 4, "base": {}, "magic": {"physical_attack_power_base": 1652, "strain_base": 3418}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "strain_base": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑๆŒ‡็Žฏ (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_overcome_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 389, "physical_attack_power_base": 632, "physical_critical_strike_base": 1953, "surplus": 1736}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๅฐšๆˆ’ (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 388, "physical_attack_power_base": 629, "physical_critical_strike_base": 1945, "strain_base": 1728}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๆˆ’ (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๆˆ’ (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "surplus": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๆˆ’ (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_critical_strike_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐๆˆ’ (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "haste_base": 1927, "strain_base": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณๆˆ’ (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 384, "physical_attack_power_base": 623, "physical_overcome_base": 1927, "surplus": 1713}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
qt/assets/equipments/shoes CHANGED
The diff for this file is too large to render. See raw diff
 
qt/assets/equipments/tertiary_weapon CHANGED
@@ -1 +1 @@
1
- {"ๆณ‰็’จๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"haste_base": 1303, "strain_base": 1140}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅพฎๅ›Š () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅนฝๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๆฝบๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰้บ“ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆณ‰ๅˆๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "surplus": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่พžๆœๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 1955, "surplus": 489}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฉ—่ฏญๅ›Š () 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ“็›ˆๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ถŠๆ—ขๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_overcome_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡็–ๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆž็ปซๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_overcome_base": 2933, "surplus": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒ‰ๆช€ๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"surplus": 1303, "strain_base": 652}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ€่ทๅ›Š (ๅŠ ้€Ÿ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "haste_base": 2933}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ธ้›ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ้ธฆๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "physical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฃ‘ไบ‘ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "all_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’็ปกๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "magical_critical_strike_base": 2933, "strain_base": 2607}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฝๅณฐๅ›Š (ๆ— ๅŒ) 13950": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strain_base": 2444}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ้œฒๅ›Š (ไผšๅฟƒ) 13950": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_critical_strike_base": 2933}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŽฃๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13950, "max_strength": 6, "base": {}, "magic": {"agility_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus": 2607}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡›่กŒๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13950, "max_strength": 6, "base": {}, "magic": {"strength_base": 584, "physical_attack_power_base": 948, "haste_base": 2933, "surplus": 2607}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ€้ขๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spunk_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus": 2607}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‰ฌ่‹ฑๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 13950": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13950, "max_strength": 6, "base": {}, "magic": {"spirit_base": 584, "magical_attack_power_base": 1138, "haste_base": 2933, "surplus": 2607}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2267, "surplus": 1899, "physical_overcome_base": 2057, "physical_critical_strike_base": 2057}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2054, "surplus": 3165, "physical_overcome_base": 3323}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2409, "physical_critical_strike_base": 5618}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2720, "surplus": 1899, "magical_overcome_base": 2057, "all_critical_strike_base": 2057}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2465, "surplus": 3165, "magical_overcome_base": 3323}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ) 13550": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 13550, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2890, "all_critical_strike_base": 5618}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยทๅน (ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strain_base": 2347}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยท่ฏบ (ๅŠ ้€Ÿ) 13400": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 561, "haste_base": 2817}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยทๆœ› (็ ด้˜ฒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 13400, "max_strength": 6, "base": {}, "magic": {"agility_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยท่† (็ ด้˜ฒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 13400, "max_strength": 6, "base": {}, "magic": {"strength_base": 561, "physical_attack_power_base": 911, "physical_overcome_base": 2817, "strain_base": 2504}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยท็…ง (็ ด้˜ฒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spunk_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๆผซยท็ข (็ ด้˜ฒ ๆ— ๅŒ) 13400": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 13400, "max_strength": 6, "base": {}, "magic": {"spirit_base": 561, "magical_attack_power_base": 1093, "magical_overcome_base": 2817, "strain_base": 2504}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้˜ฒๅพกๆ— ๅฐๅ›Š () 12800": {"school": "็ฒพ็ฎ€", "kind": "้˜ฒๅพก", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒป็–—ๆ— ๅฐๅ›Š () 12800": {"school": "็ฒพ็ฎ€", "kind": "ๆฒป็–—", "level": 12800, "max_strength": 4, "base": {}, "magic": {}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "surplus": 1644, "physical_critical_strike_base": 2840, "physical_critical_power_base": 1495}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ไผšๆ•ˆ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1941, "physical_critical_strike_base": 3737, "physical_critical_power_base": 2242}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2275, "physical_overcome_base": 5307}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ไผšๆ•ˆ ็ ดๆ‹›) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "surplus": 1644, "all_critical_strike_base": 2840, "all_critical_power_base": 1495}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ไผšๆ•ˆ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2329, "all_critical_strike_base": 3737, "all_critical_power_base": 2242}, "embed": {"magical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ) 12800": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12800, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2730, "magical_overcome_base": 5307}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅคฉๅฒณๅ›Š (ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strain_base": 2207}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡€ๆบชๅ›Š () 12600": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 528}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฟ ๆž—ๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12600, "max_strength": 6, "base": {}, "magic": {"agility_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12600, "max_strength": 6, "base": {}, "magic": {"strength_base": 528, "physical_attack_power_base": 856, "physical_overcome_base": 2649, "strain_base": 2354}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅทๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spunk_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ขงๆœˆๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 12600": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12600, "max_strength": 6, "base": {}, "magic": {"spirit_base": 528, "magical_attack_power_base": 1028, "magical_overcome_base": 2649, "strain_base": 2354}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยทๆ˜Ÿๅทๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1163, "strain_base": 1018}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยทๅ›ขๆ พๅ›Š (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "haste_base": 2617}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท่ง’ๅฏ’ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท็ พๆผ ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท็ฆปๅฃฐๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฅฟ้ฃŽๅŒ—ๅ•ธยท้Ÿณไนฆๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆ€œๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"haste_base": 1163, "strain_base": 1018}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ฟ ๅ›Š () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๆœˆๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–้™ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–็ƒŸๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน–ๅฏ‚ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "surplus": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅผ„็ขงๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 1745, "surplus": 436}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๆŸ“ๅ›Š () 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบฆๆงๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพฎ่Šฑๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_overcome_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้“่ฟŸๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆบชๆŸ”ๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_overcome_base": 2617, "surplus": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜ๅฑฟๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"surplus": 1163, "strain_base": 582}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฅฎ้˜”ๅ›Š (ๅŠ ้€Ÿ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "haste_base": 2617}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆŸ“่พžๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธฉๅˆƒๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "physical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒๆธกๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "all_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆœๅŽๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "magical_critical_strike_base": 2617, "strain_base": 2326}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้š็Š€ๅ›Š (ๆ— ๅŒ) 12450": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strain_base": 2181}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฅš้ปŽๅ›Š (ไผšๅฟƒ) 12450": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_critical_strike_base": 2617}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ•†้‡Žๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12450, "max_strength": 6, "base": {}, "magic": {"agility_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus": 2326}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่กฟๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12450, "max_strength": 6, "base": {}, "magic": {"strength_base": 522, "physical_attack_power_base": 846, "haste_base": 2617, "surplus": 2326}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆคดๅพฎๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spunk_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus": 2326}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฑ ๆณ“ๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 12450": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12450, "max_strength": 6, "base": {}, "magic": {"spirit_base": 522, "magical_attack_power_base": 1015, "haste_base": 2617, "surplus": 2326}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "physical_overcome_base": 2049, "physical_critical_strike_base": 2190, "physical_critical_power_base": 1413}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1835, "surplus": 2968, "physical_critical_strike_base": 2826}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2151, "strain_base": 5017}, "embed": {"physical_overcome_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "magical_overcome_base": 2049, "all_critical_strike_base": 2190, "all_critical_power_base": 1413}, "embed": {"surplus": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2201, "surplus": 2968, "all_critical_strike_base": 2826}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ๆ— ๅŒ) 12100": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 12100, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2581, "strain_base": 5017}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยทๅฎช็ซ  (ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1682}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยท่’ฒ็‰ข (ไผšๅฟƒ) 12000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 503, "magical_critical_strike_base": 2523}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยทๅ˜ฒ้ฃŽ (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 12000, "max_strength": 6, "base": {}, "magic": {"agility_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยท่žญๅป (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 12000, "max_strength": 6, "base": {}, "magic": {"strength_base": 503, "physical_attack_power_base": 816, "physical_overcome_base": 2523, "strain_base": 2242}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยท็š็œฆ (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้พ™็›ฎยทๅ›š็‰› (็ ด้˜ฒ ๆ— ๅŒ) 12000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 12000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 503, "magical_attack_power_base": 979, "magical_overcome_base": 2523, "strain_base": 2242}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅคฉๅฒณๅ›Š (ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11900, "max_strength": 6, "base": {}, "magic": {"strain_base": 2085}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡€ๆบชๅ›Š () 11900": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11900, "max_strength": 6, "base": {}, "magic": {"spirit_base": 499}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฟ ๆž—ๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11900, "max_strength": 6, "base": {}, "magic": {"agility_base": 499, "physical_attack_power_base": 809, "physical_overcome_base": 2502, "strain_base": 2224}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11900, "max_strength": 6, "base": {}, "magic": {"strength_base": 499, "physical_attack_power_base": 809, "physical_overcome_base": 2502, "strain_base": 2224}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅทๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11900, "max_strength": 6, "base": {}, "magic": {"spunk_base": 499, "magical_attack_power_base": 971, "magical_overcome_base": 2502, "strain_base": 2224}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ขงๆœˆๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11900, "max_strength": 6, "base": {}, "magic": {"spirit_base": 499, "magical_attack_power_base": 971, "magical_overcome_base": 2502, "strain_base": 2224}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ญ„ๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 11800": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11800, "max_strength": 6, "base": {}, "magic": {"haste_base": 1102, "strain_base": 551, "surplus": 413}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™šๅฃถๅ›Š () 11800": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้ชจๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11800": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11800, "max_strength": 6, "base": {}, "magic": {"agility_base": 494, "physical_attack_power_base": 802, "physical_critical_strike_base": 2481, "surplus": 2205}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 802, "physical_critical_strike_base": 2481, "surplus": 2205}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็ฉๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11800": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spunk_base": 494, "magical_attack_power_base": 962, "all_critical_strike_base": 2481, "surplus": 2205}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š็’œๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11800": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11800, "max_strength": 6, "base": {}, "magic": {"spirit_base": 494, "magical_attack_power_base": 962, "magical_critical_strike_base": 2481, "surplus": 2205}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็…งๅคœๅ›Šยท่ทƒ (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 2220, "agility_base": 2220, "spirit_base": 2220, "spunk_base": 2220, "haste_base": 8806}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒงๆตชๅ›Šยท็ปš (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 2220, "agility_base": 2220, "spirit_base": 2220, "spunk_base": 2220, "haste_base": 8806}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฟๆฒ™ๅ›Šยท็’จ (ๅŠ ้€Ÿ) 11600": {"school": "้€š็”จ", "kind": "้€š็”จ", "level": 11600, "max_strength": 0, "base": {}, "magic": {"strength_base": 2220, "agility_base": 2220, "spirit_base": 2220, "spunk_base": 2220, "haste_base": 8806}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฒณ้บ“ๅ›Š (ๆ— ๅŒ) 11500": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strain_base": 2015}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ช‰ๅ† ๅ›Š (ๅŠ ้€Ÿ) 11500": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "haste_base": 2417}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎฃ่ฃๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11500, "max_strength": 6, "base": {}, "magic": {"agility_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus": 2149}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ง‚ๆฉๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus": 2149}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆ›œๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spunk_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus": 2149}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ –ๅคฉๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11500, "max_strength": 6, "base": {}, "magic": {"spirit_base": 482, "magical_attack_power_base": 938, "magical_overcome_base": 2417, "surplus": 2149}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1924, "surplus": 1612, "physical_overcome_base": 1746, "physical_critical_strike_base": 1746}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1744, "surplus": 2686, "physical_overcome_base": 2820}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2044, "physical_critical_strike_base": 4768}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2309, "surplus": 1612, "magical_overcome_base": 1746, "all_critical_strike_base": 1746}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2092, "surplus": 2686, "magical_overcome_base": 2820}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ†…ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅ†…ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"magical_attack_power_base": 2453, "all_critical_strike_base": 4768}, "embed": {"all_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅคฉๅฒณๅ›Š (ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strain_base": 1980}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡€ๆบชๅ›Š () 11300": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 473}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฟ ๆž—ๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11300, "max_strength": 6, "base": {}, "magic": {"agility_base": 473, "physical_attack_power_base": 768, "physical_overcome_base": 2375, "strain_base": 2112}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 473, "physical_attack_power_base": 768, "physical_overcome_base": 2375, "strain_base": 2112}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅทๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spunk_base": 473, "magical_attack_power_base": 922, "magical_overcome_base": 2375, "strain_base": 2112}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ขงๆœˆๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11300, "max_strength": 6, "base": {}, "magic": {"spirit_base": 473, "magical_attack_power_base": 922, "magical_overcome_base": 2375, "strain_base": 2112}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅคฉๅฒณๅ›Š (ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11200, "max_strength": 6, "base": {}, "magic": {"strain_base": 1962}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡€ๆบชๅ›Š () 11200": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11200, "max_strength": 6, "base": {}, "magic": {"spirit_base": 469}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ฟ ๆž—ๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11200, "max_strength": 6, "base": {}, "magic": {"agility_base": 469, "physical_attack_power_base": 761, "physical_overcome_base": 2354, "strain_base": 2093}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11200, "max_strength": 6, "base": {}, "magic": {"strength_base": 469, "physical_attack_power_base": 761, "physical_overcome_base": 2354, "strain_base": 2093}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅทๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11200, "max_strength": 6, "base": {}, "magic": {"spunk_base": 469, "magical_attack_power_base": 913, "magical_overcome_base": 2354, "strain_base": 2093}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ขงๆœˆๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11200, "max_strength": 6, "base": {}, "magic": {"spirit_base": 469, "magical_attack_power_base": 913, "magical_overcome_base": 2354, "strain_base": 2093}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—ถ่กŒๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1563, "surplus": 391}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไฝฉ่Šœๅ›Š () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฐ˜่ฎธๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 467, "physical_attack_power_base": 758, "physical_overcome_base": 2344, "surplus": 2083}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบฆ้ฃžๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_overcome_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไปคไปชๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 467, "magical_attack_power_base": 909, "magical_overcome_base": 2344, "surplus": 2083}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ด ๆบฑๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "magical_attack_power_base": 909, "magical_overcome_base": 2344, "surplus": 2083}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฑฑ็ตๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"surplus": 1042, "strain_base": 521}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตๅถๅ›Š (ๅŠ ้€Ÿ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "haste_base": 2344}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฏ’ๆฑŸๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "strain_base": 2083}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "strain_base": 2083}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็™ฝ่ฑๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 467, "magical_attack_power_base": 909, "all_critical_strike_base": 2344, "strain_base": 2083}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€่ฑๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "magical_attack_power_base": 909, "magical_critical_strike_base": 2344, "strain_base": 2083}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€€ๅ—็ฎญๅ›Š (ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strain_base": 1953}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธ…่•Š็ฎญๅ›Š (ไผšๅฟƒ) 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "magical_critical_strike_base": 2344}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฟŸๅคœ็ฎญๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 467, "physical_attack_power_base": 758, "haste_base": 2344, "surplus": 2083}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑ็ฎญๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "haste_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡้’็ฎญๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 467, "magical_attack_power_base": 909, "haste_base": 2344, "surplus": 2083}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ™“่ก็ฎญๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "magical_attack_power_base": 909, "haste_base": 2344, "surplus": 2083}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆณ›ๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11150, "max_strength": 6, "base": {}, "magic": {"haste_base": 1042, "strain_base": 912}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜้˜‘ๅ›Š () 11150": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆตฎๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11150, "max_strength": 6, "base": {}, "magic": {"agility_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "surplus": 2083}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๅด–ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spunk_base": 467, "magical_attack_power_base": 909, "all_critical_strike_base": 2344, "surplus": 2083}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜ๆฒ…ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11150, "max_strength": 6, "base": {}, "magic": {"spirit_base": 467, "magical_attack_power_base": 909, "magical_critical_strike_base": 2344, "surplus": 2083}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด่‹ฅๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strain_base": 1556, "surplus": 389}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด้ƒๅ›Š (ไผšๅฟƒ) 11100": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 465, "magical_critical_strike_base": 2333}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆ™šๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11100, "max_strength": 6, "base": {}, "magic": {"agility_base": 465, "physical_attack_power_base": 754, "physical_critical_strike_base": 2333, "strain_base": 2074}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆŽฃๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 465, "physical_attack_power_base": 754, "physical_critical_strike_base": 2333, "strain_base": 2074}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด็”˜ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spunk_base": 465, "magical_attack_power_base": 905, "all_critical_strike_base": 2333, "strain_base": 2074}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธด็ๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11100, "max_strength": 6, "base": {}, "magic": {"spirit_base": 465, "magical_attack_power_base": 905, "magical_critical_strike_base": 2333, "strain_base": 2074}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆŠฑ่’ๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1028, "strain_base": 899}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๅนๅฏ’ๅ›Š (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "haste_base": 2312}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยท้ฃŽๅทกๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆ‰ฟๅนณๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆจ—้—ฒๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "all_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๅนฝๅนๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้•ฟๆถง (ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1927}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ…‰ๅฅ• () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็‰ตๅถ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎธ้ฃŽ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ˜ญๅค (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "all_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"all_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ€ๅ‹‰ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ–‡ๅคฎๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1285, "strain_base": 642}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ŠณไผŠๅ›Š (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_critical_strike_base": 2312}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไน…ๅฟตๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่—ๅณฆๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "strain_base": 2055}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฐจๅณฐๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "strain_base": 2055}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฒณๆพœๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strain_base": 1542, "surplus": 385}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ ‚่ฐทๅ›Š () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽๅฒฑๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "haste_base": 2312, "strain_base": 2055}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "haste_base": 2312, "strain_base": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…่Šณๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "haste_base": 2312, "strain_base": 2055}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‰ชๆกๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "haste_base": 2312, "strain_base": 2055}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆตŽๅปถๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1028, "surplus": 514, "strain_base": 385}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎ‰่พžๅ›Š (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "haste_base": 2312}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅŒ—้‚ฑๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่Šฑ้œญๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "surplus": 2055}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้€”ๅ—ๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "surplus": 2055}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้—ปๅฏ‚ๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1028, "surplus": 514}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฃ ็–‘ๅ›Š (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_critical_strike_base": 2312}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆธŠๅฟฑๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "surplus": 2312, "strain_base": 2055}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "surplus": 2312, "strain_base": 2055}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบญๆพœๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "surplus": 2312, "strain_base": 2055}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ•…ไบ‘ๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "surplus": 2312, "strain_base": 2055}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†้กบๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1028, "strain_base": 899}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฟๅ›Š () 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "surplus": 2055}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆƒœๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "all_critical_strike_base": 2312, "surplus": 2055}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๅฎ‰ๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_critical_strike_base": 2312, "surplus": 2055}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅ‡ป้•—ๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"haste_base": 1028, "surplus": 899}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅนฝๅˆซๅ›Š (ๅŠ ้€Ÿ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "haste_base": 2312}, "embed": {"magical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็›ˆ็ปๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ฏญ้˜”ๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "strain_base": 2055}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ“’้›จๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "strain_base": 2055}, "embed": {"magical_attack_power_base": 86}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ผ ้›ทๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "้˜ฒๅพก", "level": 11000, "max_strength": 6, "base": {}, "magic": {"surplus": 1285, "strain_base": 642}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็บต็›ฎๅ›Š (ไผšๅฟƒ) 11000": {"school": "้€š็”จ", "kind": "ๆฒป็–—", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_critical_strike_base": 2312}, "embed": {}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆฝ‹้˜ณๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "่บซๆณ•", "level": 11000, "max_strength": 6, "base": {}, "magic": {"agility_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"agility_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸ็ๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅ…ƒๆฐ”", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spunk_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "surplus": 2055}, "embed": {"spunk_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅพท่ฅ„ๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๆ น้ชจ", "level": 11000, "max_strength": 6, "base": {}, "magic": {"spirit_base": 461, "magical_attack_power_base": 897, "magical_overcome_base": 2312, "surplus": 2055}, "embed": {"spirit_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
 
1
+ {"ๆณ‰ๆฝบๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 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": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ไผšๆ•ˆ) 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": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11900": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11900, "max_strength": 6, "base": {}, "magic": {"strength_base": 499, "physical_attack_power_base": 809, "physical_overcome_base": 2502, "strain_base": 2224}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่™š้Ÿณๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11800": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11800, "max_strength": 6, "base": {}, "magic": {"strength_base": 494, "physical_attack_power_base": 802, "physical_critical_strike_base": 2481, "surplus": 2205}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "่ง‚ๆฉๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11500, "max_strength": 6, "base": {}, "magic": {"strength_base": 482, "physical_attack_power_base": 782, "physical_overcome_base": 2417, "surplus": 2149}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ไผšๅฟƒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1924, "surplus": 1612, "physical_overcome_base": 1746, "physical_critical_strike_base": 1746}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 1744, "surplus": 2686, "physical_overcome_base": 2820}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅค–ๅŠŸๆ— ๅฐๅ›Š (ไผšๅฟƒ) 11500": {"school": "็ฒพ็ฎ€", "kind": "ๅค–ๅŠŸ", "level": 11500, "max_strength": 3, "base": {}, "magic": {"physical_attack_power_base": 2044, "physical_critical_strike_base": 4768}, "embed": {"physical_critical_power_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11300": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11300, "max_strength": 6, "base": {}, "magic": {"strength_base": 473, "physical_attack_power_base": 768, "physical_overcome_base": 2375, "strain_base": 2112}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้™ๅฑฑๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11200": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11200, "max_strength": 6, "base": {}, "magic": {"strength_base": 469, "physical_attack_power_base": 761, "physical_overcome_base": 2354, "strain_base": 2093}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅบฆ้ฃžๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_overcome_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็ƒŸๆขฆๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "strain_base": 2083}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ—‹ๅฑฑ็ฎญๅ›Š (ๅŠ ้€Ÿ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "haste_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆน˜็ฟๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11150": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11150, "max_strength": 6, "base": {}, "magic": {"strength_base": 467, "physical_attack_power_base": 758, "physical_critical_strike_base": 2344, "surplus": 2083}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ไธดๆŽฃๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11100": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11100, "max_strength": 6, "base": {}, "magic": {"strength_base": 465, "physical_attack_power_base": 754, "physical_critical_strike_base": 2333, "strain_base": 2074}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้ฃŽ้”€ๆฎ‹็ƒŸยทๆ‰ฟๅนณๅ›Š (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฎธ้ฃŽ (ไผšๅฟƒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "strain_base": 2055}, "embed": {"physical_critical_strike_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ‹ญๆฑŸๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้กนๆ˜Œๅ›Š (ๅŠ ้€Ÿ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "haste_base": 2312, "strain_base": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๆ›ฒ้ƒฆๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "็พกๅŒๅ›Š (็ ดๆ‹› ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "surplus": 2312, "strain_base": 2055}, "embed": {"strain_base": 161}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅฟ†ๆ•ฌๅ›Š (ไผšๅฟƒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_critical_strike_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "ๅžฃ็ฟฐๅ›Š (็ ด้˜ฒ ๆ— ๅŒ) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "strain_base": 2055}, "embed": {"physical_attack_power_base": 72}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}, "้‡ๅ…ณๅ›Š (็ ด้˜ฒ ็ ดๆ‹›) 11000": {"school": "้€š็”จ", "kind": "ๅŠ›้“", "level": 11000, "max_strength": 6, "base": {}, "magic": {"strength_base": 461, "physical_attack_power_base": 748, "physical_overcome_base": 2312, "surplus": 2055}, "embed": {"strength_base": 36}, "gains": [], "special_enchant": [], "set_id": null, "set_attr": {}, "set_gain": {}}}
qt/assets/equipments/wrist CHANGED
The diff for this file is too large to render. See raw diff
 
qt/components/__init__.py CHANGED
@@ -49,8 +49,6 @@ class TableWithLabel(LabelWidget):
49
  for j, e in enumerate(row):
50
  self.table.setItem(i, j, QTableWidgetItem(e))
51
 
52
- self.table.resizeColumnsToContents()
53
-
54
 
55
  class ListWithLabel(LabelWidget):
56
  def __init__(self, label, max_select: int = 4, items: list = None):
 
49
  for j, e in enumerate(row):
50
  self.table.setItem(i, j, QTableWidgetItem(e))
51
 
 
 
52
 
53
  class ListWithLabel(LabelWidget):
54
  def __init__(self, label, max_select: int = 4, items: list = None):
qt/constant.py CHANGED
@@ -11,7 +11,7 @@ from base.skill import Skill
11
 
12
  # from general.gains import equipment
13
 
14
- from schools import first
15
 
16
  """ Directory """
17
  # ASSETS_DIR = os.path.join(os.getcwd(), "qt/assets")
@@ -157,17 +157,17 @@ SUPPORT_SCHOOL = {
157
  school="้œธๅˆ€",
158
  major="ๅŠ›้“",
159
  kind="ๅค–ๅŠŸ",
160
- attribute=first.BeiAoJue,
161
  formation="้œœๅฒšๆด—้”‹้˜ต",
162
- skills=first.SKILLS,
163
- buffs=first.BUFFS,
164
- talent_gains=first.TALENT_GAINS,
165
- talents=first.TALENTS,
166
- talent_decoder=first.TALENT_DECODER,
167
- talent_encoder=first.TALENT_ENCODER,
168
- recipe_gains=first.RECIPE_GAINS,
169
- recipes=first.RECIPES,
170
- gains=first.GAINS,
171
  display_attrs={
172
  "strength": "ๅŠ›้“",
173
  "base_physical_attack_power": "ๅŸบ็ก€ๆ”ปๅ‡ป",
 
11
 
12
  # from general.gains import equipment
13
 
14
+ from schools import bei_ao_jue
15
 
16
  """ Directory """
17
  # ASSETS_DIR = os.path.join(os.getcwd(), "qt/assets")
 
157
  school="้œธๅˆ€",
158
  major="ๅŠ›้“",
159
  kind="ๅค–ๅŠŸ",
160
+ attribute=bei_ao_jue.BeiAoJue,
161
  formation="้œœๅฒšๆด—้”‹้˜ต",
162
+ skills=bei_ao_jue.SKILLS,
163
+ buffs=bei_ao_jue.BUFFS,
164
+ talent_gains=bei_ao_jue.TALENT_GAINS,
165
+ talents=bei_ao_jue.TALENTS,
166
+ talent_decoder=bei_ao_jue.TALENT_DECODER,
167
+ talent_encoder=bei_ao_jue.TALENT_ENCODER,
168
+ recipe_gains=bei_ao_jue.RECIPE_GAINS,
169
+ recipes=bei_ao_jue.RECIPES,
170
+ gains=bei_ao_jue.GAINS,
171
  display_attrs={
172
  "strength": "ๅŠ›้“",
173
  "base_physical_attack_power": "ๅŸบ็ก€ๆ”ปๅ‡ป",
qt/scripts/dashboard.py CHANGED
@@ -79,7 +79,7 @@ def dashboard_script(parser: Parser,
79
 
80
  dashboard_widget.final_attribute.set_content(school.attr_content(attribute))
81
 
82
- total_damage, total_gradient, details, summary = analyze_details(record, attribute, school)
83
  for gain in gains:
84
  attribute -= gain
85
  school.skills -= gain
 
79
 
80
  dashboard_widget.final_attribute.set_content(school.attr_content(attribute))
81
 
82
+ total_damage, total_gradient, details, summary = analyze_details(record, duration, attribute, school)
83
  for gain in gains:
84
  attribute -= gain
85
  school.skills -= gain
qt/scripts/equipments.py CHANGED
@@ -174,7 +174,7 @@ class Equipments:
174
  break
175
  final_gains += gains
176
 
177
- return [gain for gain in final_gains]
178
 
179
 
180
  def equipments_script(equipments_widget: EquipmentsWidget):
@@ -189,7 +189,6 @@ def equipments_script(equipments_widget: EquipmentsWidget):
189
  if not equipment_name:
190
  equipment.clear()
191
  widget.detail_widget.hide()
192
- widget.output_widget.hide()
193
  return
194
 
195
  if equipment.strength_level == equipment.max_strength:
 
174
  break
175
  final_gains += gains
176
 
177
+ return [tuple(gain) if isinstance(gain, list) else int(gain) for gain in final_gains]
178
 
179
 
180
  def equipments_script(equipments_widget: EquipmentsWidget):
 
189
  if not equipment_name:
190
  equipment.clear()
191
  widget.detail_widget.hide()
 
192
  return
193
 
194
  if equipment.strength_level == equipment.max_strength:
qt/scripts/top.py CHANGED
@@ -160,8 +160,12 @@ def top_script(top_widget: TopWidget, config_widget: QWidget, dashboard_widget:
160
  if detail['school'] not in ("็ฒพ็ฎ€", "้€š็”จ", school.school):
161
  continue
162
  choices.append(name)
163
-
164
- equipment_widget.equipment.set_items(choices)
 
 
 
 
165
 
166
  if equipment_widget.stones_json:
167
  equipment_widget.stone_level.combo_box.setCurrentIndex(MAX_STONE_LEVEL)
 
160
  if detail['school'] not in ("็ฒพ็ฎ€", "้€š็”จ", school.school):
161
  continue
162
  choices.append(name)
163
+ current_equipment = equipment_widget.equipment.combo_box.currentText()
164
+ if current_equipment in choices:
165
+ default_index = choices.index(current_equipment)
166
+ else:
167
+ default_index = -1
168
+ equipment_widget.equipment.set_items(choices, default_index=default_index)
169
 
170
  if equipment_widget.stones_json:
171
  equipment_widget.stone_level.combo_box.setCurrentIndex(MAX_STONE_LEVEL)
schools/bei_ao_jue/__init__.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from schools.bei_ao_jue.skills import SKILLS
2
+ from schools.bei_ao_jue.buffs import BUFFS
3
+ from schools.bei_ao_jue.talents import TALENT_GAINS, TALENTS, TALENT_DECODER, TALENT_ENCODER
4
+ from schools.bei_ao_jue.recipes import RECIPE_GAINS, RECIPES
5
+ from schools.bei_ao_jue.gains import GAINS
6
+ from schools.bei_ao_jue.attribute import BeiAoJue
schools/{first โ†’ bei_ao_jue}/attribute.py RENAMED
File without changes
schools/{first โ†’ bei_ao_jue}/buffs.py RENAMED
File without changes
schools/{first โ†’ bei_ao_jue}/gains.py RENAMED
File without changes
schools/{first โ†’ bei_ao_jue}/recipes.py RENAMED
File without changes
schools/{first โ†’ bei_ao_jue}/skills.py RENAMED
File without changes
schools/{first โ†’ bei_ao_jue}/talents.py RENAMED
File without changes
schools/first/__init__.py DELETED
@@ -1,6 +0,0 @@
1
- from schools.first.skills import SKILLS
2
- from schools.first.buffs import BUFFS
3
- from schools.first.talents import TALENT_GAINS, TALENTS, TALENT_DECODER, TALENT_ENCODER
4
- from schools.first.recipes import RECIPE_GAINS, RECIPES
5
- from schools.first.gains import GAINS
6
- from schools.first.attribute import BeiAoJue
 
 
 
 
 
 
 
schools/first/test.py DELETED
@@ -1,21 +0,0 @@
1
- from utils.analyzer import analyze_details
2
- from qt.scripts.top import Parser
3
- from schools.first.attribute import BeiAoJue
4
-
5
-
6
- if __name__ == '__main__':
7
- attribute = BeiAoJue()
8
- attribute.strength_base += 6665
9
- attribute.weapon_damage_base += 3291
10
- attribute.weapon_damage_rand += 2194
11
- attribute.surplus += 29401
12
- attribute.strain_base += 15598
13
- attribute.physical_attack_power_base += 28964
14
- attribute.physical_critical_strike_base += 30507
15
- attribute.physical_overcome_base += 24303
16
- attribute.physical_critical_power_base += 7905
17
-
18
- parser = Parser()
19
- parser("logs.jcl")
20
- analyze_details(parser, attribute, parser.school)
21
- print(parser.records)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
utils/analyzer.py CHANGED
@@ -20,10 +20,11 @@ def refresh_status(existed_buffs, buffs, attribute: Attribute, school: School):
20
  school.skills = school.skills + buff
21
 
22
 
23
- def analyze_details(record, attribute: Attribute, school: School):
24
  details = {}
25
  total_damage = 0
26
  total_gradients = {attr: 0. for attr in attribute.grad_attrs}
 
27
 
28
  existed_buffs = []
29
  for skill, status in record.items():
@@ -34,6 +35,9 @@ def analyze_details(record, attribute: Attribute, school: School):
34
  skill_detail = {}
35
  details[skill.display_name] = skill_detail
36
  for buffs, timeline in status.items():
 
 
 
37
  refresh_status(existed_buffs, buffs, attribute, school)
38
 
39
  damage, critical_strike, critical_damage, expected_damage = skill(attribute)
 
20
  school.skills = school.skills + buff
21
 
22
 
23
+ def analyze_details(record, duration: int, attribute: Attribute, school: School):
24
  details = {}
25
  total_damage = 0
26
  total_gradients = {attr: 0. for attr in attribute.grad_attrs}
27
+ duration *= 1000
28
 
29
  existed_buffs = []
30
  for skill, status in record.items():
 
35
  skill_detail = {}
36
  details[skill.display_name] = skill_detail
37
  for buffs, timeline in status.items():
38
+ timeline = [t for t in timeline if t < duration]
39
+ if not timeline:
40
+ continue
41
  refresh_status(existed_buffs, buffs, attribute, school)
42
 
43
  damage, critical_strike, critical_damage, expected_damage = skill(attribute)