微调Enka下圣遗物statsIds的计算逻辑

This commit is contained in:
Kokomi 2023-02-13 16:31:23 +08:00
parent 817ae8fb46
commit a54b9c6bd4
8 changed files with 260 additions and 244 deletions

View File

@ -4,7 +4,7 @@
* 重写底层面板、角色数据获取与保存逻辑 * 重写底层面板、角色数据获取与保存逻辑
* 底层完全兼容面板及Mys数据对于miao-plugin的大部分场景可做到数据通用 * 底层完全兼容面板及Mys数据对于miao-plugin的大部分场景可做到数据通用
* 角色数据及天赋增加缓存逻辑有缓存数据情况下可在ck失效/验证码等情况下正常使用功能 * 角色数据及天赋增加缓存逻辑有缓存数据情况下可在ck失效/验证码等情况下正常使用功能
* 面板底层数据结构优化Enka下使用propIds存储圣遗物数据 * 面板底层数据结构优化Enka下使用statsIds存储圣遗物数据
* 初步增加`#角色`功能查询并展示Mys角色信息尚未完善 * 初步增加`#角色`功能查询并展示Mys角色信息尚未完善
* Yunzai需要跟随游戏版本升级的功能会逐步在miao-plugin中提供以保障对应功能相对长期可用 * Yunzai需要跟随游戏版本升级的功能会逐步在miao-plugin中提供以保障对应功能相对长期可用
* 暂时默认关闭,如需开启可在`#喵喵设置`中启用 * 暂时默认关闭,如需开启可在`#喵喵设置`中启用

View File

@ -81,23 +81,20 @@ class Artifact extends Base {
if (!cfg) { if (!cfg) {
return true return true
} }
let { key, eff } = cfg let { key, value } = cfg
if (!tmp[key]) { if (!tmp[key]) {
tmp[key] = { tmp[key] = {
key, key,
eff: 0, eff: 0,
upNum: 0 upNum: 0,
value: 0
} }
ret.push(tmp[key]) ret.push(tmp[key])
} }
tmp[key].eff += eff tmp[key].eff += value / attrMap[key].value * starEff[star]
tmp[key].value += value * (attrMap[key].format === 'pct' ? 100 : 1) * starEff[star]
tmp[key].upNum++ tmp[key].upNum++
}) })
lodash.forEach(tmp, (ds, key) => {
if (attrMap[key]) {
ds.value = attrMap[key].value * ds.eff * starEff[star]
}
})
return ret return ret
} }
} }

View File

@ -6,7 +6,7 @@ import AvatarArtis from './AvatarArtis.js'
import { Artifact, ArtifactSet, Character } from './index.js' import { Artifact, ArtifactSet, Character } from './index.js'
import { Format } from '../components/index.js' import { Format } from '../components/index.js'
import ArtisMark from './profile-lib/ArtisMark.js' import ArtisMark from './profile-lib/ArtisMark.js'
import { attrMap, attrValue } from '../resources/meta/artifact/index.js' import { attrMap } from '../resources/meta/artifact/index.js'
import CharArtis from './profile-lib/CharArtis.js' import CharArtis from './profile-lib/CharArtis.js'
export default class ProfileArtis extends AvatarArtis { export default class ProfileArtis extends AvatarArtis {
@ -42,13 +42,13 @@ export default class ProfileArtis extends AvatarArtis {
...attr, ...attr,
weight, weight,
fixWeight: weight, fixWeight: weight,
mark: weight / attrValue[key] mark: weight / attr.value
} }
if (!k) { if (!k) {
ret.mark = weight / attrValue[key] ret.mark = weight / attr.value
} else { } else {
let plus = k === 'atk' ? 520 : 0 let plus = k === 'atk' ? 520 : 0
ret.mark = weight / attrValue[k] / (baseAttr[k] + plus) * 100 ret.mark = weight / attrMap[k].value / (baseAttr[k] + plus) * 100
ret.fixWeight = weight * attr.value / attrMap[k].value / (baseAttr[k] + plus) * 100 ret.fixWeight = weight * attr.value / attrMap[k].value / (baseAttr[k] + plus) * 100
} }
attrs[key] = ret attrs[key] = ret

View File

@ -11,6 +11,7 @@ let MiaoData = {
avatar.setAvatar({ avatar.setAvatar({
level: ds.level, level: ds.level,
cons: ds.constellationNum || 0, cons: ds.constellationNum || 0,
promote: ds.promoteLevel,
fetter: ds.fetterLevel, fetter: ds.fetterLevel,
costume: char.checkCostume(ds.costumeID) ? ds.costumeID : 0, costume: char.checkCostume(ds.costumeID) ? ds.costumeID : 0,
elem: talentRet.elem, elem: talentRet.elem,

View File

@ -24,6 +24,24 @@ class AttrCalc {
return new AttrCalc(profile) return new AttrCalc(profile)
} }
static calcPromote (lv) {
if (lv === 20) {
return 1
}
if (lv === 90) {
return 6
}
let lvs = [1, 20, 40, 50, 60, 70, 80, 90]
let promote = 0
for (let idx = 0; idx < lvs.length - 1; idx++) {
if (lv >= lvs[idx] && lv <= lvs[idx + 1]) {
return promote
}
promote++
}
return promote
}
/** /**
* 面板属性计算 * 面板属性计算
* @returns {{}} * @returns {{}}
@ -196,23 +214,6 @@ class AttrCalc {
} }
this.attr.addAttr(key, ds.value * 1) this.attr.addAttr(key, ds.value * 1)
} }
static calcPromote (lv) {
if (lv === 20) {
return 1
}
if (lv === 90) {
return 6
}
let lvs = [1, 20, 40, 50, 60, 70, 80, 90]
let promote = 0
for (let idx = 0; idx < lvs.length - 1; idx++) {
if (lv >= lvs[idx] && lv <= lvs[idx + 1]) {
return promote
}
promote++
}
}
} }
export default AttrCalc export default AttrCalc

View File

@ -43,7 +43,7 @@
<span class="name">{{char.abbr}}<span class="cons cons-{{char.cons}}">{{char.cons}}</span></span> <span class="name">{{char.abbr}}<span class="cons cons-{{char.cons}}">{{char.cons}}</span></span>
{{if char.groupRank}} {{if char.groupRank}}
{{set gr = char.groupRank}} {{set gr = char.groupRank}}
{{set rank = gr.rank >= 15 ? 10:(gr.rank <=3 ? gr.rank : 4)}} {{set rank = gr.rank >= (rankCfg.number || 15) ? 10:(gr.rank <=3 ? gr.rank : 4)}}
<div class="group-rank rank-{{rank}} rank-type-{{gr.rankType}}"> <div class="group-rank rank-{{rank}} rank-type-{{gr.rankType}}">
<span>{{gr.rank}}</span> <span>{{gr.rank}}</span>
</div> </div>

View File

@ -1,3 +1,7 @@
/**
* 角色的默认评分规则
* 如character/${name}/artis.js下有角色自定义规则优先使用自定义
*/
export const usefulAttr = { export const usefulAttr = {
神里绫人: { hp: 50, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 30, heal: 0 }, 神里绫人: { hp: 50, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 30, heal: 0 },
八重神子: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 75, dmg: 100, phy: 0, recharge: 55, heal: 0 }, 八重神子: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 75, dmg: 100, phy: 0, recharge: 55, heal: 0 },
@ -59,6 +63,6 @@ export const usefulAttr = {
莱依拉: { hp: 100, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 35 }, 莱依拉: { hp: 100, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 35 },
流浪者: { hp: 0, atk: 80, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 35, heal: 0 }, 流浪者: { hp: 0, atk: 80, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 35, heal: 0 },
珐露珊: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 75, phy: 0, recharge: 75, heal: 0 }, 珐露珊: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 75, phy: 0, recharge: 75, heal: 0 },
瑶瑶: { hp: 100, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 0, dmg: 100, phy: 0, recharge: 75, heal: 100 }, 瑶瑶: { hp: 100, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 75, dmg: 100, phy: 0, recharge: 75, heal: 100 },
艾尔海森: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 100, dmg: 100, phy: 0, recharge: 35, heal: 0 } 艾尔海森: { hp: 0, atk: 75, def: 0, cpct: 100, cdmg: 100, mastery: 100, dmg: 100, phy: 0, recharge: 35, heal: 0 }
} }

View File

@ -1,3 +1,6 @@
import lodash from 'lodash'
import { Format } from '../../../components/index.js'
export const abbr = { export const abbr = {
炽烈的炎之魔女: '魔女', 炽烈的炎之魔女: '魔女',
昔日宗室之仪: '宗室', 昔日宗室之仪: '宗室',
@ -40,36 +43,42 @@ export const abbr = {
乐园遗落之花: '乐园' 乐园遗落之花: '乐园'
} }
export const attrValue = { export const mainAttr = {
cpct: 3.89, 3: 'atk,def,hp,mastery,recharge'.split(','),
cdmg: 7.77, 4: 'atk,def,hp,mastery,dmg,phy'.split(','),
mastery: 23.31, 5: 'atk,def,hp,mastery,heal,cpct,cdmg'.split(',')
atk: 5.83,
hp: 5.83,
def: 7.29,
recharge: 6.48,
dmg: 5.825,
phy: 7.288,
heal: 4.487
} }
export const subAttr = 'atk,atkPlus,def,defPlus,hp,hpPlus,mastery,recharge,cpct,cdmg'.split(',')
/**
* 圣遗物词条配置
* @[]value 副词条单次提升值最大档位
* @[]valueMin 副词条单次提升最小值
* @[]calc 伤害计算时变更的字段type
* @[]type 词条的类型 normal:普通字段 plus:小词条
* @[]base 词条类型为小词条时对应的大词条
* @[]text 展示文字
*/
export const attrMap = { export const attrMap = {
atk: { title: '大攻击', format: 'pct', calc: 'pct', type: 'normal', value: 5.83, text: '5.83%', valueMin: 4.08 }, atk: { title: '大攻击', format: 'pct', calc: 'pct' },
atkPlus: { title: '小攻击', format: 'comma', type: 'plus', base: 'atk', value: 19.45, valueMin: 13.62 }, atkPlus: { title: '小攻击', format: 'comma' },
def: { title: '大防御', format: 'pct', calc: 'pct', type: 'normal', value: 7.2875, text: '7.29%', valueMin: 5.1 }, def: { title: '大防御', format: 'pct', calc: 'pct' },
defPlus: { title: '小防御', format: 'comma', type: 'plus', base: 'def', value: 23.15, valueMin: 16.2 }, defPlus: { title: '小防御', format: 'comma' },
hp: { title: '大生命', format: 'pct', calc: 'pct', type: 'normal', value: 5.83, text: '5.83%', valueMin: 4.08 }, hp: { title: '大生命', format: 'pct', calc: 'pct' },
hpPlus: { title: '小生命', format: 'comma', type: 'plus', base: 'hp', value: 298.75, valueMin: 209.13 }, hpPlus: { title: '小生命', format: 'comma' },
cpct: { title: '暴击率', format: 'pct', calc: 'plus', type: 'normal', value: 3.889, text: '3.89%', valueMin: 2.72 }, cpct: { title: '暴击率', format: 'pct', calc: 'plus' },
cdmg: { title: '暴击伤害', format: 'pct', calc: 'plus', type: 'normal', value: 7.778, text: '7.77%', valueMin: 5.44 }, cdmg: { title: '暴击伤害', format: 'pct', calc: 'plus' },
mastery: { title: '元素精通', format: 'comma', calc: 'plus', type: 'normal', value: 23.3125, text: '23.31', valueMin: 16.32 }, mastery: { title: '元素精通', format: 'comma', calc: 'plus' },
recharge: { title: '充能效率', format: 'pct', calc: 'plus', type: 'normal', value: 6.48, text: '6.48%', valueMin: 4.53 }, recharge: { title: '充能效率', format: 'pct', calc: 'plus' },
dmg: { title: '元素伤害', format: 'pct', type: 'normal', value: 5.83, text: '5.83%' }, dmg: { title: '元素伤害', format: 'pct' },
phy: { title: '物伤加成', format: 'pct', type: 'normal', value: 7.288, text: '7.29%' }, phy: { title: '物伤加成', format: 'pct' },
heal: { title: '治疗加成', format: 'pct', type: 'normal', value: 4.487, text: '4.49%' } heal: { title: '治疗加成', format: 'pct' }
} }
let basicNum = 3.886449
let attrPct = { // const basicNum = 23.312 / 6
const basicNum = 3.885
const attrPct = {
atk: 1.5, atk: 1.5,
atkPlus: 5, atkPlus: 5,
def: 1.875, def: 1.875,
@ -86,24 +95,27 @@ let attrPct = {
} }
let anMap = {} let anMap = {}
for (let attr in attrMap) { lodash.forEach(attrMap, (attr, key) => {
anMap[attrMap[attr].title] = attr anMap[attr.title] = key
if (attrPct[attr]) { if (attrPct[key]) {
attrMap[attr].value = basicNum * attrPct[attr] // 设置value
attrMap[attr].valueMin = basicNum * attrPct[attr] * 0.7 attr.value = basicNum * attrPct[key]
}
}
// 设置valueMin
if (subAttr.includes(key)) {
attr.valueMin = basicNum * attrPct[key] * 0.7
}
// 设置type
attr.base = { hpPlus: 'hp', atkPlus: 'atk', defPlus: 'def' }[key]
attr.type = attr.base ? 'plus' : 'normal'
// 设置展示文字
attr.text = Format[attr.format](attr.value, 2)
}
})
export const attrNameMap = anMap export const attrNameMap = anMap
export const mainAttr = { // ids映射关系
3: 'atk,def,hp,mastery,recharge'.split(','),
4: 'atk,def,hp,mastery,dmg,phy'.split(','),
5: 'atk,def,hp,mastery,heal,cpct,cdmg'.split(',')
}
export const subAttr = 'atk,atkPlus,def,defPlus,hp,hpPlus,mastery,recharge,cpct,cdmg'.split(',')
export const mainIdMap = { export const mainIdMap = {
10001: 'hpPlus', 10001: 'hpPlus',
10002: 'hp', 10002: 'hp',
@ -165,175 +177,176 @@ export const mainIdMap = {
50890: 'phy', 50890: 'phy',
50880: 'mastery' 50880: 'mastery'
} }
export const attrIdMap = { export const attrIdMap = {
101021: { key: 'hpPlus', eff: 0.8 }, 101021: { key: 'hpPlus', value: 23.899999618530273 },
101022: { key: 'hpPlus', eff: 1 }, 101022: { key: 'hpPlus', value: 29.8799991607666 },
101031: { key: 'hp', eff: 0.8 }, 201021: { key: 'hpPlus', value: 50.189998626708984 },
101032: { key: 'hp', eff: 1 }, 201022: { key: 'hpPlus', value: 60.95000076293945 },
101051: { key: 'atkPlus', eff: 0.8 }, 201023: { key: 'hpPlus', value: 71.69999694824219 },
101052: { key: 'atkPlus', eff: 1 }, 301021: { key: 'hpPlus', value: 100.37999725341797 },
101061: { key: 'atk', eff: 0.8 }, 301022: { key: 'hpPlus', value: 114.7200012207031 },
101062: { key: 'atk', eff: 1 }, 301023: { key: 'hpPlus', value: 129.05999755859375 },
101081: { key: 'defPlus', eff: 0.8 }, 301024: { key: 'hpPlus', value: 143.39999389648438 },
101082: { key: 'defPlus', eff: 1 }, 401021: { key: 'hpPlus', value: 167.3000030517578 },
101091: { key: 'def', eff: 0.8 }, 401022: { key: 'hpPlus', value: 191.1999969482422 },
101092: { key: 'def', eff: 1 }, 401023: { key: 'hpPlus', value: 215.1000061035156 },
101201: { key: 'cpct', eff: 0.8 }, 401024: { key: 'hpPlus', value: 239.0 },
101202: { key: 'cpct', eff: 1 }, 501021: { key: 'hpPlus', value: 209.1300048828125 },
101221: { key: 'cdmg', eff: 0.8 }, 501022: { key: 'hpPlus', value: 239.0 },
101222: { key: 'cdmg', eff: 1 }, 501023: { key: 'hpPlus', value: 268.8800048828125 },
101231: { key: 'recharge', eff: 0.8 }, 501024: { key: 'hpPlus', value: 298.75 },
101232: { key: 'recharge', eff: 1 }, 101031: { key: 'hp', value: 0.011699999682605267 },
101241: { key: 'mastery', eff: 0.8 }, 101032: { key: 'hp', value: 0.014600000344216824 },
101242: { key: 'mastery', eff: 1 }, 201031: { key: 'hp', value: 0.016300000250339508 },
201021: { key: 'hpPlus', eff: 0.7 }, 201032: { key: 'hp', value: 0.01979999989271164 },
201022: { key: 'hpPlus', eff: 0.85 }, 201033: { key: 'hp', value: 0.02329999953508377 },
201023: { key: 'hpPlus', eff: 1 }, 301031: { key: 'hp', value: 0.02449999935925007 },
201031: { key: 'hp', eff: 0.7 }, 301032: { key: 'hp', value: 0.02800000086426735 },
201032: { key: 'hp', eff: 0.85 }, 301033: { key: 'hp', value: 0.03150000050663948 },
201033: { key: 'hp', eff: 1 }, 301034: { key: 'hp', value: 0.03500000014901161 },
201051: { key: 'atkPlus', eff: 0.7 }, 401031: { key: 'hp', value: 0.032600000500679016 },
201052: { key: 'atkPlus', eff: 0.85 }, 401032: { key: 'hp', value: 0.037300001829862595 },
201053: { key: 'atkPlus', eff: 1 }, 401033: { key: 'hp', value: 0.041999999433755875 },
201061: { key: 'atk', eff: 0.7 }, 401034: { key: 'hp', value: 0.04659999907016754 },
201062: { key: 'atk', eff: 0.85 }, 501031: { key: 'hp', value: 0.040800001472234726 },
201063: { key: 'atk', eff: 1 }, 501032: { key: 'hp', value: 0.04659999907016754 },
201081: { key: 'defPlus', eff: 0.7 }, 501033: { key: 'hp', value: 0.05249999836087227 },
201082: { key: 'defPlus', eff: 0.85 }, 501034: { key: 'hp', value: 0.05829999968409538 },
201083: { key: 'defPlus', eff: 1 }, 101051: { key: 'atkPlus', value: 1.559999942779541 },
201091: { key: 'def', eff: 0.7 }, 101052: { key: 'atkPlus', value: 1.9500000476837158 },
201092: { key: 'def', eff: 0.85 }, 201051: { key: 'atkPlus', value: 3.2699999809265137 },
201093: { key: 'def', eff: 1 }, 201052: { key: 'atkPlus', value: 3.9700000286102295 },
201201: { key: 'cpct', eff: 0.7 }, 201053: { key: 'atkPlus', value: 4.670000076293945 },
201202: { key: 'cpct', eff: 0.85 }, 301051: { key: 'atkPlus', value: 6.539999961853027 },
201203: { key: 'cpct', eff: 1 }, 301052: { key: 'atkPlus', value: 7.46999979019165 },
201221: { key: 'cdmg', eff: 0.7 }, 301053: { key: 'atkPlus', value: 8.399999618530273 },
201222: { key: 'cdmg', eff: 0.85 }, 301054: { key: 'atkPlus', value: 9.34000015258789 },
201223: { key: 'cdmg', eff: 1 }, 401051: { key: 'atkPlus', value: 10.890000343322754 },
201231: { key: 'recharge', eff: 0.7 }, 401052: { key: 'atkPlus', value: 12.449999809265137 },
201232: { key: 'recharge', eff: 0.85 }, 401053: { key: 'atkPlus', value: 14.0 },
201233: { key: 'recharge', eff: 1 }, 401054: { key: 'atkPlus', value: 15.5600004196167 },
201241: { key: 'mastery', eff: 0.7 }, 501051: { key: 'atkPlus', value: 13.619999885559082 },
201242: { key: 'mastery', eff: 0.85 }, 501052: { key: 'atkPlus', value: 15.5600004196167 },
201243: { key: 'mastery', eff: 1 }, 501053: { key: 'atkPlus', value: 17.510000228881836 },
301021: { key: 'hpPlus', eff: 0.7 }, 501054: { key: 'atkPlus', value: 19.450000762939453 },
301022: { key: 'hpPlus', eff: 0.8 }, 101061: { key: 'atk', value: 0.011699999682605267 },
301023: { key: 'hpPlus', eff: 0.9 }, 101062: { key: 'atk', value: 0.014600000344216824 },
301024: { key: 'hpPlus', eff: 1 }, 201061: { key: 'atk', value: 0.016300000250339508 },
301031: { key: 'hp', eff: 0.7 }, 201062: { key: 'atk', value: 0.01979999989271164 },
301032: { key: 'hp', eff: 0.8 }, 201063: { key: 'atk', value: 0.02329999953508377 },
301033: { key: 'hp', eff: 0.9 }, 301061: { key: 'atk', value: 0.02449999935925007 },
301034: { key: 'hp', eff: 1 }, 301062: { key: 'atk', value: 0.02800000086426735 },
301051: { key: 'atkPlus', eff: 0.7 }, 301063: { key: 'atk', value: 0.03150000050663948 },
301052: { key: 'atkPlus', eff: 0.8 }, 301064: { key: 'atk', value: 0.03500000014901161 },
301053: { key: 'atkPlus', eff: 0.9 }, 401061: { key: 'atk', value: 0.032600000500679016 },
301054: { key: 'atkPlus', eff: 1 }, 401062: { key: 'atk', value: 0.037300001829862595 },
301061: { key: 'atk', eff: 0.7 }, 401063: { key: 'atk', value: 0.041999999433755875 },
301062: { key: 'atk', eff: 0.8 }, 401064: { key: 'atk', value: 0.04659999907016754 },
301063: { key: 'atk', eff: 0.9 }, 501061: { key: 'atk', value: 0.040800001472234726 },
301064: { key: 'atk', eff: 1 }, 501062: { key: 'atk', value: 0.04659999907016754 },
301081: { key: 'defPlus', eff: 0.7 }, 501063: { key: 'atk', value: 0.05249999836087227 },
301082: { key: 'defPlus', eff: 0.8 }, 501064: { key: 'atk', value: 0.05829999968409538 },
301083: { key: 'defPlus', eff: 0.9 }, 101081: { key: 'defPlus', value: 1.850000023841858 },
301084: { key: 'defPlus', eff: 1 }, 101082: { key: 'defPlus', value: 2.309999942779541 },
301091: { key: 'def', eff: 0.7 }, 201081: { key: 'defPlus', value: 3.890000104904175 },
301092: { key: 'def', eff: 0.8 }, 201082: { key: 'defPlus', value: 4.71999979019165 },
301093: { key: 'def', eff: 0.9 }, 201083: { key: 'defPlus', value: 5.559999942779541 },
301094: { key: 'def', eff: 1 }, 301081: { key: 'defPlus', value: 7.78000020980835 },
301201: { key: 'cpct', eff: 0.7 }, 301082: { key: 'defPlus', value: 8.890000343322754 },
301202: { key: 'cpct', eff: 0.8 }, 301083: { key: 'defPlus', value: 10.0 },
301203: { key: 'cpct', eff: 0.9 }, 301084: { key: 'defPlus', value: 11.109999656677246 },
301204: { key: 'cpct', eff: 1 }, 401081: { key: 'defPlus', value: 12.960000038146973 },
301221: { key: 'cdmg', eff: 0.7 }, 401082: { key: 'defPlus', value: 14.819999694824219 },
301222: { key: 'cdmg', eff: 0.8 }, 401083: { key: 'defPlus', value: 16.670000076293945 },
301223: { key: 'cdmg', eff: 0.9 }, 401084: { key: 'defPlus', value: 18.520000457763672 },
301224: { key: 'cdmg', eff: 1 }, 501081: { key: 'defPlus', value: 16.200000762939453 },
301231: { key: 'recharge', eff: 0.7 }, 501082: { key: 'defPlus', value: 18.520000457763672 },
301232: { key: 'recharge', eff: 0.8 }, 501083: { key: 'defPlus', value: 20.829999923706055 },
301233: { key: 'recharge', eff: 0.9 }, 501084: { key: 'defPlus', value: 23.149999618530273 },
301234: { key: 'recharge', eff: 1 }, 101091: { key: 'def', value: 0.014600000344216824 },
301241: { key: 'mastery', eff: 0.7 }, 101092: { key: 'def', value: 0.018200000748038292 },
301242: { key: 'mastery', eff: 0.8 }, 201091: { key: 'def', value: 0.020400000736117363 },
301243: { key: 'mastery', eff: 0.9 }, 201092: { key: 'def', value: 0.024800000712275505 },
301244: { key: 'mastery', eff: 1 }, 201093: { key: 'def', value: 0.029100000858306885 },
401021: { key: 'hpPlus', eff: 0.7 }, 301091: { key: 'def', value: 0.03060000017285347 },
401022: { key: 'hpPlus', eff: 0.8 }, 301092: { key: 'def', value: 0.03500000014901161 },
401023: { key: 'hpPlus', eff: 0.9 }, 301093: { key: 'def', value: 0.03929999843239784 },
401024: { key: 'hpPlus', eff: 1 }, 301094: { key: 'def', value: 0.043699998408555984 },
401031: { key: 'hp', eff: 0.7 }, 401091: { key: 'def', value: 0.040800001472234726 },
401032: { key: 'hp', eff: 0.8 }, 401092: { key: 'def', value: 0.04659999907016754 },
401033: { key: 'hp', eff: 0.9 }, 401093: { key: 'def', value: 0.05249999836087227 },
401034: { key: 'hp', eff: 1 }, 401094: { key: 'def', value: 0.05829999968409538 },
401051: { key: 'atkPlus', eff: 0.7 }, 501091: { key: 'def', value: 0.050999999046325684 },
401052: { key: 'atkPlus', eff: 0.8 }, 501092: { key: 'def', value: 0.05829999968409538 },
401053: { key: 'atkPlus', eff: 0.9 }, 501093: { key: 'def', value: 0.06560000032186508 },
401054: { key: 'atkPlus', eff: 1 }, 501094: { key: 'def', value: 0.07289999723434448 },
401061: { key: 'atk', eff: 0.7 }, 101231: { key: 'recharge', value: 0.013000000268220901 },
401062: { key: 'atk', eff: 0.8 }, 101232: { key: 'recharge', value: 0.016200000420212746 },
401063: { key: 'atk', eff: 0.9 }, 201231: { key: 'recharge', value: 0.01810000091791153 },
401064: { key: 'atk', eff: 1 }, 201232: { key: 'recharge', value: 0.02199999988079071 },
401081: { key: 'defPlus', eff: 0.7 }, 201233: { key: 'recharge', value: 0.02590000070631504 },
401082: { key: 'defPlus', eff: 0.8 }, 301231: { key: 'recharge', value: 0.0272000003606081 },
401083: { key: 'defPlus', eff: 0.9 }, 301232: { key: 'recharge', value: 0.031099999323487282 },
401084: { key: 'defPlus', eff: 1 }, 301233: { key: 'recharge', value: 0.03500000014901161 },
401091: { key: 'def', eff: 0.7 }, 301234: { key: 'recharge', value: 0.03889999911189079 },
401092: { key: 'def', eff: 0.8 }, 401231: { key: 'recharge', value: 0.03629999980330467 },
401093: { key: 'def', eff: 0.9 }, 401232: { key: 'recharge', value: 0.0414000004529953 },
401094: { key: 'def', eff: 1 }, 401233: { key: 'recharge', value: 0.04659999907016754 },
401201: { key: 'cpct', eff: 0.7 }, 401234: { key: 'recharge', value: 0.05180000141263008 },
401202: { key: 'cpct', eff: 0.8 }, 501231: { key: 'recharge', value: 0.04529999941587448 },
401203: { key: 'cpct', eff: 0.9 }, 501232: { key: 'recharge', value: 0.05180000141263008 },
401204: { key: 'cpct', eff: 1 }, 501233: { key: 'recharge', value: 0.05829999968409538 },
401221: { key: 'cdmg', eff: 0.7 }, 501234: { key: 'recharge', value: 0.06480000168085098 },
401222: { key: 'cdmg', eff: 0.8 }, 101241: { key: 'mastery', value: 4.659999847412109 },
401223: { key: 'cdmg', eff: 0.9 }, 101242: { key: 'mastery', value: 5.829999923706055 },
401224: { key: 'cdmg', eff: 1 }, 201241: { key: 'mastery', value: 6.53000020980835 },
401231: { key: 'recharge', eff: 0.7 }, 201242: { key: 'mastery', value: 7.929999828338623 },
401232: { key: 'recharge', eff: 0.8 }, 201243: { key: 'mastery', value: 9.329999923706055 },
401233: { key: 'recharge', eff: 0.9 }, 301241: { key: 'mastery', value: 9.789999961853027 },
401234: { key: 'recharge', eff: 1 }, 301242: { key: 'mastery', value: 11.1899995803833 },
401241: { key: 'mastery', eff: 0.7 }, 301243: { key: 'mastery', value: 12.59000015258789 },
401242: { key: 'mastery', eff: 0.8 }, 301244: { key: 'mastery', value: 13.989999771118164 },
401243: { key: 'mastery', eff: 0.9 }, 401241: { key: 'mastery', value: 13.0600004196167 },
401244: { key: 'mastery', eff: 1 }, 401242: { key: 'mastery', value: 14.920000076293945 },
501021: { key: 'hpPlus', eff: 0.7 }, 401243: { key: 'mastery', value: 16.790000915527344 },
501022: { key: 'hpPlus', eff: 0.8 }, 401244: { key: 'mastery', value: 18.649999618530273 },
501023: { key: 'hpPlus', eff: 0.9 }, 501241: { key: 'mastery', value: 16.31999969482422 },
501024: { key: 'hpPlus', eff: 1 }, 501242: { key: 'mastery', value: 18.649999618530273 },
501031: { key: 'hp', eff: 0.7 }, 501243: { key: 'mastery', value: 20.979999542236328 },
501032: { key: 'hp', eff: 0.8 }, 501244: { key: 'mastery', value: 23.309999465942383 },
501033: { key: 'hp', eff: 0.9 }, 101201: { key: 'cpct', value: 0.007799999788403511 },
501034: { key: 'hp', eff: 1 }, 101202: { key: 'cpct', value: 0.009700000286102295 },
501051: { key: 'atkPlus', eff: 0.7 }, 201201: { key: 'cpct', value: 0.010900000110268593 },
501052: { key: 'atkPlus', eff: 0.8 }, 201202: { key: 'cpct', value: 0.013199999928474426 },
501053: { key: 'atkPlus', eff: 0.9 }, 201203: { key: 'cpct', value: 0.01549999974668026 },
501054: { key: 'atkPlus', eff: 1 }, 301201: { key: 'cpct', value: 0.016300000250339508 },
501061: { key: 'atk', eff: 0.7 }, 301202: { key: 'cpct', value: 0.01860000006854534 },
501062: { key: 'atk', eff: 0.8 }, 301203: { key: 'cpct', value: 0.020999999716877937 },
501063: { key: 'atk', eff: 0.9 }, 301204: { key: 'cpct', value: 0.02329999953508377 },
501064: { key: 'atk', eff: 1 }, 401201: { key: 'cpct', value: 0.021800000220537186 },
501081: { key: 'defPlus', eff: 0.7 }, 401202: { key: 'cpct', value: 0.024900000542402267 },
501082: { key: 'defPlus', eff: 0.8 }, 401203: { key: 'cpct', value: 0.02800000086426735 },
501083: { key: 'defPlus', eff: 0.9 }, 401204: { key: 'cpct', value: 0.031099999323487282 },
501084: { key: 'defPlus', eff: 1 }, 501201: { key: 'cpct', value: 0.0272000003606081 },
501091: { key: 'def', eff: 0.7 }, 501202: { key: 'cpct', value: 0.031099999323487282 },
501092: { key: 'def', eff: 0.8 }, 501203: { key: 'cpct', value: 0.03500000014901161 },
501093: { key: 'def', eff: 0.9 }, 501204: { key: 'cpct', value: 0.03889999911189079 },
501094: { key: 'def', eff: 1 }, 101221: { key: 'cdmg', value: 0.01549999974668026 },
501201: { key: 'cpct', eff: 0.7 }, 101222: { key: 'cdmg', value: 0.01940000057220459 },
501202: { key: 'cpct', eff: 0.8 }, 201221: { key: 'cdmg', value: 0.021800000220537186 },
501203: { key: 'cpct', eff: 0.9 }, 201222: { key: 'cdmg', value: 0.026399999856948853 },
501204: { key: 'cpct', eff: 1 }, 201223: { key: 'cdmg', value: 0.031099999323487282 },
501221: { key: 'cdmg', eff: 0.7 }, 301221: { key: 'cdmg', value: 0.032600000500679016 },
501222: { key: 'cdmg', eff: 0.8 }, 301222: { key: 'cdmg', value: 0.037300001829862595 },
501223: { key: 'cdmg', eff: 0.9 }, 301223: { key: 'cdmg', value: 0.041999999433755875 },
501224: { key: 'cdmg', eff: 1 }, 301224: { key: 'cdmg', value: 0.04659999907016754 },
501231: { key: 'recharge', eff: 0.7 }, 401221: { key: 'cdmg', value: 0.04349999874830246 },
501232: { key: 'recharge', eff: 0.8 }, 401222: { key: 'cdmg', value: 0.04969999939203262 },
501233: { key: 'recharge', eff: 0.9 }, 401223: { key: 'cdmg', value: 0.0560000017285347 },
501234: { key: 'recharge', eff: 1 }, 401224: { key: 'cdmg', value: 0.062199998646974564 },
501241: { key: 'mastery', eff: 0.7 }, 501221: { key: 'cdmg', value: 0.0544000007212162 },
501242: { key: 'mastery', eff: 0.8 }, 501222: { key: 'cdmg', value: 0.062199998646974564 },
501243: { key: 'mastery', eff: 0.9 }, 501223: { key: 'cdmg', value: 0.06989999860525131 },
501244: { key: 'mastery', eff: 1 } 501224: { key: 'cdmg', value: 0.07769999653100967 }
} }