34 lines
770 B
TypeScript
34 lines
770 B
TypeScript
|
import SkillBase, {
|
||
|
ActionOn,
|
||
|
ActionType,
|
||
|
AffectType,
|
||
|
EAttackType,
|
||
|
EffectPos,
|
||
|
MagicType,
|
||
|
ESkillType,
|
||
|
ESkillQuality
|
||
|
} from "../core/SkillBase";
|
||
|
// 成仁取義
|
||
|
export default class ChengRenQuYi extends SkillBase{
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.ChengRenQuYi;
|
||
|
this.name = '成仁取義';
|
||
|
this.icon = "10321";
|
||
|
this.desc = '離場時解除召喚獸主人身上的異常狀態。 ';
|
||
|
this.quality = ESkillQuality.FINAL;
|
||
|
this.particleEffect = '32304';
|
||
|
this.skillActOn = ActionOn.SELF;
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
}
|
||
|
|
||
|
getDetail():string{
|
||
|
return `離場時解除召喚獸主人身上的異常狀態。 `;
|
||
|
}
|
||
|
}
|
||
|
|