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

16 lines
543 B
TypeScript

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