26 lines
815 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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%法量。 `;
}
}