29 lines
822 B
TypeScript
Raw 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 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人。 `;
}
}