26 lines
932 B
TypeScript
Raw Permalink 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 HighPoFuChenZhou extends SkillBase {
constructor() {
super();
this.init();
}
private init() {
this.id = ESkillType.HighPoFuChenZhou;
this.name = "高級破釜沉舟";
this.icon = "pfcz";
this.desc = "增加攻擊力、狂暴率、破防程度。";
this.effectDesc = "[A]增加攻擊力{0}%;[E]增加狂暴率{1}%;[E]增加破防程度{2}%";
this.effectMap = {
[EAttrTypeL1.ATK_PERC]: { add: 2.24, index: 0 },
[EAttrTypeL1.PHY_DEADLY]: { add: 2.1, index: 1 },
[EAttrTypeL1.PHY_BREAK]: { add: 3.1, index: 2 },
};
this.attrDesc = "攻 狂暴率 破防";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}