SamsaraGame/assets/Script/ts/game/skill/high/HighFenLieGongJi.ts
2025-04-24 17:03:28 +08:00

22 lines
684 B
TypeScript

import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 高級分裂攻擊
export default class HighFenLieGongJi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HighFenLieGongJi;
this.name = '高級分裂攻擊'; // 技能名字
this.icon = "2130";
this.desc = '物理攻擊時有30%機率增加一個目標。 '; //技能介紹
this.particleEffect = "32229";
this.action_type = ActionType.PASSIVE; // 主動 被動
}
getDetail():string{
return `物理攻擊時有30%機率增加一個目標。 `;
}
}