18 lines
669 B
TypeScript
18 lines
669 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
||
// 毒浸骨髓・珍藏
|
||
export default class DuJinGuSui2 extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.id = ESkillType.DuJinGuSui2;
|
||
this.name = "毒浸骨髓・珍藏";
|
||
this.icon = "71311";
|
||
this.effectDesc = "增加自身10%強毒屬性;使得中毒目標三尸和藥品道具恢復能力降低30%";
|
||
this.effectMap = {
|
||
[EAttrTypeL1.TOXIN_EHAN]: { add: 15, index: 0 },
|
||
};
|
||
this.action_type = ActionType.PASSIVE;
|
||
this.quality = ESkillQuality.HIGH;
|
||
}
|
||
} |