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

13 lines
459 B
TypeScript

import { ESkillType, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
//技能效果:提升召唤兽伤害加深属性
export default class ZhanShenFaMing extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.ZhanShenFaMing;
this.skill_name = '戕身伐命';
this.action_type = EActionType.PASSIVE;
this.kind = ESkillType.ZhanShenFaMing;
this.quality = ESkillQuality.FINAL;
}
}