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個目標造成傷害,效果與召喚獸等級、親密和法力上限有關。 `; } }