28 lines
756 B
TypeScript
28 lines
756 B
TypeScript
import SkillBase, {ActionType, EAttackType, ESkillType, MagicType} from "../core/SkillBase";
|
|
|
|
|
|
// 安行疾鬥
|
|
export default class AnXingJiDou extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.AnXingJiDou;
|
|
this.name = "安行疾鬥";
|
|
this.icon = "2904";
|
|
this.desc = '物理攻擊三個單位。 ';
|
|
this.faXi = MagicType.Physics;
|
|
this.atkType = EAttackType.MELEE;
|
|
this.buffEffectY = 0;
|
|
|
|
}
|
|
|
|
getDetail():string{
|
|
//return `福犬在主人首次倒地時激發勇猛鬥志,擺脫一切負面狀態,幻化人形狀態。進入人形狀態後每回合開始均可清除所有負面狀態。 `;
|
|
return `物理攻擊三個單位。 `;
|
|
}
|
|
|
|
}
|