xy-server/game/skill/ofuda/HaoQiLingXiao1.ts
2025-04-23 09:34:08 +08:00

16 lines
541 B
TypeScript

import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 浩气凌霄・把玩
export default class HaoQiLingXiao1 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HaoQiLingXiao1;
this.skill_name = "浩气凌霄・把玩";
this.effectDesc = "释放仙法、鬼火、三尸、毒有一定几率二连击";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}