2025-04-24 17:03:28 +08:00

16 lines
537 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}