34 lines
779 B
TypeScript
34 lines
779 B
TypeScript
|
import SkillBase, {
|
||
|
ActionOn,
|
||
|
ActionType,
|
||
|
AffectType,
|
||
|
EAttackType,
|
||
|
EffectPos,
|
||
|
MagicType,
|
||
|
ESkillType,
|
||
|
ESkillQuality
|
||
|
} from "../core/SkillBase";
|
||
|
// 當頭棒喝
|
||
|
export default class DangTouBangHe extends SkillBase{
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.DangTouBangHe;
|
||
|
this.name = '當頭棒喝';
|
||
|
this.icon = "2703";
|
||
|
this.desc = '進場時解除己方所有召喚獸的異常狀態。 ';
|
||
|
this.quality = ESkillQuality.FINAL; //技能 品質
|
||
|
this.particleEffect = '32304';
|
||
|
this.skillActOn = ActionOn.SELF;
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
}
|
||
|
|
||
|
getDetail():string{
|
||
|
return `進場時解除己方所有召喚獸的異常狀態。 `;
|
||
|
}
|
||
|
}
|
||
|
|