SamsaraGame/assets/Script/ts/game/skill/pet/WanJiaDengHuo_Qing.ts

25 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 萬家燈火 青
export default class WanJiaDengHuo_Qing extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.WanJiaDengHuo_Qing;
this.name = '萬家燈火';
this.icon = '10348';
this.desc = '對兩個目標施放火法。每回合初點亮一盞花燈顏色從紅青藍中隨機。紅色本回合火系狂暴率增加50%青色本回合施放青面獠牙增加1個低速目標藍色本回合施放小樓夜哭增加1個低速目標。 ';
this.particleEffect = '10346_s';
this.buffEffect = '10346_s';
this.buffEffectY = 25;
this.action_type = ActionType.PASSIVE;
this.skillActOn = ActionOn.SELF;
}
getDetail():string{
let stLevelData = this.getLevelData(this.curExp);
return `對兩個目標施放火法。每回合初點亮一盞花燈顏色從紅青藍中隨機。紅色本回合火系狂暴率增加50%青色本回合施放青面獠牙增加1個低速目標藍色本回合施放小樓夜哭增加1個低速目標。 `;
}
}