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