import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 怒击・珍藏 export default class NuJi2 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.NuJi2; this.skill_name = "怒击・珍藏"; this.effectDesc = "召唤兽蓄势待发,第N回合出战则攻击力增加。"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }