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

26 lines
914 B
TypeScript
Raw 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 } 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回合; 觸發機率與寵物的親密度有關`;
}
}