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