20 lines
628 B
TypeScript
20 lines
628 B
TypeScript
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回合。 `;
|
||
}
|
||
} |