xy-server/game/skill/ofuda/HuShui3.ts

20 lines
639 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 HuShui3 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HuShui3;
this.skill_name = "忽睡・无价";
this.effectDesc = "牺牲速度,增加忽视睡";
this.effectMap = {
[EAttrTypeL1.BONE]: { add: -15, index: 0 },
[EAttrTypeL1.HK_SLEEP]: { add: 8, index: 0 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}