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

34 lines
850 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 SkillBase, {
ActionOn,
ActionType,
AffectType,
EAttackType,
EffectPos,
MagicType,
ESkillType,
ESkillQuality
} from "../core/SkillBase";
// 春回大地
export default class ChunHuiDaDi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ChunHuiDaDi;
this.name = '春回大地';
this.icon = "2706";
this.desc = '群體解除本方全體被控制狀態整場戰鬥只可使用1次(前9回合不可使用)。 ';
this.quality = ESkillQuality.FINAL; //技能 品質
this.particleEffect = '32309';
this.skillActOn = ActionOn.SELF;
this.faXi=MagicType.Rrsume;
}
getDetail():string{
return `群體解除本方全體被控制狀態整場戰鬥只可使用1次(前9回合不可使用)。 `;
}
}