How to balance this Pokémon simulator metagame by feedback?

Posted by Dokkat on Game Development See other posts from Game Development or by Dokkat
Published on 2012-06-27T23:00:46Z Indexed on 2012/06/28 3:25 UTC
Read the original article Hit count: 240

Filed under:
|
|

This is a Pokémon simulator where you build a team of 6 pokémon and battle with someone. Unfortunately, some Pokémon are stronger than others and only a few of the hundredth species are practical. I'm trying to create a metagame where all of them are competitive. For this, I am tagging a Pokémon with a parameter (level) that changes it's strength and scales up/down depending on the it's performance. That is, if the system detects Mewtwo is overperforming, it should decrease it's level tag until Mewtwo is balanced.

The question is: how can I identify if a Pokémon is causing an unbalance? The data I have is the historic of the battles (player 1, player 2, pokémon list, winner). The most basic solution I can think of is victory/loss counting.

© Game Development or respective owner

Related posts about math

Related posts about balance