2022-09-24 12:19:59 +00:00
|
|
|
|
import { usefulAttr } from '../../resources/meta/artifact/artis-mark.js'
|
2022-09-10 19:59:45 +00:00
|
|
|
|
import { Data } from '../../components/index.js'
|
2022-10-06 19:36:24 +00:00
|
|
|
|
import lodash from 'lodash'
|
2022-09-10 19:59:45 +00:00
|
|
|
|
import fs from 'fs'
|
|
|
|
|
|
|
|
|
|
let charCfg = {}
|
|
|
|
|
|
|
|
|
|
async function init () {
|
|
|
|
|
let charPath = process.cwd() + '/plugins/miao-plugin/resources/meta/character'
|
|
|
|
|
let chars = fs.readdirSync(charPath)
|
|
|
|
|
for (let char of chars) {
|
|
|
|
|
if (fs.existsSync(`${charPath}/${char}/artis.js`)) {
|
|
|
|
|
charCfg[char] = await Data.importModule(`resources/meta/character/${char}/artis.js`)
|
|
|
|
|
}
|
2022-09-13 18:47:14 +00:00
|
|
|
|
// 允许自定义配置文件,会覆盖喵喵版评分规则
|
2022-09-13 17:56:02 +00:00
|
|
|
|
if (fs.existsSync(`${charPath}/${char}/artis_user.js`)) {
|
|
|
|
|
charCfg[char] = await Data.importModule(`resources/meta/character/${char}/artis_user.js`)
|
|
|
|
|
}
|
2022-09-10 19:59:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await init()
|
|
|
|
|
const CharArtis = {
|
2022-09-14 19:31:10 +00:00
|
|
|
|
reduceWeight (weight, key, plus, max) {
|
|
|
|
|
let original = weight[key] || 0
|
|
|
|
|
if (original < max) {
|
|
|
|
|
weight[key] = Math.max(original + plus, max)
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
},
|
2022-09-10 19:59:45 +00:00
|
|
|
|
getCharArtisCfg (char, profile, artis) {
|
2022-09-14 19:31:10 +00:00
|
|
|
|
let { attr, weapon } = profile
|
2022-09-10 19:59:45 +00:00
|
|
|
|
|
|
|
|
|
let rule = function (title, attrWeight) {
|
|
|
|
|
return {
|
|
|
|
|
title,
|
|
|
|
|
attrWeight
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let def = function (attrWeight) {
|
2022-09-14 19:31:10 +00:00
|
|
|
|
let title = []
|
2022-10-06 19:36:24 +00:00
|
|
|
|
let weight = lodash.extend({}, attrWeight || usefulAttr[char.name] || { atk: 75, cp: 100, cd: 100 })
|
2022-09-14 19:31:10 +00:00
|
|
|
|
let check = (key, max = 75, maxPlus = 75, isWeapon = true) => {
|
|
|
|
|
let original = weight[key] || 0
|
|
|
|
|
if (original < max) {
|
|
|
|
|
let plus = isWeapon ? maxPlus * (1 + weapon.affix / 5) / 2 : maxPlus
|
|
|
|
|
weight[key] = Math.min(Math.round(original + plus), max)
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
let wn = weapon.name
|
|
|
|
|
|
|
|
|
|
// 增加攻击力或直接伤害类武器判定
|
|
|
|
|
const weaponCfg = {
|
|
|
|
|
磐岩结绿: {
|
|
|
|
|
attr: 'hp',
|
|
|
|
|
abbr: '绿剑'
|
|
|
|
|
},
|
|
|
|
|
赤角石溃杵: {
|
|
|
|
|
attr: 'def',
|
|
|
|
|
abbr: '赤角'
|
|
|
|
|
},
|
|
|
|
|
猎人之径: {
|
|
|
|
|
attr: 'mastery'
|
|
|
|
|
},
|
|
|
|
|
薙草之稻光: {
|
|
|
|
|
attr: 'recharge',
|
|
|
|
|
abbr: '薙刀'
|
|
|
|
|
}
|
2022-09-10 19:59:45 +00:00
|
|
|
|
}
|
2022-09-14 19:31:10 +00:00
|
|
|
|
if (weight.atk > 0 && weaponCfg[wn]) {
|
|
|
|
|
let wCfg = weaponCfg[wn]
|
|
|
|
|
if (check(wCfg.attr, wCfg.max || 75, wCfg.plus || 75)) {
|
|
|
|
|
title.push(wCfg.abbr || wn)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 不与攻击力挂钩的武器判定
|
|
|
|
|
if (wn === '辰砂之纺锤' && check('def')) {
|
|
|
|
|
title.push('纺锤')
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-16 13:19:21 +00:00
|
|
|
|
// 圣遗物判定,如果是绝缘4,将充能权重拉高至沙漏圣遗物当前最高权重齐平
|
|
|
|
|
let maxWeight = Math.max(weight.atk || 0, weight.hp || 0, weight.def || 0, weight.mastery || 0)
|
|
|
|
|
if (artis.is('绝缘4') && check('recharge', maxWeight, 75, false)) {
|
2022-09-14 19:31:10 +00:00
|
|
|
|
title.push('绝缘4')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
title = title.length > 0 ? title.join('') : '通用'
|
2022-09-10 19:59:45 +00:00
|
|
|
|
return {
|
|
|
|
|
title: `${char.abbr}-${title}`,
|
|
|
|
|
attrWeight: weight
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let charRule = charCfg[char.name]?.default || function ({ def }) {
|
|
|
|
|
return def(usefulAttr[char.name] || { atk: 75, cp: 100, cd: 100 })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (charRule) {
|
2022-09-14 19:31:10 +00:00
|
|
|
|
return charRule({ attr, artis, rule, def, weapon, cons: profile.cons })
|
2022-09-10 19:59:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
export default CharArtis
|