@ -1,3 +1,6 @@
import lodash from 'lodash'
import { Format } from '../../../components/index.js'
export const abbr = {
炽烈的炎之魔女 : '魔女' ,
昔日宗室之仪 : '宗室' ,
@ -40,36 +43,42 @@ export const abbr = {
乐园遗落之花 : '乐园'
}
export const attrValue = {
cpct : 3.89 ,
cdmg : 7.77 ,
mastery : 23.31 ,
atk : 5.83 ,
hp : 5.83 ,
def : 7.29 ,
recharge : 6.48 ,
dmg : 5.825 ,
phy : 7.288 ,
heal : 4.487
export const mainAttr = {
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 ( ',' )
/ * *
* 圣遗物词条配置
* @ [ ] value 副词条单次提升值 ( 最大档位 )
* @ [ ] valueMin 副词条单次提升最小值
* @ [ ] calc 伤害计算时变更的字段type
* @ [ ] type 词条的类型 normal : 普通字段 plus : 小词条
* @ [ ] base 词条类型为小词条时 , 对应的大词条
* @ [ ] text 展示文字
* /
export const attrMap = {
atk : { title : '大攻击' , format : 'pct' , calc : 'pct' , type : 'normal' , value : 5.83 , text : '5.83%' , valueMin : 4.08 } ,
atkPlus : { title : '小攻击' , format : 'comma' , type : 'plus' , base : 'atk' , value : 19.45 , valueMin : 13.62 } ,
def : { title : '大防御' , format : 'pct' , calc : 'pct' , type : 'normal' , value : 7.2875 , text : '7.29%' , valueMin : 5.1 } ,
defPlus : { title : '小防御' , format : 'comma' , type : 'plus' , base : 'def' , value : 23.15 , valueMin : 16.2 } ,
hp : { title : '大生命' , format : 'pct' , calc : 'pct' , type : 'normal' , value : 5.83 , text : '5.83%' , valueMin : 4.08 } ,
hpPlus : { title : '小生命' , format : 'comma' , type : 'plus' , base : 'hp' , value : 298.75 , valueMin : 209.13 } ,
cpct : { title : '暴击率' , format : 'pct' , calc : 'plus' , type : 'normal' , value : 3.889 , text : '3.89%' , valueMin : 2.72 } ,
cdmg : { title : '暴击伤害' , format : 'pct' , calc : 'plus' , type : 'normal' , value : 7.778 , text : '7.77%' , valueMin : 5.44 } ,
mastery : { title : '元素精通' , format : 'comma' , calc : 'plus' , type : 'normal' , value : 23.3125 , text : '23.31' , valueMin : 16.32 } ,
recharge : { title : '充能效率' , format : 'pct' , calc : 'plus' , type : 'normal' , value : 6.48 , text : '6.48%' , valueMin : 4.53 } ,
dmg : { title : '元素伤害' , format : 'pct' , type : 'normal' , value : 5.83 , text : '5.83%' } ,
phy : { title : '物伤加成' , format : 'pct' , type : 'normal' , value : 7.288 , text : '7.29%' } ,
heal : { title : '治疗加成' , format : 'pct' , type : 'normal' , value : 4.487 , text : '4.49%' }
atk : { title : '大攻击' , format : 'pct' , calc : 'pct' } ,
atkPlus : { title : '小攻击' , format : 'comma' } ,
def : { title : '大防御' , format : 'pct' , calc : 'pct' } ,
defPlus : { title : '小防御' , format : 'comma' } ,
hp : { title : '大生命' , format : 'pct' , calc : 'pct' } ,
hpPlus : { title : '小生命' , format : 'comma' } ,
cpct : { title : '暴击率' , format : 'pct' , calc : 'plus' } ,
cdmg : { title : '暴击伤害' , format : 'pct' , calc : 'plus' } ,
mastery : { title : '元素精通' , format : 'comma' , calc : 'plus' } ,
recharge : { title : '充能效率' , format : 'pct' , calc : 'plus' } ,
dmg : { title : '元素伤害' , format : 'pct' } ,
phy : { title : '物伤加成' , format : 'pct' } ,
heal : { title : '治疗加成' , format : 'pct' }
}
let basicNum = 3.886449
let attrPct = {
// const basicNum = 23.312 / 6
const basicNum = 3.885
const attrPct = {
atk : 1.5 ,
atkPlus : 5 ,
def : 1.875 ,
@ -86,24 +95,27 @@ let attrPct = {
}
let anMap = { }
for ( let attr in attrMap ) {
anMap [ attrMap [ attr ] . title ] = attr
if ( attrPct [ attr ] ) {
attrMap [ attr ] . value = basicNum * attrPct [ attr ]
attrMap [ attr ] . valueMin = basicNum * attrPct [ attr ] * 0.7
}
}
lodash . forEach ( attrMap , ( attr , key ) => {
anMap [ attr . title ] = key
if ( attrPct [ key ] ) {
// 设置value
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 mainAttr = {
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 ( ',' )
// ids映射关系
export const mainIdMap = {
10001 : 'hpPlus' ,
10002 : 'hp' ,
@ -165,175 +177,176 @@ export const mainIdMap = {
50890 : 'phy' ,
50880 : 'mastery'
}
export const attrIdMap = {
101021 : { key : 'hpPlus' , eff: 0.8 } ,
101022 : { key : 'hpPlus' , eff: 1 } ,
10103 1: { key : 'hp ', eff : 0.8 } ,
101032: { key : 'hp' , eff : 1 } ,
101051: { key : 'atkPlus' , eff : 0.8 } ,
101052: { key : 'atkPlus' , eff : 1 } ,
101061: { key : 'atk' , eff : 0.8 } ,
101062: { key : 'atk' , eff : 1 } ,
101081: { key : 'defPlus' , eff : 0. 8 } ,
101082: { key : 'defPlus' , eff : 1 } ,
101091: { key : 'def' , eff : 0.8 } ,
101092: { key : 'def' , eff : 1 } ,
101201: { key : 'cpct' , eff : 0.8 } ,
101202: { key : 'cpct' , eff : 1 } ,
101221: { key : 'cdmg' , eff : 0.8 } ,
101222: { key : 'cdmg' , eff : 1 } ,
101231: { key : 'recharge' , eff : 0.8 } ,
101 232: { key : 'recharge' , eff : 1 } ,
101 241 : { key : ' mastery', eff : 0.8 } ,
101242 : { key : ' mastery', eff : 1 } ,
2010 21 : { key : 'hp Plus ', eff : 0. 7 } ,
2010 22: { key : 'hpPlus' , eff : 0.85 } ,
201023: { key : 'hpPlus' , eff : 1 } ,
201031 : { key : 'hp' , eff : 0. 7 } ,
201032 : { key : 'hp' , eff : 0. 85 } ,
201033: { key : 'hp' , eff : 1 } ,
201051: { key : 'atkPlus' , eff : 0.7 } ,
201052: { key : 'atkPlus' , eff : 0.8 5 } ,
201053: { key : 'atkPlus' , eff : 1 } ,
201061: { key : 'atk' , eff : 0.7 } ,
201062: { key : 'atk' , eff : 0.85 } ,
201063: { key : 'atk' , eff : 1 } ,
201081: { key : 'defPlus' , eff : 0. 7 } ,
201082: { key : 'defPlus' , eff : 0.85 } ,
201083: { key : 'defPlus' , eff : 1 } ,
201091: { key : 'def' , eff : 0.7 } ,
2010 92: { key : 'def' , eff : 0.85 } ,
2010 93: { key : 'def' , eff : 1 } ,
201 201: { key : 'cpct' , eff : 0.7 } ,
201202: { key : 'cpct' , eff : 0.85 } ,
201203: { key : 'cpct' , eff : 1 } ,
201221: { key : 'cdmg' , eff : 0.7 } ,
201222: { key : 'cdmg' , eff : 0.85 } ,
201223: { key : 'cdmg' , eff : 1 } ,
201231: { key : 'recharge' , eff : 0. 7 } ,
201232: { key : 'recharge' , eff : 0.85 } ,
201233: { key : 'recharge' , eff : 1 } ,
201241: { key : 'mastery' , eff : 0.7 } ,
201242: { key : 'mastery' , eff : 0.85 } ,
201243: { key : 'mastery' , eff : 1 } ,
301021: { key : 'hpPlus' , eff : 0.7 } ,
301022: { key : 'hpPlus' , eff : 0.8 } ,
301023: { key : 'hpPlus' , eff : 0.9 } ,
301024: { key : 'hpPlus' , eff : 1 } ,
301031: { key : 'hp' , eff : 0.7 } ,
301032: { key : 'hp' , eff : 0.8 } ,
3010 33: { key : 'hp' , eff : 0.9 } ,
3010 34: { key : 'hp' , eff : 1 } ,
3010 51: { key : 'atkPlus' , eff : 0.7 } ,
3010 52: { key : 'atkPlus' , eff : 0.8 } ,
301053 : { key : 'atk Plus ', eff : 0. 9 } ,
301054: { key : 'atkPlus' , eff : 1 } ,
301061 : { key : 'atk' , eff : 0. 7 } ,
301062: { key : 'atk' , eff : 0.8 } ,
301063: { key : 'atk' , eff : 0.9 } ,
301064: { key : 'atk' , eff : 1 } ,
301081: { key : 'defPlus' , eff : 0. 7 } ,
301082: { key : 'defPlus' , eff : 0. 8 } ,
301083: { key : 'defPlus' , eff : 0.9 } ,
301084: { key : 'defPlus' , eff : 1 } ,
301091: { key : 'def' , eff : 0.7 } ,
301092: { key : 'def' , eff : 0.8 } ,
301093: { key : 'def' , eff : 0.9 } ,
3010 94: { key : 'def' , eff : 1 } ,
301 201: { key : 'cpct' , eff : 0.7 } ,
301 202: { key : 'cpct' , eff : 0.8 } ,
301 203: { key : 'cpct' , eff : 0.9 } ,
301204: { key : 'cpct' , eff : 1 } ,
301221: { key : 'cdmg' , eff : 0.7 } ,
301222: { key : 'cdmg' , eff : 0.8 } ,
301223: { key : 'cdmg' , eff : 0.9 } ,
301224: { key : 'cdmg' , eff : 1 } ,
301231: { key : 'recharge' , eff : 0.7 } ,
301232: { key : 'recharge' , eff : 0.8 } ,
301233: { key : 'recharge' , eff : 0.9 } ,
301234: { key : 'recharge' , eff : 1 } ,
301241: { key : 'mastery' , eff : 0.7 } ,
301242: { key : 'mastery' , eff : 0.8 } ,
301243: { key : 'mastery' , eff : 0.9 } ,
301244: { key : 'mastery' , eff : 1 } ,
401021: { key : 'hpPlus' , eff : 0. 7 } ,
401022: { key : 'hpPlus' , eff : 0.8 } ,
401023: { key : 'hpPlus' , eff : 0.9 } ,
401024: { key : 'hpPlus' , eff : 1 } ,
4010 31: { key : 'hp' , eff : 0.7 } ,
4010 32: { key : 'hp' , eff : 0.8 } ,
4010 33: { key : 'hp' , eff : 0.9 } ,
4010 34: { key : 'hp' , eff : 1 } ,
401051: { key : 'atkPlus' , eff : 0.7 } ,
401052: { key : 'atkPlus' , eff : 0. 8 } ,
401053: { key : 'atkPlus' , eff : 0.9 } ,
401054: { key : 'atkPlus' , eff : 1 } ,
401061: { key : 'atk' , eff : 0.7 } ,
401062: { key : 'atk' , eff : 0.8 } ,
401063: { key : 'atk' , eff : 0.9 } ,
401064: { key : 'atk' , eff : 1 } ,
401081: { key : 'defPlus' , eff : 0.7 } ,
401082: { key : 'defPlus' , eff : 0.8 } ,
401083: { key : 'defPlus' , eff : 0.9 } ,
401084: { key : 'defPlus' , eff : 1 } ,
401091: { key : 'def' , eff : 0.7 } ,
401 09 2: { key : ' def', eff : 0.8 } ,
401 093: { key : 'def' , eff : 0.9 } ,
401 094: { key : 'def' , eff : 1 } ,
4012 01: { key : 'cpct' , eff : 0.7 } ,
401202: { key : 'cpct' , eff : 0. 8 } ,
401203: { key : 'cpct' , eff : 0.9 } ,
401204: { key : 'cpct' , eff : 1 } ,
401221: { key : 'cdmg' , eff : 0.7 } ,
401222: { key : 'cdmg' , eff : 0.8 } ,
401223: { key : 'cdmg' , eff : 0.9 } ,
401224: { key : 'cdmg' , eff : 1 } ,
401231: { key : 'recharge' , eff : 0.7 } ,
401232: { key : 'recharge' , eff : 0.8 } ,
401233: { key : 'recharge' , eff : 0.9 } ,
401234: { key : 'recharge' , eff : 1 } ,
401241: { key : 'mastery' , eff : 0.7 } ,
401242: { key : 'mastery' , eff : 0.8 } ,
40124 3: { key : 'mastery' , eff : 0.9 } ,
40124 4: { key : 'mastery' , eff : 1 } ,
501021: { key : 'hpPlus' , eff : 0.7 } ,
501022: { key : 'hpPlus' , eff : 0.8 } ,
501 023: { key : 'hpPlus' , eff : 0.9 } ,
501 0 24: { key : ' hpPlus', eff : 1 } ,
501 031: { key : 'hp' , eff : 0.7 } ,
501 03 2: { key : ' hp', eff : 0.8 } ,
501033: { key : 'hp' , eff : 0.9 } ,
501034: { key : 'hp' , eff : 1 } ,
501051: { key : 'atkPlus' , eff : 0.7 } ,
501052: { key : 'atkPlus' , eff : 0.8 } ,
501053: { key : 'atkPlus' , eff : 0.9 } ,
501054: { key : 'atkPlus' , eff : 1 } ,
501061: { key : 'atk' , eff : 0.7 } ,
501062: { key : 'atk' , eff : 0.8 } ,
501063: { key : 'atk' , eff : 0.9 } ,
501064: { key : 'atk' , eff : 1 } ,
501081: { key : 'defPlus' , eff : 0. 7 } ,
501082: { key : 'defPlus' , eff : 0.8 } ,
501083: { key : 'defPlus' , eff : 0.9 } ,
501 084: { key : 'defPlus' , eff : 1 } ,
501 091: { key : 'def' , eff : 0.7 } ,
501 09 2: { key : ' def', eff : 0.8 } ,
501 093: { key : 'def' , eff : 0. 9 } ,
501094: { key : 'def' , eff : 1 } ,
501201: { key : 'cpct' , eff : 0.7 } ,
501202: { key : 'cpct' , eff : 0.8 } ,
501203: { key : 'cpct' , eff : 0.9 } ,
501204: { key : 'cpct' , eff : 1 } ,
5 01221: { key : 'cdmg' , eff : 0. 7 } ,
5 01222: { key : 'cdmg' , eff : 0. 8 } ,
5 01223: { key : 'cdmg' , eff : 0. 9 } ,
501224: { key : 'cdmg' , eff : 1 } ,
501231: { key : 'recharge' , eff : 0.7 } ,
501232: { key : 'recharge' , eff : 0.8 } ,
501233: { key : 'recharge' , eff : 0.9 } ,
501234: { key : 'recharge' , eff : 1 } ,
5012 41: { key : 'mastery' , eff : 0.7 } ,
5012 42: { key : 'mastery' , eff : 0.8 } ,
5012 43: { key : 'mastery' , eff : 0.9 } ,
5012 44: { key : 'mastery' , eff : 1 }
101021 : { key : 'hpPlus' , value: 23.899999618530273 } ,
101022 : { key : 'hpPlus' , value: 29.8799991607666 } ,
20102 1: { key : 'hp Plus ', valu e: 5 0.1 89998626708984 } ,
201022: { key : 'hpPlus' , value : 60.95000076293945 } ,
201023: { key : 'hpPlus' , value : 71.69999694824219 } ,
301021: { key : 'hpPlus' , value : 100.37999725341797 } ,
301022: { key : 'hpPlus' , value : 114.7200012207031 } ,
301023: { key : 'hpPlus' , value : 129.05999755859375 } ,
301024: { key : 'hpPlus' , value : 143.3999938964843 8 } ,
401021: { key : 'hpPlus' , value : 167.3000030517578 } ,
401022: { key : 'hpPlus' , value : 191.1999969482422 } ,
401023: { key : 'hpPlus' , value : 215.1000061035156 } ,
401024: { key : 'hpPlus' , value : 239.0 } ,
501021: { key : 'hpPlus' , value : 209.1300048828125 } ,
501022: { key : 'hpPlus' , value : 239.0 } ,
501023: { key : 'hpPlus' , value : 268.8800048828125 } ,
501024: { key : 'hpPlus' , value : 298.75 } ,
101 031: { key : 'hp' , value : 0.011699999682605267 } ,
101 03 2: { key : ' hp', value : 0.014600000344216824 } ,
20 103 1: { key : ' hp', value : 0.016300000250339508 } ,
2010 3 2: { key : 'hp ', valu e: 0. 019 79999989271164 } ,
2010 33: { key : 'hp' , value : 0.02329999953508377 } ,
301031: { key : 'hp' , value : 0.02449999935925007 } ,
301032 : { key : 'hp' , valu e: 0. 02800000086426 735 } ,
301033 : { key : 'hp' , valu e: 0. 0315000005066394 8 } ,
301034: { key : 'hp' , value : 0.0350000001490116 1 } ,
401031: { key : 'hp' , value : 0.032600000500679016 } ,
401032: { key : 'hp' , value : 0.03730000182986259 5 } ,
401033: { key : 'hp' , value : 0.041999999433755875 } ,
401034: { key : 'hp' , value : 0.04659999907016754 } ,
501031: { key : 'hp' , value : 0.040800001472234726 } ,
501032: { key : 'hp' , value : 0.04659999907016754 } ,
501033: { key : 'hp' , value : 0.0524999983608722 7 } ,
501034: { key : 'hp' , value : 0.05829999968409538 } ,
101051: { key : 'atkPlus' , value : 1.55999994277954 1 } ,
101052: { key : 'atkPlus' , value : 1.9500000476837158 } ,
2010 51: { key : 'atkPlus' , value : 3.2699999809265137 } ,
2010 52: { key : 'atkPlus' , value : 3.9700000286102295 } ,
201 053: { key : 'atkPlus' , value : 4.670000076293945 } ,
301051: { key : 'atkPlus' , value : 6.539999961853027 } ,
301052: { key : 'atkPlus' , value : 7.46999979019165 } ,
301053: { key : 'atkPlus' , value : 8.399999618530273 } ,
301054: { key : 'atkPlus' , value : 9.34000015258789 } ,
401051: { key : 'atkPlus' , value : 10.890000343322754 } ,
401052: { key : 'atkPlus' , value : 12.44999980926513 7 } ,
401053: { key : 'atkPlus' , value : 14.0 } ,
401054: { key : 'atkPlus' , value : 15.5600004196167 } ,
501051: { key : 'atkPlus' , value : 13.619999885559082 } ,
501052: { key : 'atkPlus' , value : 15.5600004196167 } ,
501053: { key : 'atkPlus' , value : 17.510000228881836 } ,
501054: { key : 'atkPlus' , value : 19.450000762939453 } ,
101061: { key : 'atk' , value : 0.011699999682605267 } ,
101062: { key : 'atk' , value : 0.014600000344216824 } ,
201061: { key : 'atk' , value : 0.016300000250339508 } ,
201062: { key : 'atk' , value : 0.01979999989271164 } ,
201063: { key : 'atk' , value : 0.02329999953508377 } ,
3010 61: { key : 'atk' , value : 0.02449999935925007 } ,
3010 62: { key : 'atk' , value : 0.02800000086426735 } ,
3010 63: { key : 'atk' , value : 0.03150000050663948 } ,
3010 64: { key : 'atk' , value : 0.03500000014901161 } ,
401061 : { key : 'atk ', valu e: 0. 03260000050067 9016 } ,
401062: { key : 'atk' , value : 0.037300001829862595 } ,
401063 : { key : 'atk' , valu e: 0. 041999999433 755875 } ,
401064: { key : 'atk' , value : 0.04659999907016754 } ,
501061: { key : 'atk' , value : 0.040800001472234726 } ,
501062: { key : 'atk' , value : 0.04659999907016754 } ,
501063: { key : 'atk' , value : 0.0524999983608722 7 } ,
501064: { key : 'atk' , value : 0.0582999996840953 8 } ,
101081: { key : 'defPlus' , value : 1.850000023841858 } ,
101082: { key : 'defPlus' , value : 2.30999994277954 1 } ,
201081: { key : 'defPlus' , value : 3.890000104904175 } ,
201082: { key : 'defPlus' , value : 4.71999979019165 } ,
201083: { key : 'defPlus' , value : 5.559999942779541 } ,
3010 81: { key : 'defPlus' , value : 7.78000020980835 } ,
301 082: { key : 'defPlus' , value : 8.890000343322754 } ,
301 083: { key : 'defPlus' , value : 10.0 } ,
301 084: { key : 'defPlus' , value : 11.109999656677246 } ,
401081: { key : 'defPlus' , value : 12.960000038146973 } ,
401082: { key : 'defPlus' , value : 14.819999694824219 } ,
401083: { key : 'defPlus' , value : 16.670000076293945 } ,
401084: { key : 'defPlus' , value : 18.520000457763672 } ,
501081: { key : 'defPlus' , value : 16.200000762939453 } ,
501082: { key : 'defPlus' , value : 18.520000457763672 } ,
501083: { key : 'defPlus' , value : 20.829999923706055 } ,
501084: { key : 'defPlus' , value : 23.149999618530273 } ,
101091: { key : 'def' , value : 0.014600000344216824 } ,
101092: { key : 'def' , value : 0.018200000748038292 } ,
201091: { key : 'def' , value : 0.020400000736117363 } ,
201092: { key : 'def' , value : 0.024800000712275505 } ,
201093: { key : 'def' , value : 0.029100000858306885 } ,
301091: { key : 'def' , value : 0.0306000001728534 7 } ,
301092: { key : 'def' , value : 0.03500000014901161 } ,
301093: { key : 'def' , value : 0.03929999843239784 } ,
301094: { key : 'def' , value : 0.043699998408555984 } ,
4010 91: { key : 'def' , value : 0.040800001472234726 } ,
4010 92: { key : 'def' , value : 0.04659999907016754 } ,
4010 93: { key : 'def' , value : 0.05249999836087227 } ,
4010 94: { key : 'def' , value : 0.05829999968409538 } ,
501091: { key : 'def' , value : 0.050999999046325684 } ,
501092: { key : 'def' , value : 0.0582999996840953 8 } ,
501093: { key : 'def' , value : 0.06560000032186508 } ,
501094: { key : 'def' , value : 0.07289999723434448 } ,
101231: { key : 'recharge' , value : 0.013000000268220901 } ,
101232: { key : 'recharge' , value : 0.016200000420212746 } ,
201231: { key : 'recharge' , value : 0.01810000091791153 } ,
201232: { key : 'recharge' , value : 0.0219999998807907 1 } ,
201233: { key : 'recharge' , value : 0.02590000070631504 } ,
301231: { key : 'recharge' , value : 0.0272000003606081 } ,
301232: { key : 'recharge' , value : 0.031099999323487282 } ,
301233: { key : 'recharge' , value : 0.0350000001490116 1 } ,
301234: { key : 'recharge' , value : 0.03889999911189079 } ,
401 231 : { key : ' recharge', value : 0.03629999980330467 } ,
401 232: { key : 'recharge' , value : 0.0414000004529953 } ,
401 233: { key : 'recharge' , value : 0.04659999907016754 } ,
4012 34: { key : 'recharge' , value : 0.05180000141263008 } ,
501231: { key : 'recharge' , value : 0.0452999994158744 8 } ,
501232: { key : 'recharge' , value : 0.05180000141263008 } ,
501233: { key : 'recharge' , value : 0.05829999968409538 } ,
501234: { key : 'recharge' , value : 0.06480000168085098 } ,
101241: { key : 'mastery' , value : 4.659999847412109 } ,
101242: { key : 'mastery' , value : 5.829999923706055 } ,
201241: { key : 'mastery' , value : 6.53000020980835 } ,
201242: { key : 'mastery' , value : 7.929999828338623 } ,
201243: { key : 'mastery' , value : 9.329999923706055 } ,
301241: { key : 'mastery' , value : 9.789999961853027 } ,
301242: { key : 'mastery' , value : 11.1899995803833 } ,
301243: { key : 'mastery' , value : 12.59000015258789 } ,
301244: { key : 'mastery' , value : 13.989999771118164 } ,
40124 1: { key : 'mastery' , value : 13.0600004196167 } ,
40124 2: { key : 'mastery' , value : 14.920000076293945 } ,
401243: { key : 'mastery' , value : 16.790000915527344 } ,
401244: { key : 'mastery' , value : 18.649999618530273 } ,
501 241: { key : 'mastery' , value : 16.31999969482422 } ,
501 242 : { key : ' mastery', value : 18.649999618530273 } ,
501 243: { key : 'mastery' , value : 20.979999542236328 } ,
501 244 : { key : ' mastery', value : 23.309999465942383 } ,
101201: { key : 'cpct' , value : 0.007799999788403511 } ,
101202: { key : 'cpct' , value : 0.009700000286102295 } ,
201201: { key : 'cpct' , value : 0.010900000110268593 } ,
201202: { key : 'cpct' , value : 0.013199999928474426 } ,
201203: { key : 'cpct' , value : 0.01549999974668026 } ,
301201: { key : 'cpct' , value : 0.016300000250339508 } ,
301202: { key : 'cpct' , value : 0.01860000006854534 } ,
301203: { key : 'cpct' , value : 0.020999999716877937 } ,
301204: { key : 'cpct' , value : 0.02329999953508377 } ,
401201: { key : 'cpct' , value : 0.021800000220537186 } ,
401202: { key : 'cpct' , value : 0.02490000054240226 7 } ,
401203: { key : 'cpct' , value : 0.02800000086426735 } ,
401204: { key : 'cpct' , value : 0.031099999323487282 } ,
501 201: { key : 'cpct' , value : 0.027200000360608 1 } ,
501 202: { key : 'cpct' , value : 0.031099999323487282 } ,
501 203 : { key : ' cpct', value : 0.03500000014901161 } ,
501 204: { key : 'cpct' , value : 0.0388999991118907 9 } ,
101221: { key : 'cdmg' , value : 0.01549999974668026 } ,
101222: { key : 'cdmg' , value : 0.01940000057220459 } ,
201221: { key : 'cdmg' , value : 0.021800000220537186 } ,
201222: { key : 'cdmg' , value : 0.026399999856948853 } ,
201223: { key : 'cdmg' , value : 0.031099999323487282 } ,
3 01221: { key : 'cdmg' , valu e: 0. 0326000005006 79016 } ,
3 01222: { key : 'cdmg' , valu e: 0. 037300001 829862595 } ,
3 01223: { key : 'cdmg' , valu e: 0. 041999 999433755875 } ,
301224: { key : 'cdmg' , value : 0.04659999907016754 } ,
401221: { key : 'cdmg' , value : 0.04349999874830246 } ,
401222: { key : 'cdmg' , value : 0.04969999939203262 } ,
401223: { key : 'cdmg' , value : 0.0560000017285347 } ,
401224: { key : 'cdmg' , value : 0.062199998646974564 } ,
5012 21: { key : 'cdmg' , value : 0.0544000007212162 } ,
5012 22: { key : 'cdmg' , value : 0.062199998646974564 } ,
5012 23: { key : 'cdmg' , value : 0.06989999860525131 } ,
5012 24: { key : 'cdmg' , value : 0.07769999653100967 }
}