24 lines
883 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
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%,畫中仙擺脫一切控制狀態。 `;
}
}