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

34 lines
931 B
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,
ESkillQuality
} from "../core/SkillBase";
// 作鳥獸散
export default class ZuoNiaoShouSan extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ZuoNiaoShouSan;
this.name = '作鳥獸散';
this.icon = "2705";
this.desc = '當主人倒地且友方召喚獸只剩自身在場時清除任何狀態立即觸發回复友方人物50%的血法後離場。 ';
this.quality = ESkillQuality.FINAL; //技能 品質
this.particleEffect = '32301';
this.skillActOn = ActionOn.SELF;
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `當主人倒地且友方召喚獸只剩自身在場時清除任何狀態立即觸發回复友方人物50%的血法後離場。 `;
}
}