24 lines
883 B
TypeScript
24 lines
883 B
TypeScript
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%,畫中仙擺脫一切控制狀態。 `;
|
||
}
|
||
} |