21 lines
605 B
TypeScript
21 lines
605 B
TypeScript
|
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 擊其不意
|
||
|
export default class JiQiBuYi extends SkillBase{
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.JiQiBuYi;
|
||
|
this.name = '擊其不意'; // 技能名字
|
||
|
this.icon = "2136";
|
||
|
this.desc = '進場時進行一次隨機物理攻擊。 '; //技能介紹
|
||
|
this.action_type = ActionType.PASSIVE; // 主動 被動
|
||
|
}
|
||
|
|
||
|
getDetail():string{
|
||
|
return `進場時進行一次隨機物理攻擊。 `;
|
||
|
}
|
||
|
}
|