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

22 lines
827 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, { ActionType,ESkillQuality,ActionOn, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
//技能效果召喚獸自身提高忽視防禦機率8.6%和忽視防禦程度8.6%。
export default class FengTiYangWei extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.FengTiYangWei;
this.name = '奮蹄揚威';
this.icon = "10351";
this.desc = '被動技能,召喚獸自身提高忽視防禦機率和忽視防禦程度';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
this.skillActOn = ActionOn.SELF;
}
getDetail():string{
return `被動技能,被動技能,召喚獸自身提高忽視防禦機率和忽視防禦程度`;
}
}