2025-04-24 17:03:28 +08:00

27 lines
991 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,ActionOn,ESkillQuality, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class YiYuDangQian extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.YiYuDangQian;
this.name = '一禦當千';
this.icon = "10335";
this.desc = '受到大於自身氣血上限30%的非致死傷害時有機率獲得一個護盾護盾持續2回合每回合只能觸發一次。 ';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.SHEN;
this.buffEffect = '10335';
this.buffEffectY = 45;
this.faXi = MagicType.Defense;
this.scale = AffectType.SINGLE;
this.effectPos = EffectPos.STAGE;
}
getDetail():string{
return `受到大於自身氣血上限30%的非致死傷害時有機率獲得一個護盾護盾持續2回合每回合只能觸發一次。 `;
}
}