26 lines
914 B
TypeScript
26 lines
914 B
TypeScript
import SkillBase, { AffectType, EAttackType, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
||
// 忘其所以
|
||
export default class WangQiSuoYi extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.init();
|
||
}
|
||
|
||
init() {
|
||
this.id = ESkillType.WangQiSuoYi;
|
||
this.name = '忘其所以';
|
||
this.icon = '31150';
|
||
this.desc = '向三個目標釋放控制技能,被施法目標50%機率當前回合不能出手,冷卻5回合; 觸發機率與寵物的親密度有關';
|
||
this.buffEffect = 'wang';
|
||
this.faXi = MagicType.BAN;
|
||
this.atkType = EAttackType.REMOTE;
|
||
this.scale=AffectType.GROUP;
|
||
this.particleEffect = '1128';
|
||
this.vecLevelExp = [1700, 13000];
|
||
}
|
||
|
||
getDetail():string{
|
||
return `向三個目標釋放控制技能,被施法目標50%機率當前回合不能出手,冷卻5回合; 觸發機率與寵物的親密度有關`;
|
||
}
|
||
} |