xy-server/game/skill/high/HighXianFengDaoGu.ts

14 lines
502 B
TypeScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
import { ESkillType, EMagicType, EActionType, ESkillQuality, EActionOn } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 仙风道骨
export default class HighXianFengDaoGu extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.HighXianFengDaoGu;
this.skill_name = '仙风道骨';
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH; //技能 品质
this.act_on = EActionOn.SELF;
}
}