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

24 lines
863 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, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 如虎添翼
export default class RuHuTianYi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.RuHuTianYi;
this.name = '如虎添翼';
this.icon = "3006";
this.desc = '召喚獸出場瞬間提高持有者和召喚獸本身5點人法抗性、15點仙法抗性和15點物理抗性能和女魔盤疊加有效2回合。 ';
this.action_type = ActionType.PASSIVE;
this.buffEffect = 'huyi';
this.buffEffectY = 10;
}
getDetail():string{
return `召喚獸出場瞬間提高持有者和召喚獸本身5點人法抗性、15點仙法抗性和15點物理抗性能和女魔盤疊加有效2回合。 `;
}
}