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

27 lines
1.3 KiB
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, { AffectType, EAttackType, MagicType, ESkillType } from "../core/SkillBase";
// 恨雨霏霏
export default class HenYvFeiFei extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HenYvFeiFei;
this.name = '恨雨霏霏';
this.icon = '31147';
this.desc = '對一個目標造成水法傷害效果與召喚獸等級、親密和法力上限有關。若攻擊後目標氣血值低於30%包括擊殺則目標加1若再次低於30%目標再加1目標數量最多為3個';
// this.desc = '對三個目標造成水法傷害有機率對5個目標造成傷害效果與召喚獸等級、親密和法力上限有關。 ';
this.faXi = MagicType.Water;
this.atkType = EAttackType.REMOTE;
this.scale=AffectType.SINGLE;
this.particleEffect = '22216';
this.vecLevelExp = [1700, 13000];
}
getDetail():string{
return `對一個目標造成水法傷害效果與召喚獸等級、親密和法力上限有關。若攻擊後目標氣血值低於30%包括擊殺則目標加1若再次低於30%目標再加1目標數量最多為3個`;
// return `對三個目標造成水法傷害有機率對5個目標造成傷害效果與召喚獸等級、親密和法力上限有關。 `;
}
}