2025-04-24 17:03:28 +08:00

28 lines
821 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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