16 lines
539 B
TypeScript
16 lines
539 B
TypeScript
|
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;
|
|||
|
}
|
|||
|
}
|