16 lines
538 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 WanGuChangChun2 extends SkillBase {
constructor() {
super();
this.id = ESkillType.WanGuChangChun2;
this.name = "萬古長春・珍藏";
this.icon = "76311";
this.effectDesc = "40%的機率分裂一個目標最多分裂3次";
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}