Balancing Combat through Testing

Intro

In this post, I’ll be discussing recent changes that have been made to the combat system through some initial testing. Monsters were either too strong, or too weak, and in some cases the range of certain monster’s stats were too high in variation. This has been some of my favorite moments of the production phase since I was able to play with the various class skills and encounter unique monster types where I had to think about what my optimal turn might be.

Debug Tools

Having the proper set of debug tools could save so much time during production! I was struggling with testing specific combat encounters because I would have to manually equip certain item sets to have a good estimation of how powerful a character would be at a given level. To remedy this sort of manual work, we created a testing tool that would allow me to populate my character with items pulled from our database of 100k+ different items. With this tool, I could choose the item type, rarity, level, and it would update my stats in real time to factor in those stat bonuses. I could now test how combat encounters would feel like at various stages of the game. Additionally, I added debug buttons to heal the player and enemy to full to allow for a more flexible testing experience.

Video Link of Equipping Items in Combat

Debug Panel circled in blue
Debug Panel circled in blue

Combat Changes

During the initial testing phases, the player would lose 50% of the combat encounters from the get-go! I updated the player’s first skill to have a stun chance, and made adjustments to the monster’s stats so that the player would be heavily favored for their first few encounters. In addition, player’s had a chance to fight 2-3 enemies for their first combat encounter. In those cases, they were essentially sent to their death sentence, which was not the experience we were going for. To remedy this, I ensured that players would only face 1 monster until they were adequately leveled up and more experience in combat.

I made various stat adjustments across the board. The Novice class was gaining a boost in stats per level that was greater than they would get after they actually advanced to their first main class. However, I couldn’t just lower these stats because all of the mana costs were specifically matched to accommodate for the previous stat gains. My solution was to lower the primary stat gain, but mimic the hp/mp gain so that I wouldn’t have to adjust those mana cost for skills. I also clamped monsters to have a base minimum hp based on their levels, since there were some instances where higher level monsters would have extremely low health values relative to other monsters at the same level.

I added 2 skills to the Novice class, to allow for the player to have a higher degree of flexibility between combat decisions.

Changes to Come

The initial testing phase allowed me to take note of multiple issues with our combat system. In the next coming weeks, I’ll be working to fix these. These were some of the biggest things I noted that will be worked on.

Basic Classes Combat Videos

3 videos that showcase the initial classes combat capabilities.

Mage
Ranger
Warrior

Thanks for reading!

Paul