27 lines
820 B
TypeScript
27 lines
820 B
TypeScript
|
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|||
|
// 西天淨土
|
|||
|
export default class XiTianJingTu extends SkillBase{
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.init();
|
|||
|
}
|
|||
|
|
|||
|
init() {
|
|||
|
this.id = ESkillType.XiTianJingTu;
|
|||
|
this.name = '西天淨土';
|
|||
|
this.icon = "2125";
|
|||
|
this.desc = '提升敵方全體土五行50。 ';
|
|||
|
|
|||
|
this.particleEffect = '32248'; //特效
|
|||
|
this.buffEffect = '32248_s'; // buff特效名字
|
|||
|
this.skillEffectY = -15;
|
|||
|
this.buffEffectY = -30; //buff特效 顯示位置
|
|||
|
this.scale = AffectType.GROUP; //使用範圍,單攻/群攻
|
|||
|
this.buffFront = false;
|
|||
|
}
|
|||
|
|
|||
|
getDetail():string{
|
|||
|
return `使用後提高敵方全體土五行50,持續3回合,冷卻時間5回合。 `;
|
|||
|
}
|
|||
|
}
|