import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../../role/EEnum"; import SkillBase from "../../core/SkillBase"; // 高级斗转星移 export default class HighDouZhuanXingYi extends SkillBase { constructor() { super(); this.skill_id = ESkillType.HighDouZhuanXingYi; this.skill_name = "高级斗转星移"; this.effectDesc = "[B]增加气血{0}%;[E]增加反震程度{1}%"; this.effectMap = { [EAttrTypeL1.HP_PERC]: { add: 3.5, index: 0 }, [EAttrTypeL1.PHY_REBOUND]: { add: 5.15, index: 1 } }; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }