27 lines
1013 B
TypeScript
27 lines
1013 B
TypeScript
|
import SkillBase, { AffectType, EAttackType, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 飛珠濺玉
|
||
|
export default class FeiZhuJianYu extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.FeiZhuJianYu;
|
||
|
this.name = '飛珠濺玉';
|
||
|
this.icon = '2902';
|
||
|
//this.desc = '單體水法攻擊敵方目標,有一定機率攻擊多個目標,最多攻擊三個目標。 ';
|
||
|
this.desc = '對三個目標造成水法傷害,效果與召喚獸等級、親密和法力上限有關。 ';
|
||
|
this.faXi = MagicType.Water;
|
||
|
this.atkType = EAttackType.REMOTE;
|
||
|
this.scale=AffectType.GROUP;
|
||
|
this.particleEffect = '22216';
|
||
|
this.vecLevelExp = [1700, 13000];
|
||
|
}
|
||
|
|
||
|
getDetail():string{
|
||
|
//return `單體水法攻擊敵方目標,有一定機率攻擊多個目標,最多攻擊三個目標。 `;
|
||
|
return `對三個目標造成水法傷害,效果與召喚獸等級、親密和法力上限有關。 `;
|
||
|
}
|
||
|
}
|