2025-04-23 09:34:08 +08:00

16 lines
618 B
TypeScript
Raw Permalink 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 { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 庇佑・无价
export default class BiYou3 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.BiYou3;
this.skill_name = "庇佑・无价";
this.effectDesc = "召唤兽保护我方人物或伙伴则本回合为其分担一定比例的伤害且召唤兽分担到的伤害降低一定比例仅PVP前5回合生效。";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}