import { EAttrTypeL1 } from "../../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../../core/SkillBase"; // 高級秋水流弦 export default class HighQiuShuiLiuXian extends SkillBase { constructor() { super(); this.init(); } init() { this.id = ESkillType.HighQiuShuiLiuXian; this.name = "高級秋水流弦"; this.icon = "qslx"; this.desc = "增加攻擊力、連擊率、連擊次數。"; this.effectDesc = "[E]增加攻擊力{0}%;[E]增加連擊率{1}%;[E]增加連擊次數1"; this.effectMap = { [EAttrTypeL1.ATK_PERC]: { add: 3.5, index: 0 }, [EAttrTypeL1.PHY_COMBO_PROB]: { add: 3.5, index: 1 } }; this.attrDesc = "攻 連擊率 次數"; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.HIGH; } }