2022-04-23 21:16:37 +00:00
|
|
|
|
import fs from "fs";
|
|
|
|
|
import lodash from "lodash";
|
|
|
|
|
import Format from "./Format.js";
|
2022-06-04 21:29:24 +00:00
|
|
|
|
import { Character } from "./models.js"
|
2022-04-24 18:50:17 +00:00
|
|
|
|
|
|
|
|
|
const eleMap = {
|
2022-06-04 21:29:24 +00:00
|
|
|
|
anemo: "风",
|
|
|
|
|
cryo: "冰",
|
|
|
|
|
electro: "雷",
|
|
|
|
|
geo: "岩",
|
|
|
|
|
hydro: "水",
|
|
|
|
|
pyro: "火"
|
2022-04-24 18:50:17 +00:00
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
const attrMap = {
|
|
|
|
|
atk: { type: "pct", val: 5.83, title: "大攻击", text: "5.8%" },
|
|
|
|
|
hp: { type: "pct", val: 5.83, title: "大生命", text: "5.8%" },
|
|
|
|
|
def: { type: "pct", val: 7.29, title: "大防御", text: "7.3%" },
|
|
|
|
|
recharge: { type: "plus", val: 6.48, title: "元素充能", text: "6.5%" },
|
|
|
|
|
mastery: { type: "plus", val: 23.31, title: "元素精通", text: "23.3" },
|
|
|
|
|
cpct: { type: "plus", val: 3.89, title: "暴击率", text: "3.9%" },
|
|
|
|
|
cdmg: { type: "plus", val: 7.77, title: "暴击伤害", text: "7.8%" },
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let Calc = {
|
|
|
|
|
|
|
|
|
|
async getCharCalcRule(name) {
|
|
|
|
|
|
|
|
|
|
const _path = process.cwd();
|
|
|
|
|
const cfgPath = `${_path}/plugins/miao-plugin/resources/meta/character/${name}/calc.js`;
|
|
|
|
|
|
|
|
|
|
|
2022-05-19 02:34:21 +00:00
|
|
|
|
let details, buffs = [], defParams = {}, defDmgIdx = -1, mainAttr = "atk,cpct,cdmg", enemyName = "小宝";
|
2022-04-23 21:16:37 +00:00
|
|
|
|
if (fs.existsSync(cfgPath)) {
|
|
|
|
|
let fileData = await import (`file://${cfgPath}`);
|
|
|
|
|
details = fileData.details || false;
|
|
|
|
|
buffs = fileData.buffs || [];
|
|
|
|
|
defParams = fileData.defParams || {};
|
2022-04-30 21:06:17 +00:00
|
|
|
|
if (fileData.defDmgIdx) {
|
|
|
|
|
defDmgIdx = fileData.defDmgIdx;
|
|
|
|
|
}
|
|
|
|
|
if (fileData.mainAttr) {
|
|
|
|
|
mainAttr = fileData.mainAttr;
|
|
|
|
|
}
|
2022-05-19 02:34:21 +00:00
|
|
|
|
if (fileData.enemyName) {
|
|
|
|
|
enemyName = fileData.enemyName;
|
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (details) {
|
2022-05-19 02:34:21 +00:00
|
|
|
|
return { details, buffs, defParams, defDmgIdx, mainAttr, enemyName }
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 获取基础属性
|
2022-06-04 21:29:24 +00:00
|
|
|
|
attr(profile) {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let ret = {},
|
2022-04-24 18:50:17 +00:00
|
|
|
|
{ attr } = profile;
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-06-02 10:25:09 +00:00
|
|
|
|
ret.dataSource = profile.dataSource || "miao";
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
// 基础属性
|
|
|
|
|
lodash.forEach("atk,def,hp".split(","), (key) => {
|
|
|
|
|
ret[key] = {
|
|
|
|
|
base: attr[`${key}Base`] * 1 || 0,
|
|
|
|
|
plus: attr[key] * 1 - attr[`${key}Base`] * 1 || 0,
|
|
|
|
|
pct: 0
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
lodash.forEach("mastery,recharge".split(","), (key) => {
|
|
|
|
|
ret[key] = {
|
|
|
|
|
base: attr[key] * 1 || 0,
|
|
|
|
|
plus: 0,
|
|
|
|
|
pct: 0
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2022-04-24 18:50:17 +00:00
|
|
|
|
lodash.forEach({ cRate: "cpct", cDmg: "cdmg", hInc: "heal" }, (val, key) => {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
ret[val] = {
|
|
|
|
|
base: attr[key] * 1 || 0,
|
|
|
|
|
plus: 0,
|
2022-05-02 08:32:31 +00:00
|
|
|
|
pct: 0,
|
2022-05-20 21:26:53 +00:00
|
|
|
|
inc: 0
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
lodash.forEach("dmg,phy".split(","), (key) => {
|
|
|
|
|
ret[key] = {
|
|
|
|
|
base: attr[key + "Bonus"] * 1 || 0,
|
|
|
|
|
plus: 0,
|
|
|
|
|
pct: 0
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
// 技能属性记录
|
2022-04-23 21:16:37 +00:00
|
|
|
|
lodash.forEach("a,a2,a3,e,q".split(","), (key) => {
|
|
|
|
|
ret[key] = {
|
|
|
|
|
pct: 0, // 倍率加成
|
2022-04-27 18:41:08 +00:00
|
|
|
|
multi: 0, // 独立倍率乘区加成
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
plus: 0, // 伤害值提高
|
|
|
|
|
dmg: 0, // 伤害提高
|
|
|
|
|
cpct: 0,// 暴击提高
|
2022-04-27 18:41:08 +00:00
|
|
|
|
cdmg: 0, //爆伤提高
|
|
|
|
|
|
|
|
|
|
def: 0, // 防御降低
|
|
|
|
|
ignore: 0, // 无视防御
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
ret.enemy = {
|
|
|
|
|
def: 0, // 降低防御
|
|
|
|
|
ignore: 0, // 无视防御
|
|
|
|
|
phy: 0 // 物理防御
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
ret.shield = {
|
|
|
|
|
base: 100, // 基础
|
|
|
|
|
plus: 0, // 护盾强效
|
|
|
|
|
inc: 100, // 吸收倍率
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let char = Character.get(profile.id);
|
|
|
|
|
//ret.weaponType = avatar.weapon.type_name;
|
|
|
|
|
ret.weaponType = "";
|
|
|
|
|
ret.weapon = profile.weapon;
|
|
|
|
|
ret.element = eleMap[char.elem.toLowerCase()];
|
|
|
|
|
ret.refine = (profile.weapon.affix * 1 - 1) || 0;
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-04-27 18:41:08 +00:00
|
|
|
|
ret.multi = 0;
|
|
|
|
|
|
2022-04-24 18:50:17 +00:00
|
|
|
|
ret.zf = 0;
|
|
|
|
|
ret.rh = 0;
|
|
|
|
|
|
2022-04-25 19:59:13 +00:00
|
|
|
|
ret.kx = 0;
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 获取天赋数据
|
2022-06-04 21:29:24 +00:00
|
|
|
|
talent(profile, char) {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let ret = {};
|
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let talentData = profile.talent;
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
lodash.forEach(['a', 'e', 'q'], (key) => {
|
2022-04-23 21:52:28 +00:00
|
|
|
|
let lv = talentData[key].level_current * 1 || 1,
|
2022-04-23 21:16:37 +00:00
|
|
|
|
lvKey = `Lv${lv}`;
|
|
|
|
|
|
|
|
|
|
let map = {};
|
|
|
|
|
|
|
|
|
|
lodash.forEach(char.talent[key].tables, (tr) => {
|
|
|
|
|
let val = tr.values[lv - 1];
|
|
|
|
|
val = val.replace(/[^\x00-\xff]/g, "").trim();
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let valArr = [], valArr2 = [];
|
2022-04-23 21:16:37 +00:00
|
|
|
|
lodash.forEach(val.split("/"), (v, idx) => {
|
|
|
|
|
let valNum = 0;
|
|
|
|
|
lodash.forEach(v.split("+"), (v) => {
|
2022-04-27 18:41:08 +00:00
|
|
|
|
v = v.split("*")
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let v1 = v[0].replace("%", "").trim();
|
|
|
|
|
valNum += v1 * (v[1] || 1);
|
|
|
|
|
valArr2.push(v1)
|
2022-04-23 21:16:37 +00:00
|
|
|
|
})
|
|
|
|
|
valArr.push(valNum);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (isNaN(valArr[0])) {
|
|
|
|
|
map[tr.name] = false;
|
|
|
|
|
} else if (valArr.length === 1) {
|
|
|
|
|
map[tr.name] = valArr[0];
|
|
|
|
|
} else {
|
|
|
|
|
map[tr.name] = valArr;
|
|
|
|
|
}
|
2022-05-01 21:58:48 +00:00
|
|
|
|
map[tr.name + "2"] = valArr2;
|
2022-04-23 21:16:37 +00:00
|
|
|
|
})
|
|
|
|
|
ret[key] = map;
|
|
|
|
|
})
|
|
|
|
|
return ret;
|
|
|
|
|
},
|
|
|
|
|
|
2022-04-25 19:59:13 +00:00
|
|
|
|
getDs(attr, meta, params) {
|
|
|
|
|
return {
|
|
|
|
|
...meta,
|
|
|
|
|
attr,
|
|
|
|
|
params,
|
|
|
|
|
refine: attr.refine,
|
|
|
|
|
weaponType: attr.weaponType,
|
2022-05-19 02:34:21 +00:00
|
|
|
|
weapon: attr.weapon,
|
2022-04-25 19:59:13 +00:00
|
|
|
|
element: eleMap[attr.element] || attr.element,
|
|
|
|
|
calc(ds) {
|
|
|
|
|
return (ds.base || 0) + (ds.plus || 0) + ((ds.base || 0) * (ds.pct || 0) / 100)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
calcAttr({ originalAttr, buffs, meta, params = {}, incAttr = '', reduceAttr = '', talent = '' }) {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let attr = lodash.merge({}, originalAttr);
|
|
|
|
|
let msg = [];
|
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
if (incAttr && attrMap[incAttr]) {
|
|
|
|
|
let aCfg = attrMap[incAttr];
|
|
|
|
|
attr[incAttr][aCfg.type] += aCfg.val;
|
|
|
|
|
}
|
|
|
|
|
if (reduceAttr && attrMap[reduceAttr]) {
|
|
|
|
|
let aCfg = attrMap[reduceAttr];
|
|
|
|
|
attr[reduceAttr][aCfg.type] -= aCfg.val;
|
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
|
|
|
|
lodash.forEach(buffs, (buff) => {
|
2022-04-25 19:59:13 +00:00
|
|
|
|
let ds = Calc.getDs(attr, meta, params);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
ds.currentTalent = talent;
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
// 如果存在rule,则进行计算
|
2022-04-24 18:50:17 +00:00
|
|
|
|
if (buff.check && !buff.check(ds)) {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2022-04-25 19:59:13 +00:00
|
|
|
|
if (buff.cons) {
|
|
|
|
|
if (ds.cons * 1 < buff.cons * 1) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
|
|
|
|
let title = buff.title;
|
2022-04-24 18:50:17 +00:00
|
|
|
|
|
|
|
|
|
if (buff.mastery) {
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let mastery = Math.max(0, attr.mastery.base + attr.mastery.plus);
|
2022-04-24 18:50:17 +00:00
|
|
|
|
let masteryNum = 2.78 * mastery / (mastery + 1400) * 100;
|
|
|
|
|
buff.data = buff.data || {};
|
|
|
|
|
lodash.forEach(buff.mastery.split(","), (key) => {
|
|
|
|
|
buff.data[key] = masteryNum;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
lodash.forEach(buff.data, (val, key) => {
|
|
|
|
|
|
|
|
|
|
if (lodash.isFunction(val)) {
|
|
|
|
|
val = val(ds);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
title = title.replace(`[${key}]`, Format.comma(val, 1));
|
|
|
|
|
// 技能提高
|
2022-04-27 18:41:08 +00:00
|
|
|
|
let tRet = /^(a|a2|a3|e|q)(Def|Ignore|Dmg|Plus|Pct|Cpct|Cdmg|Multi)$/.exec(key);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
if (tRet) {
|
|
|
|
|
attr[tRet[1]][tRet[2].toLowerCase()] += val * 1 || 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let aRet = /^(hp|def|atk|mastery|cpct|cdmg|heal|recharge|dmg|phy|shield)(Plus|Pct|Inc)?$/.exec(key);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
if (aRet) {
|
|
|
|
|
attr[aRet[1]][aRet[2] ? aRet[2].toLowerCase() : "plus"] += val * 1 || 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (key === "enemyDef") {
|
|
|
|
|
attr.enemy.def += val * 1 || 0;
|
2022-04-24 18:50:17 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-25 19:59:13 +00:00
|
|
|
|
if (["zf", "rh", "kx"].includes(key)) {
|
2022-04-24 18:50:17 +00:00
|
|
|
|
attr[key] += val * 1 || 0;
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
msg.push(title);
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
attr, msg
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async weapon(weaponName) {
|
|
|
|
|
const _path = process.cwd();
|
|
|
|
|
const cfgPath = `${_path}/plugins/miao-plugin/resources/meta/weapons/calc.js`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let weapons = {};
|
|
|
|
|
if (fs.existsSync(cfgPath)) {
|
|
|
|
|
let fileData = await import (`file://${cfgPath}`);
|
|
|
|
|
weapons = fileData.weapons || {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let weaponCfg = weapons[weaponName] || [];
|
|
|
|
|
if (lodash.isPlainObject(weaponCfg)) {
|
|
|
|
|
weaponCfg = [weaponCfg];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lodash.forEach(weaponCfg, (ds) => {
|
2022-04-30 21:16:05 +00:00
|
|
|
|
if (!/:/.test(ds.title)) {
|
2022-05-02 22:32:36 +00:00
|
|
|
|
ds.title = `${weaponName}:${ds.title}`;
|
2022-04-30 21:16:05 +00:00
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
if (ds.refine) {
|
|
|
|
|
ds.data = ds.data || {};
|
|
|
|
|
lodash.forEach(ds.refine, (r, key) => {
|
2022-04-24 18:50:17 +00:00
|
|
|
|
ds.data[key] = ({ refine }) => r[refine] * (ds.buffCount || 1);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return weaponCfg;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async reliquaries(sets) {
|
|
|
|
|
const _path = process.cwd();
|
|
|
|
|
const cfgPath = `${_path}/plugins/miao-plugin/resources/meta/reliquaries/calc.js`;
|
|
|
|
|
|
|
|
|
|
let buffs = {};
|
|
|
|
|
if (fs.existsSync(cfgPath)) {
|
|
|
|
|
let fileData = await import (`file://${cfgPath}`);
|
|
|
|
|
buffs = fileData.buffs || {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let setMap = {};
|
|
|
|
|
|
|
|
|
|
lodash.forEach(sets, (set) => {
|
|
|
|
|
if (set && set.set) {
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let name = set.set
|
2022-04-23 21:16:37 +00:00
|
|
|
|
setMap[name] = (setMap[name] || 0) + 1
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let retBuffs = [];
|
|
|
|
|
|
|
|
|
|
lodash.forEach(setMap, (count, setName) => {
|
|
|
|
|
if (count >= 2 && buffs[setName + 2]) {
|
|
|
|
|
retBuffs.push(buffs[setName + 2])
|
|
|
|
|
}
|
|
|
|
|
if (count >= 4 && buffs[setName + 4]) {
|
|
|
|
|
retBuffs.push(buffs[setName + 4])
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
return retBuffs;
|
|
|
|
|
},
|
2022-04-30 21:06:17 +00:00
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
getDmgFn({ ds, attr, profile, enemyLv, showDetail = false }) {
|
2022-05-01 21:58:48 +00:00
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let { calc } = ds;
|
|
|
|
|
|
2022-05-05 22:56:04 +00:00
|
|
|
|
let dmgFn = function (pctNum = 0, talent = false, ele = false, basicNum = 0, mode = "talent") {
|
2022-05-19 02:34:21 +00:00
|
|
|
|
let { atk, dmg, phy, cdmg, cpct } = attr;
|
2022-04-30 21:06:17 +00:00
|
|
|
|
// 攻击区
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let atkNum = calc(atk);
|
2022-04-30 21:06:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 倍率独立乘区
|
|
|
|
|
let multiNum = attr.multi / 100;
|
|
|
|
|
|
|
|
|
|
// 增伤区
|
|
|
|
|
let dmgNum = (1 + dmg.base / 100 + dmg.plus / 100);
|
|
|
|
|
|
2022-05-19 02:34:21 +00:00
|
|
|
|
if (ele === "phy") {
|
|
|
|
|
dmgNum = (1 + phy.base / 100 + phy.plus / 100);
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
//console.log({ base: Format.comma(dmg.base, 2), plus: Format.comma(dmg.plus, 2) })
|
|
|
|
|
|
|
|
|
|
let cpctNum = cpct.base / 100 + cpct.plus / 100;
|
|
|
|
|
|
|
|
|
|
// 爆伤区
|
|
|
|
|
let cdmgNum = cdmg.base / 100 + cdmg.plus / 100;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let enemyDef = attr.enemy.def / 100;
|
|
|
|
|
let enemyIgnore = attr.enemy.ignore / 100;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let plusNum = 0;
|
|
|
|
|
|
|
|
|
|
if (talent && attr[talent]) {
|
2022-05-01 21:58:48 +00:00
|
|
|
|
pctNum = pctNum / 100;
|
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
let ds = attr[talent];
|
|
|
|
|
pctNum += ds.pct / 100;
|
|
|
|
|
dmgNum += ds.dmg / 100;
|
|
|
|
|
cpctNum += ds.cpct / 100;
|
|
|
|
|
cdmgNum += ds.cdmg / 100;
|
|
|
|
|
enemyDef += ds.def / 100;
|
|
|
|
|
enemyIgnore += ds.ignore / 100;
|
|
|
|
|
multiNum += ds.multi / 100;
|
|
|
|
|
plusNum += ds.plus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 防御区
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let lv = profile.lv;
|
2022-04-30 21:06:17 +00:00
|
|
|
|
let defNum = (lv + 100) / ((lv + 100) + (enemyLv + 100) * (1 - enemyDef) * (1 - enemyIgnore));
|
|
|
|
|
|
|
|
|
|
// 抗性区
|
|
|
|
|
let kx = 10 - (attr.kx || 0);
|
|
|
|
|
let kNum = 0.9;
|
|
|
|
|
if (kx >= 0) {
|
|
|
|
|
kNum = (100 - kx) / 100;
|
|
|
|
|
} else {
|
|
|
|
|
kNum = 1 - kx / 200
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 反应区
|
|
|
|
|
let eleNum = 1;
|
2022-05-19 02:34:21 +00:00
|
|
|
|
if (ele === "phy") {
|
|
|
|
|
//do nothing
|
|
|
|
|
} else if (ele) {
|
2022-04-30 21:06:17 +00:00
|
|
|
|
// todo 更详细
|
2022-05-02 08:32:31 +00:00
|
|
|
|
let eleMap = {
|
|
|
|
|
'水': { zf: 2 },
|
|
|
|
|
'火': { zf: 1.5, rh: 2 },
|
|
|
|
|
'冰': { rh: 1.5 }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eleNum = (eleMap[attr.element] || {})[ele] || 1;
|
2022-04-30 21:06:17 +00:00
|
|
|
|
if (attr[ele]) {
|
|
|
|
|
eleNum = eleNum * (1 + attr[ele] / 100);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cpctNum = Math.max(0, Math.min(1, cpctNum));
|
|
|
|
|
if (cpctNum === 0) {
|
|
|
|
|
cdmgNum = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let ret = {};
|
2022-05-02 22:32:36 +00:00
|
|
|
|
if (mode === "basic") {
|
2022-05-01 21:58:48 +00:00
|
|
|
|
ret = {
|
2022-05-05 22:56:04 +00:00
|
|
|
|
dmg: basicNum * dmgNum * (1 + cdmgNum) * defNum * kNum * eleNum,
|
|
|
|
|
avg: basicNum * dmgNum * (1 + cpctNum * cdmgNum) * defNum * kNum * eleNum
|
2022-05-01 21:58:48 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// 计算最终伤害
|
|
|
|
|
ret = {
|
|
|
|
|
dmg: (atkNum * pctNum * (1 + multiNum) + plusNum) * dmgNum * (1 + cdmgNum) * defNum * kNum * eleNum,
|
|
|
|
|
avg: (atkNum * pctNum * (1 + multiNum) + plusNum) * dmgNum * (1 + cpctNum * cdmgNum) * defNum * kNum * eleNum
|
|
|
|
|
}
|
2022-04-30 21:06:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
if (showDetail) {
|
|
|
|
|
console.log(attr, { atkNum, pctNum, multiNum, plusNum, dmgNum, cpctNum, cdmgNum, defNum, eleNum, kNum }, ret)
|
|
|
|
|
}
|
2022-04-30 21:06:17 +00:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
};
|
2022-05-02 22:32:36 +00:00
|
|
|
|
|
2022-05-05 22:56:04 +00:00
|
|
|
|
dmgFn.basic = function (basicNum = 0, talent = false, ele = false) {
|
|
|
|
|
return dmgFn(0, talent, ele, basicNum, "basic");
|
2022-05-02 22:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dmgFn.heal = function (num) {
|
2022-05-19 02:34:21 +00:00
|
|
|
|
if (showDetail) {
|
2022-05-13 19:31:49 +00:00
|
|
|
|
console.log(num, calc(attr.heal), attr.heal.inc)
|
|
|
|
|
}
|
2022-05-02 22:32:36 +00:00
|
|
|
|
return {
|
2022-05-20 21:26:53 +00:00
|
|
|
|
avg: num * (1 + calc(attr.heal) / 100 + attr.heal.inc / 100)
|
2022-05-02 22:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dmgFn.shield = function (num) {
|
|
|
|
|
return {
|
|
|
|
|
avg: num * (calc(attr.shield) / 100) * (attr.shield.inc / 100)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dmgFn;
|
2022-04-30 21:06:17 +00:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
async calcData({ profile, char, enemyLv = 91, mode = 'profile', dmgIdx = 0 }) {
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let charCalcData = await Calc.getCharCalcRule(char.name);
|
|
|
|
|
|
|
|
|
|
if (!charCalcData) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let talent = Calc.talent(profile, char);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
|
|
|
|
let meta = {
|
2022-06-04 21:29:24 +00:00
|
|
|
|
cons: profile.cons * 1,
|
2022-04-23 21:52:28 +00:00
|
|
|
|
talent
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-19 02:34:21 +00:00
|
|
|
|
let { buffs, details, defParams, mainAttr, defDmgIdx, enemyName } = charCalcData;
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
|
|
|
|
defParams = defParams || {};
|
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let originalAttr = Calc.attr(profile);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let weaponBuffs = await Calc.weapon(profile.weapon.name);
|
|
|
|
|
let reliBuffs = await Calc.reliquaries(profile.artis);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
buffs = lodash.concat(buffs, weaponBuffs, reliBuffs);
|
|
|
|
|
|
|
|
|
|
lodash.forEach(buffs, (buff) => {
|
|
|
|
|
buff.sort = lodash.isUndefined(buff.sort) ? 1 : buff.sort
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
buffs = lodash.sortBy(buffs, ["sort"]);
|
|
|
|
|
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let { msg } = Calc.calcAttr({ originalAttr, buffs, meta, params: defParams || {} });
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
let ret = [], detailMap = [], dmgRet = [], dmgDetail = {};
|
2022-04-23 21:16:37 +00:00
|
|
|
|
|
|
|
|
|
|
2022-04-30 21:06:17 +00:00
|
|
|
|
lodash.forEach(details, (detail, detailSysIdx) => {
|
2022-05-19 02:34:21 +00:00
|
|
|
|
if (lodash.isFunction(detail)) {
|
|
|
|
|
let { attr } = Calc.calcAttr({ originalAttr, buffs, meta });
|
|
|
|
|
let ds = lodash.merge({ talent }, Calc.getDs(attr, meta));
|
2022-06-04 21:29:24 +00:00
|
|
|
|
detail = detail({ ...ds, attr, profile });
|
2022-05-19 02:34:21 +00:00
|
|
|
|
}
|
2022-04-23 21:16:37 +00:00
|
|
|
|
let params = lodash.merge({}, defParams, detail.params || {});
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let { attr } = Calc.calcAttr({ originalAttr, buffs, meta, params, talent: detail.talent || "" });
|
2022-04-25 19:59:13 +00:00
|
|
|
|
if (detail.check && !detail.check(Calc.getDs(attr, meta, params))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-05-02 08:32:31 +00:00
|
|
|
|
if (detail.cons && meta.cons * 1 < detail.cons * 1) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let ds = lodash.merge({ talent }, Calc.getDs(attr, meta, params));
|
|
|
|
|
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let dmg = Calc.getDmgFn({ ds, attr, profile, enemyLv, showDetail: detail.showDetail }),
|
2022-05-02 22:32:36 +00:00
|
|
|
|
basicDmgRet;
|
|
|
|
|
|
|
|
|
|
if (detail.dmg) {
|
|
|
|
|
basicDmgRet = detail.dmg(ds, dmg);
|
2022-04-30 21:06:17 +00:00
|
|
|
|
detail.userIdx = detailMap.length;
|
|
|
|
|
detailMap.push(detail);
|
2022-04-23 21:16:37 +00:00
|
|
|
|
ret.push({
|
|
|
|
|
title: detail.title,
|
2022-04-30 21:06:17 +00:00
|
|
|
|
...basicDmgRet
|
2022-04-23 21:16:37 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
2022-04-30 21:06:17 +00:00
|
|
|
|
|
|
|
|
|
if (mode === "dmg") {
|
|
|
|
|
let detail;
|
|
|
|
|
if (dmgIdx && detailMap[dmgIdx - 1]) {
|
|
|
|
|
detail = detailMap[dmgIdx - 1];
|
|
|
|
|
} else if (!lodash.isUndefined(defDmgIdx) && details[defDmgIdx]) {
|
|
|
|
|
detail = details[defDmgIdx];
|
|
|
|
|
} else {
|
|
|
|
|
detail = detailMap[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dmgDetail = {
|
|
|
|
|
title: detail.title,
|
|
|
|
|
userIdx: detail.userIdx,
|
|
|
|
|
basicRet: lodash.merge({}, ret[detail.userIdx]),
|
|
|
|
|
attr: []
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mainAttr = mainAttr.split(",");
|
|
|
|
|
let params = lodash.merge({}, defParams, detail.params || {});
|
|
|
|
|
let basicDmg = dmgDetail.basicRet;
|
|
|
|
|
lodash.forEach(mainAttr, (reduceAttr) => {
|
|
|
|
|
dmgDetail.attr.push(attrMap[reduceAttr])
|
|
|
|
|
let rowData = [];
|
|
|
|
|
lodash.forEach(mainAttr, (incAttr) => {
|
|
|
|
|
if (incAttr === reduceAttr) {
|
|
|
|
|
rowData.push({ type: 'na' });
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-05-02 22:32:36 +00:00
|
|
|
|
let { attr } = Calc.calcAttr({
|
|
|
|
|
originalAttr,
|
|
|
|
|
buffs,
|
|
|
|
|
meta,
|
|
|
|
|
params,
|
|
|
|
|
incAttr,
|
|
|
|
|
reduceAttr,
|
|
|
|
|
talent: detail.talent || ""
|
|
|
|
|
});
|
2022-05-01 21:58:48 +00:00
|
|
|
|
let ds = lodash.merge({ talent }, Calc.getDs(attr, meta, params));
|
2022-06-04 21:29:24 +00:00
|
|
|
|
let dmg = Calc.getDmgFn({ ds, attr, profile, enemyLv });
|
2022-05-02 22:32:36 +00:00
|
|
|
|
if (detail.dmg) {
|
|
|
|
|
let dmgCalcRet = detail.dmg(ds, dmg);
|
2022-04-30 21:06:17 +00:00
|
|
|
|
rowData.push({
|
|
|
|
|
type: dmgCalcRet.avg === basicDmg.avg ? "avg" : (dmgCalcRet.avg > basicDmg.avg ? "gt" : "lt"),
|
|
|
|
|
...dmgCalcRet
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
dmgRet.push(rowData);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-23 21:16:37 +00:00
|
|
|
|
return {
|
|
|
|
|
ret,
|
2022-04-30 21:06:17 +00:00
|
|
|
|
msg,
|
|
|
|
|
dmgRet,
|
2022-05-19 02:34:21 +00:00
|
|
|
|
enemyName,
|
2022-04-30 21:06:17 +00:00
|
|
|
|
dmgCfg: dmgDetail
|
2022-04-23 21:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Calc;
|