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