21 lines
673 B
TypeScript
21 lines
673 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 高級隔山打牛
|
|
export default class HighGeShanDaNiu extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighGeShanDaNiu;
|
|
this.name = '高級隔山打牛'; // 技能名字
|
|
this.icon = "2035";
|
|
this.desc = '物理攻擊時35%機率對周圍的某個目標造成傷害。 '; //技能介紹
|
|
this.action_type = ActionType.PASSIVE; // 主動 被動
|
|
}
|
|
|
|
getDetail():string{
|
|
return `物理攻擊時35%機率對周圍的某個目標造成傷害。 `;
|
|
}
|
|
} |