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

16 lines
880 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ESkillType, EActionType,EMagicType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
//技能效果:进场时把己方阵营后方的状态效果反转给敌方阵营。
//扭转乾坤的出现可以说是打破了目前的PK格局其作用目前来看应该是可以将我方身后的状态反弹给对手比如化无比如明察秋毫等不知化无能否保住一直以来的老大地位扭转乾坤又会给我们带来什么惊喜让我们在将来的实战中一起体验
export default class NiuZhuanQianKun extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.NiuZhuanQianKun;
this.skill_name = '扭转乾坤';
this.action_type = EActionType.PASSIVE;
this.skill_type = EMagicType.NIUZHUAN;
this.kind = ESkillType.NiuZhuanQianKun;
this.quality = ESkillQuality.FINAL;
}
}