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

20 lines
628 B
TypeScript
Raw Permalink 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, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 有鳳來儀
export default class YouFengLaiYi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.YouFengLaiYi;
this.name = '有鳳來儀';
this.icon = "2016";
this.desc = '提升目標任意五行。 ';
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `朱雀運用五行之力可使敵方全體目標任意五行大幅提升持續3回合冷卻時間5回合。 `;
}
}