19 lines
801 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 DuJinGuSui3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.DuJinGuSui3;
this.name = "毒浸骨髓・無價";
this.icon = "71311";
this.effectDesc = "增加自身10%強毒屬性使得中毒目標三尸和藥品道具恢復能力降低30%每200點根骨降低效果增加5%降低效果最高不超過50%";
this.effectMap = {
[EAttrTypeL1.TOXIN_EHAN]: { add: 20, index: 0 },
[EAttrTypeL1.SEAL_EHAN]: { add: 20, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}