18 lines
434 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
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;
}
}