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