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