SamsaraGame/assets/Script/ts/game/skill/pet/WanJiaDengHuo_Lan.ts
2025-04-24 17:03:28 +08:00

25 lines
1.2 KiB
TypeScript
Raw 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 WanJiaDengHuo_Lan extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.WanJiaDengHuo_Lan;
this.name = '萬家燈火';
this.icon = '10349';
this.desc = '對兩個目標施放火法。每回合初點亮一盞花燈顏色從紅青藍中隨機。紅色本回合火系狂暴率增加50%青色本回合施放青面獠牙增加1個低速目標藍色本回合施放小樓夜哭增加1個低速目標。 ';
this.particleEffect = '10347_s';
this.buffEffect = '10347_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個低速目標。 `;
}
}