19 lines
726 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 QiDingQianKun2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.QiDingQianKun2;
this.name = "氣定乾坤・珍藏";
this.icon = "73311";
this.effectDesc = "增加自身15%的加強加速屬性被速上的單位帶有10%清明術效果";
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.HIGH;
}
}