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

27 lines
1005 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 { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
import FactionTalent from "../../../FactionTalent";
// 回風落雁・無價
export default class HuiFengLuoYan3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.HuiFengLuoYan3;
this.name = "回風落雁";
this.icon = "hfly";
this.effectDesc = "被擊倒或控制命中時20%機率讓敵方速度降低持續3個回合同一隊伍兩次出發至少間隔5個回合";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
getLevelData():any{
let factionTalentLevel = FactionTalent.Instance.factionTalentLevel;
return {
add: 7 + factionTalentLevel * 0.5,
}
}
getDetail():string{
return `被擊倒或控制命中時機率讓敵方速度降低持續3個回合同一隊伍兩次出發至少間隔5個回合`;
}
}