I have the enemies set up, item drops and player story. What is missing… a boss, so i decided to start working on creating a boss. I decided to look for an alien looking hunter that would be my boss, and found a character on Mixamo.com.
I had an idea for the amount of attacks the boss was going to have:
- Right Swipe- the boss swipes using his right hand and the player has to stay on his left side to avoid the damage, for which i needed a box collider to detect when the player is in this field to take the damage. In addition i needed the box colliders to be enabled and disabled when the attack is attacking and not attacking.
- Left Swipe- The boss swipes using his left hand and the player has to stay on his Right side to avoid the damage, for which i needed a box collider to detect when the player is in this field to take the damage.
- Leg Sweep- the Boss uses his leg to sweep the group and the only way to dodge this is to jump to avoid the damage,for which i needed a box collider to detect when the player is in this field to take the damage.
- Cast- The boss raises a circle infront of him dealing a little amount of damage, however with high range, making the attack difficult to evade, for which i needed a box collider to detect when the player is in this field to take the damage.
Also i wanted my boss to begin the fight with a battle cry, to make the player hyped to fight the boss and also to show how strong the enemy is, as normal enemies will not have a battle cry.
Each attack does a different amount of damage.
One thought on “Boss implementation”