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

24 lines
883 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, {AffectType, EAttackType, MagicType, ESkillType, ActionOn} from "../core/SkillBase";
// 移花接木
export default class YiHuaJieMu extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.YiHuaJieMu;
this.name = '移花接木';
this.icon = '31115';
this.desc = '與任意目標交換狀態冷卻5回合。每回合初始若己方存活且未被控制的單位數少於40%,畫中仙擺脫一切控制狀態。 ';
this.atkType = EAttackType.REMOTE;
this.skillActOn = ActionOn.ALL;
this.particleEffect = '24129';
this.vecLevelExp = [1700, 13000];
}
getDetail():string{
return `與任意目標交換狀態冷卻5回合。每回合初始若己方存活且未被控制的單位數少於40%,畫中仙擺脫一切控制狀態。 `;
}
}