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