19 lines
716 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 MengDuanHunLi2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.MengDuanHunLi2;
this.name = "夢斷魂離・珍藏";
this.icon = "1968";
this.effectDesc = "增加自身{0}%的加強睡屬性,增加自身{1}%忽視抗昏睡屬性";
this.effectMap = {
[EAttrTypeL1.SLEEP_EHAN]: { add: 7, index: 0 },
[EAttrTypeL1.HK_SLEEP]: { add: 10, index: 1 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}