2025-04-24 17:03:28 +08:00

34 lines
794 B
TypeScript

import SkillBase, {
ActionOn,
ActionType,
AffectType,
EAttackType,
EffectPos,
MagicType,
ESkillType,
ESkillQuality
} from "../core/SkillBase";
// 戕身伐命
export default class ZhanShenFaMing extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.ZhanShenFaMing;
this.name = '戕身伐命';
this.icon = "10328";
this.desc = '提升召喚獸傷害加深屬性20%';
this.quality = ESkillQuality.SHEN; //技能 品質
this.particleEffect = '32304';
this.skillActOn = ActionOn.SELF;
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL; //技能 品質
}
getDetail():string{
return `提升召喚獸傷害加深屬性20%`;
}
}