16 lines
617 B
TypeScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 庇佑・珍藏
export default class BiYou2 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.BiYou2;
this.skill_name = "庇佑・珍藏";
this.effectDesc = "召唤兽保护我方人物或伙伴则本回合为其分担一定比例的伤害且召唤兽分担到的伤害降低一定比例仅PVP前5回合生效。";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}