Spawning different enemy types for progression
I all.
I would love your input on a spawning logic for enemies. ( Think of example nuclear throne enemy spawning )
I have the following.
Main menu where I can choose 4 levels.
each levels difficulty goes up by 1. so 1 to 4
I call these World difficulty Multipliers (WD)
Then each world has levels 1 to 6 as example before you hit the boss room.(LD) is goes up + (WD) for each level ( Just Adding Maybe Mutiplier will work better )
I have the possibility of 5 types of enemies. Lets go just 3 for now to keep it simple.
So it is as I play World 1 is would be WD,LD = Difficulty
example
World 1
1,1=2
1,2=3
1,3=4
1,4=5
etc
World 2
2,1=3
2,2=4
2,3=5
etc
What I need to get is.
Level 1
enemies type 1 can spawn in the first area and qty is ?? 100% Rate
Level 2
enemies type 1 can spawn in the first area and qty is ?? 80% Rate
enemies type 2 can spawn in the first area and qty is ?? 20% Rate
Level 2
enemies type 1 can spawn in the first area and qty is ?? 50% Rate
enemies type 2 can spawn in the first area and qty is ?? 30% Rate
enemies type 3 can spawn in the first area and qty is ?? 20% Rate
etc.
So enemy count should increase according to difficulty total as guideline and type should change the deeper you go into the world.
Am I trying to complicate this? Would like to hear from you.
I would love your input on a spawning logic for enemies. ( Think of example nuclear throne enemy spawning )
I have the following.
Main menu where I can choose 4 levels.
each levels difficulty goes up by 1. so 1 to 4
I call these World difficulty Multipliers (WD)
Then each world has levels 1 to 6 as example before you hit the boss room.(LD) is goes up + (WD) for each level ( Just Adding Maybe Mutiplier will work better )
I have the possibility of 5 types of enemies. Lets go just 3 for now to keep it simple.
So it is as I play World 1 is would be WD,LD = Difficulty
example
World 1
1,1=2
1,2=3
1,3=4
1,4=5
etc
World 2
2,1=3
2,2=4
2,3=5
etc
What I need to get is.
Level 1
enemies type 1 can spawn in the first area and qty is ?? 100% Rate
Level 2
enemies type 1 can spawn in the first area and qty is ?? 80% Rate
enemies type 2 can spawn in the first area and qty is ?? 20% Rate
Level 2
enemies type 1 can spawn in the first area and qty is ?? 50% Rate
enemies type 2 can spawn in the first area and qty is ?? 30% Rate
enemies type 3 can spawn in the first area and qty is ?? 20% Rate
etc.
So enemy count should increase according to difficulty total as guideline and type should change the deeper you go into the world.
Am I trying to complicate this? Would like to hear from you.
Comments
Did some thinking and came up with this.
So this is just to start as a base for now.
Just using for testing 3 spawn points. So excuse the guys all over each other.
* Scalable enemy qty for the world.
* The chance to spawn the enemy.
* Once spawned how long before it can spawn again.
Maybe expand this for items drops too. Let say you see the player is struggling to kill the enemies have a unique item spawn.
What I ended up with.
To do
* Using my word and level system in modify these values.
* Set a Limit to the spawn qty.
Any Idea to expand this maybe? If anybody want to see the code . Let me know.
Heavy inspired by Nuclear Thrones but with some history behind it! Hoping to get a playable concept out along it.
This is the base I worked of from. This work as standalone.