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

19 lines
729 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 BaXinZhuHuo2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.BaXinZhuHuo2;
this.name = "把薪助火・珍藏";
this.icon = "73201";
this.effectDesc = "增加自身{0}%的加強加防屬性如果被混亂有10%的機率擺脫控制";
this.effectMap = {
[EAttrTypeL1.DEFEND_ADD_EHAN]: { add: 15, index: 0 },
[EAttrTypeL1.DEFEND_ADD]: { add: 15, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}