19 lines
801 B
TypeScript
19 lines
801 B
TypeScript
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;
|
||
}
|
||
} |