import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum"; import SkillBase from "../core/SkillBase"; // 堆月・把玩 export default class DuiYue1 extends SkillBase { constructor() { super(); this.skill_id = ESkillType.DuiYue1; this.skill_name = "堆月・把玩"; this.effectDesc = "魅惑、毒持续施法,可叠加增强效果"; this.action_type = EActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }