16 lines
539 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 萬古長春・無價
export default class WanGuChangChun3 extends SkillBase {
constructor() {
super();
this.id = ESkillType.WanGuChangChun3;
this.name = "萬古長春・無價";
this.icon = "76311";
this.effectDesc = "55%的機率分裂一個目標最多分裂3次";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
}