2025-04-24 17:03:28 +08:00

19 lines
757 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 氣定乾坤・無價
export default class QiDingQianKun3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.QiDingQianKun3;
this.name = "氣定乾坤・無價";
this.icon = "73311";
this.effectDesc = "增加自身15%的加強加速屬性被速上的單位帶有10%清明術效果,每200點敏捷提升1%效果";
this.effectMap = {
[EAttrTypeL1.SPD_ADD_EHAN]: { add: 15, index: 0 },
[EAttrTypeL1.SPD_ADD]: { add: 15, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}