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

20 lines
805 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 HuRuQiLai2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.HuRuQiLai2;
this.name = "忽如其來・珍藏";
this.icon = "71301";
this.effectDesc = "仙法、鬼火每8回合觸發一次法術傷害忽視值增加{0}%,使用後增益效果消失。";
this.effectMap = {
[EAttrTypeL1.HK_WILDFIRE]: { add: 60, index: 0 },
[EAttrTypeL1.HK_WATER]: { add: 60, index: 1 },
[EAttrTypeL1.HK_THUNDER]: { add: 60, index: 2 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}