24 lines
863 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 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回合。 `;
}
}