Creating a Rogue-like (like Vampire Survivors) in Unity — Part 22: Curse Boosts and All Enemy Stats

This article is a part of the series:
Creating a Rogue-like Shoot 'Em Up (like Vampire Survivors) in Unity

Now that we have the revamped enemy system that makes the enemy spawning much more exciting, let's look at how we can improve the depth of enemy interaction in our game. In Part 4, when we first implemented stats for the enemy, we only had health, move speed and damage. In this part, we are going to add all the enemy stats you find in Vampire Survivors on our enemies, so that we are able to create enemies with more depth.

To view this content, you must be a member of Terresqualls Patreon at $5 or more
Already a qualifying Patreon member? Refresh to access this content.

There are 2 comments:

  1. Hello,
    In the first EnemyStats script I was not able to copy paste it to my Visual Studio. My C# version was not sufficient. Indeed, unity use the C# 9.0 while the struct without the init require C# 10.0 or more.
    [System.Serializable] public struct Resistances { [Range(0f, 1f)] public float freeze = 0f, kill = 0f, debuff = 0f; }
    I saw that you remove the default value in the second EnemyStats script. Maybe you should do the same for the first one?

Leave a Reply

Your email address will not be published. Required fields are marked *

Note: You can use Markdown to format your comments.

For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

I agree to these terms.

This site uses Akismet to reduce spam. Learn how your comment data is processed.