import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 劈風斬浪・無價 export default class PiFengZhanLang3 extends SkillBase { constructor() { super(); this.id = ESkillType.PiFengZhanLang3; this.name = "劈風斬浪・無價"; this.icon = "2878"; this.effectDesc = "增加自身{0}%的加強橫掃屬性"; this.effectMap = { [EAttrTypeL1.SWEEP_EHAN]: { add: 40, index: 0 }, [EAttrTypeL1.HP_PERC]: { add: 40, index: 1 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.FINAL; } }