20 lines
628 B
TypeScript
Raw Normal View History

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