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

26 lines
815 B
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, { 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%法量。 `;
}
}