|
|
@ -89,7 +89,7 @@ export const jewelryUniqueCategorys = [ |
|
|
|
icon: 'jewelry/良人.png', |
|
|
|
icon: 'jewelry/良人.png', |
|
|
|
entry: [ |
|
|
|
entry: [ |
|
|
|
{ type: 'critDmg', valCoefficient: 1.2 }, |
|
|
|
{ type: 'critDmg', valCoefficient: 1.2 }, |
|
|
|
{ type: 'dmgPercent', valCoefficient: 0.5 }, |
|
|
|
{ type: 'dmgPercent', valCoefficient: 0.4 }, |
|
|
|
{ type: 'atk', valCoefficient: 0.7 }, |
|
|
|
{ type: 'atk', valCoefficient: 0.7 }, |
|
|
|
], |
|
|
|
], |
|
|
|
}, |
|
|
|
}, |
|
|
@ -105,7 +105,7 @@ export const jewelryUniqueCategorys = [ |
|
|
|
name: 'cltx', |
|
|
|
name: 'cltx', |
|
|
|
icon: 'jewelry/赤羚天禧.png', |
|
|
|
icon: 'jewelry/赤羚天禧.png', |
|
|
|
entry: [ |
|
|
|
entry: [ |
|
|
|
{ type: 'dmgPercent', valCoefficient: 0.6 }, |
|
|
|
{ type: 'dmgPercent', valCoefficient: 0.5 }, |
|
|
|
{ type: 'def', valCoefficient: 0.9 }, |
|
|
|
{ type: 'def', valCoefficient: 0.9 }, |
|
|
|
{ type: 'hp', valCoefficient: 1.2 }, |
|
|
|
{ type: 'hp', valCoefficient: 1.2 }, |
|
|
|
], |
|
|
|
], |
|
|
@ -153,7 +153,7 @@ export const jewelryCategorys = [ |
|
|
|
export const initialJewelry = () => { |
|
|
|
export const initialJewelry = () => { |
|
|
|
const type = 'jewelry'; |
|
|
|
const type = 'jewelry'; |
|
|
|
const qualityBean = new Quality(qualitys[0], coefficient[qualitys[0]]); |
|
|
|
const qualityBean = new Quality(qualitys[0], coefficient[qualitys[0]]); |
|
|
|
const base = new EquipBase('shiwangsy', 'jewelry/狮王手印.png', [new Entry('hp', 20, '+20', 20, 20)]); |
|
|
|
const base = new EquipBase('shiwangsy', 'jewelry/狮王手印.png', [new Entry('atk', 1, '+1', 1, 1)]); |
|
|
|
const extraEntry = [new Entry('crit', 10, '+10%', 10, 10)]; |
|
|
|
const extraEntry = [new Entry('crit', 10, '+10%', 10, 10)]; |
|
|
|
return new Equip(type, 1, qualityBean, base, extraEntry); |
|
|
|
return new Equip(type, 1, qualityBean, base, extraEntry); |
|
|
|
}; |
|
|
|
}; |
|
|
|