SamsaraGame/assets/Script/ts/game/skill/low/FengHuoLiaoYuan.ts

26 lines
757 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 風火燎原
export default class FengHuoLiaoYuan extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.FengHuoLiaoYuan;
this.name = '風火燎原';
this.icon = "2124";
this.desc = '提升敵方全體火五行50。 ';
this.particleEffect = '32247'; //特效
this.buffEffect = '32247_s'; // buff特效名字
this.skillEffectY = -15;
this.buffEffectY = -30; //buff特效 顯示位置
this.buffFront = false;
}
getDetail(): string {
return `使用後提高敵方全體火五行50持續3回合冷卻時間5回合。 `;
}
}