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

18 lines
667 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 WuDuJvQuan2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.WuDuJvQuan2;
this.name = "五毒俱全・珍藏";
this.icon = "71331";
this.effectDesc = "增加自身10%的強毒屬性;釋放毒法術時有30%概率無視對方毒傷抗性";
this.effectMap = {
[EAttrTypeL1.TOXIN_EHAN]: { add: 10, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}