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