18 lines
434 B
TypeScript
18 lines
434 B
TypeScript
import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|
|
|
// 防禦
|
|
export default class NormalDefend extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.NormalDefSkill;
|
|
this.name = '防禦';
|
|
this.icon = '1002';
|
|
this.desc = '防禦';
|
|
this.faXi = MagicType.Defense;
|
|
}
|
|
}
|