Power Creep in Pokémon
Power creep is a phenomenon in game design where newer content is made progressively stronger than older content — often to keep the game feeling fresh and incentivize players to engage with new releases. Pokémon is a franchise spanning 9 generations and over 1,000 species, making it a fascinating case study.
In this vignette, we explore whether newer Pokémon really are stronger than older ones by analyzing the distribution of Base Stat Totals (BST) across generations. BST is the sum of all six base stats (HP, Attack, Defense, Sp. Atk, Sp. Def, Speed) and is the most common single-number measure of a Pokémon's overall strength.
Setup
import polars as pl
import matplotlib.pyplot as plt
from pykemon.db import get_connection
con = get_connection()
pokemon = con.sql("SELECT * FROM pokemon").pl()
df = pokemon.filter(pl.col("generation").is_not_null())
BST Distribution by Generation
Each histogram shows the spread of BST for Pokémon introduced in that generation. The dashed line marks the median BST, making it easy to compare across generations at a glance.

Median BST Over Time
To get a cleaner view of the trend, we plot the median BST per generation as a line chart.

Filtering by Form
You may want to exclude Mega Evolutions or regional forms to focus on base Pokémon only.
# Base forms only (no regional variants or Megas)
base_only = pokemon.filter(pl.col("form_name").is_null())
# Exclude regional forms but keep Megas
no_regionals = pokemon.filter(
~pl.col("form_name").str.contains("Alolan|Galarian|Hisuian|Paldean")
)
Forms and Power Creep
Mega Evolutions (Gen VI) and regional forms can inflate the BST ceiling for earlier generations. Filtering to base forms gives a cleaner picture of power creep in the core roster.
Conclusions
A few patterns emerge from the data:
- Early generations (I–III) have a wide spread of BSTs, with most Pokémon clustered around 300–450 and a small number of legendaries above 600.
- Generation VI onward introduced Mega Evolutions, pushing the upper ceiling significantly higher.
- The median BST shows a gradual upward trend — newer ordinary Pokémon are stronger on average than their older counterparts.
- Power creep is real, but nuanced — the floor hasn't risen much, but the ceiling keeps climbing and mid-tier Pokémon are consistently stronger in newer generations.
Competitive Implications
In competitive play, older Pokémon often struggle to keep up with newer generations without access to updated moves or mechanics. BST alone doesn't tell the whole story — movepool, typing, and abilities matter too.