import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 明鉴万里・把玩 export default class MingJianWanLi1 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.MingJianWanLi1; this.skill_name = "明鉴万里・把玩"; this.effectDesc = "增加反震率,反震程度"; this.effectMap = { [EAttrTypeL1.PHY_REBOUND]: { add: 7, index: 0 }, [EAttrTypeL1.PHY_REBOUND_PROB]: { add: 7, index: 1 }, }; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }