2025-04-24 17:03:28 +08:00

35 lines
956 B
TypeScript
Raw 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 SkillBase, {
ActionOn,
ActionType,
AffectType,
EAttackType,
EffectPos,
MagicType,
ESkillType,
ESkillQuality
} from "../core/SkillBase";
// 長驅直入
export default class ChangQuZhiRu extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ChangQuZhiRu;
this.name = '長驅直入';
this.icon = "10325";
this.desc = '消耗15400法力清除敵方3個單位正面狀態整場戰鬥只可使用1次6回合後才可使用。 (僅PVP生效)';
this.quality = ESkillQuality.FINAL;
this.particleEffect = '32309';
this.skillActOn = ActionOn.ENEMY;
this.action_type = ActionType.INITIATIVE;
this.faXi=MagicType.Rrsume;
}
getDetail():string{
return `消耗15400法力清除敵方3個單位正面狀態整場戰鬥只可使用1次6回合後才可使用。 (僅PVP生效)`;
}
}