RiftMayhem/Assets/Scripts/NPC/SkellyMageBossController.cs
Pedro Gomes 981037c83c Bugfix save/load equipments & boss update
- save/load equip and inventory correctly using character name
- added boss behaviours
- added boss unique abilities
2024-07-18 14:57:20 +01:00

39 lines
965 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SkellyMageBossController : BossController
{
protected override void PerformHighestPriorityAction()
{
base.PerformHighestPriorityAction();
}
protected override void PerformSecondHighestPriorityAction()
{
base.PerformSecondHighestPriorityAction();
}
protected override void PerformThirdHighestPriorityAction()
{
base.PerformThirdHighestPriorityAction();
}
protected override void PerformUltimate()
{
Debug.Log("INSIDE CAN CAST ULTIMATE: " + bossAbilityBinder.CanCastUltimate());
ResetValuesOnAbilityPerformed();
bossAbilityBinder.UseUltimateAbility(this.transform.position);
}
protected override void PerformCoreAbility()
{
base.PerformCoreAbility();
}
protected override void PerformMeleeAbility()
{
base.PerformMeleeAbility();
}
}