xy-server/game/skill/baldric/MengDuanHunLi3.ts

20 lines
715 B
TypeScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 梦断魂离・无价
export default class MengDuanHunLi3 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.MengDuanHunLi3;
this.skill_name = "梦断魂离・无价";
this.effectDesc = "增加自身{0}%忽视抗封印属性,增加自身{0}%忽视抗昏睡属性";
this.effectMap = {
[EAttrTypeL1.HK_SLEEP]: { add: 10, index: 0 },
[EAttrTypeL1.HK_SEAL]: { add: 10, index: 1 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}