26 lines
848 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase";
// 秋水流弦
export default class QiuShuiLiuXian extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.QiuShuiLiuXian;
this.name = "秋水流弦";
this.icon = "qslx";
this.desc = "增加攻擊力、連擊率、連擊次數。";
this.effectDesc = "[E]增加攻擊力{0}%;[E]增加連擊率{1}%;[E]增加連擊次數1";
this.effectMap = {
[EAttrTypeL1.ATK_PERC]: { add: 1.88, index: 0 },
[EAttrTypeL1.PHY_COMBO_PROB]: { add: 1.88, index: 1 }
};
this.attrDesc = "攻 連擊率 次數";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}