import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 鋒芒畢露・把玩 export default class FengMangBiLu1 extends SkillBase { constructor() { super(); this.id = ESkillType.FengMangBiLu1; this.name = "鋒芒畢露・把玩"; this.icon = "74301"; this.effectDesc = "增加自身{0}%的強三尸屬性"; this.effectMap = { [EAttrTypeL1.BLOODRETURN_EHAN]: { add: 10, index: 0 }, }; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }