2025-04-24 17:03:28 +08:00

18 lines
616 B
TypeScript

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 夢斷魂離・把玩
export default class MengDuanHunLi1 extends SkillBase {
constructor() {
super();
this.id = ESkillType.MengDuanHunLi1;
this.name = "夢斷魂離・把玩";
this.icon = "1968";
this.effectDesc = "增加自身{0}%的加強睡屬性";
this.effectMap = {
[EAttrTypeL1.SLEEP_EHAN]: { add: 7, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}