import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 拈花・把玩 export default class NianHua1 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.NianHua1; this.skill_name = "拈花・把玩"; this.effectDesc = "人物或召唤兽受到药品恢复时,一定几率让主人召唤兽同事受到相同恢复"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }