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

29 lines
822 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 血煞之蠱
export default class XueShaZhiGu extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.XueShaZhiGu;
this.name = '血煞之蠱';
this.icon = '1028';
this.desc = '攻擊單目標並恢復本方氣血。 ';
this.particleEffect = '24127';
this.faXi = MagicType.ThreeCorpse;
this.vecLevelExp = [];
}
getLevelData(level:number):any{
return {
nTargetCnt: 1
}
}
getDetail():string{
return `極厲害的蠱蟲可以吸取對方的鮮血並傳送給己方。可將造成傷害的300%化為己方所用目標人數1人。 `;
}
}