27 lines
773 B
TypeScript
27 lines
773 B
TypeScript
|
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|||
|
|
|||
|
// 高級枯木逢春
|
|||
|
export default class YouFengLaiYi_Mu extends SkillBase{
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.init();
|
|||
|
}
|
|||
|
|
|||
|
init() {
|
|||
|
this.id = ESkillType.YouFengLaiYi_Mu;
|
|||
|
this.name = '高級枯木逢春';
|
|||
|
this.icon = "2122";
|
|||
|
this.desc = '提升敵方全體木五行。 ';
|
|||
|
|
|||
|
this.particleEffect = '32245'; //特效
|
|||
|
this.buffEffect = '32245_s'; // buff特效名字
|
|||
|
this.skillEffectY = -15;
|
|||
|
this.buffEffectY = -30; //buff特效 顯示位置
|
|||
|
this.buffFront = false;
|
|||
|
}
|
|||
|
|
|||
|
getDetail():string{
|
|||
|
return `使用後提高敵方全體木五行,持續3回合,冷卻時間5回合。 `;
|
|||
|
}
|
|||
|
}
|