AI Specialisation

What type of AI?

 

In my Specialization, I have created a squad that works together to win against the player. There are four types of AI: Medic, Leader, Decoy, and Flanker, each with their own role to play.

Behavior Trees

I have chosen behavior trees as the decision-making system among the three available approaches (behavior trees, decision trees, and state machines). My preference for behavior trees stems from the greater control they offer in determining how the AI agent prioritizes its decisions. Furthermore, behavior trees enhance flexibility in the decision-making process by accommodating both ordered and selected decision-making scenarios.

Leader
The Leader holds the team together
Medic
The Medic focuses on keeping his teammates alive

 


The Medic AI will scan the battlefield to locate any teammate, whether the Decoy or the Leader, with less than 35% of their maximum health remaining. Once a wounded ally is detected, the Medic will move to their position and administer the necessary medical care to restore their combat readiness.

Decoy
The Decoy distracts and diverts the player's attention

The decoy roll is to help the teammate with taking damage and also shoot a lot.
Decoy takes players attention so the Flanker can go around wtihout the player notice it.
The decoy also helps the medic, if the medic has below 50% health it will begin shooting twice the speed.

 

Flanker
The Flanker sneaks behind the player to attack from behind

The Flanker role is to flank the player while remaining undetected. It will move behind cover, using stealth and evasion to approach the target from an unexpected angle. The goal is to surprise and outmaneuver the target.

Unlike the Decoy and Leader AI agents, the Flanker will not receive direct healing support from the Medic. Instead, the Flanker AI has been designed with a self-preservation protocol - when its health drops below 35%, it will automatically move to the nearest available cover and begin administering self-healing.

This design choice was inspired by the stealth mechanic from game call Metal Gear Solid 3, where the player must rely on their own resourcefulness and ability to find safe locations to recover when injured, rather than depending on a dedicated medic. The Flanker AI embodies this same principle, prioritizing mobility and self-sufficiency over team-based healing.