import { EAttrTypeL1 } from "../../../core/EEnum"; import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase"; // 萬古長春・把玩 export default class WanGuChangChun1 extends SkillBase { constructor() { super(); this.id = ESkillType.WanGuChangChun1; this.name = "萬古長春・把玩"; this.icon = "76311"; this.effectDesc = "30%的機率分裂一個目標,最多分裂3次"; this.action_type = ActionType.PASSIVE; this.quality = ESkillQuality.LOW; } }