25 lines
794 B
TypeScript
25 lines
794 B
TypeScript
import SkillBase, { AffectType, EAttackType, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 我見猶憐
|
|
export default class WoJianYouLian extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.WoJianYouLian;
|
|
this.name = '我見猶憐';
|
|
this.icon = '2907';
|
|
this.desc = '鬼火攻擊敵方目標,有一定機率攻擊多個目標,最多攻擊三個目標。 ';
|
|
this.faXi = MagicType.GhostFire;
|
|
this.atkType = EAttackType.REMOTE;
|
|
this.scale=AffectType.GROUP;
|
|
this.particleEffect = '24129';
|
|
this.vecLevelExp = [1700, 13000];
|
|
}
|
|
|
|
getDetail():string{
|
|
return `鬼火攻擊敵方目標,有一定機率攻擊多個目標,最多攻擊三個目標。 `;
|
|
}
|
|
} |