import SkillBase, { ActionType, ESkillType } from "../core/SkillBase"; // 利涉大川 export default class LiSheDaChuan extends SkillBase{ constructor() { super(); this.init(); } init() { this.id = ESkillType.LiSheDaChuan; this.name = "利涉大川"; this.icon = "31130"; this.desc = '釋放天魔解體、分光化影、青面獠牙、小樓夜哭(含高級)時,將額外作用於敵方2名最低速目標,且每回合,自動恢復自身80%法量。 '; this.action_type=ActionType.PASSIVE; this.buffEffectY = 0; } getDetail():string{ return `釋放天魔解體、分光化影、青面獠牙、小樓夜哭(含高級)時,將額外作用於敵方2名最低速目標,且每回合,自動恢復自身80%法量。 `; } }