Nintendo Classics is a collection of hundreds of retro
video games from Nintendo (and Sega) consoles from the NES to the GameCube.
Nintendo Classics is included with the
Looking at the prices of retro games these days, this seems like an
incredible value for players that want to play these games.
This post is sharing a dataset that I've curated about
For example, here's a graph showing the total value (in $USD) of Nintendo Classics over time:
The dataset was generated from the tables provided on Wikipedia (CC-BY-SA). The dataset doesn't contain pricing information, instead
only links to corresponding Pricecharting pages.
This page only shares approximate aggregate price information, not prices of individual games.
This page will be automatically updated over time as Nintendo announces more games
are coming to
There are 8 unique platforms on
And here's the data for all published and announced games as a table:
| Platform | Games | Total Value | Value per Game |
|---|---|---|---|
| NES | 91 | $1980 | $21 |
| SNES | 83 | $3600 | $43 |
| Game Boy (GB/GBC) | 41 | $1615 | $39 |
| Nintendo 64 (N64) | 42 | $1130 | $26 |
| Sega Genesis | 51 | $2910 | $57 |
| Game Boy Advance (GBA) | 30 | $930 | $31 |
| GameCube | 9 | $640 | $71 |
| Virtual Boy | 14 | $2580 | $184 |
| All Platforms | 361 | $15385 | $42 |
View SQL query
SELECT platform, COUNT(*), SUM(price), SUM(price)/COUNT(*)
FROM games
GROUP BY platform;
There are multiple "tiers" of
Certain collections require specific hardware, such as Virtual Boy requiring either the recreation ($100) or cardboard ($30) Virtual Boy headset and GameCube collection requiring a Switch 2 ($450). All other collections work just fine with a Switch Lite ($100). All platforms beyond NES, SNES, Game Boy, and Game Boy Color require NSO + Expansion Pass.
| Platforms | Requires | Price | Games | Games Value |
|---|---|---|---|---|
| NES, SNES, GB, GBC | Switch Lite & NSO * | $100 + $20/Yr | 215 | $7195 |
| +N64, Genesis, GBA | Switch Lite & NSO+EP | $100 + $50/Yr | 338 | $12165 |
| +Virtual Boy | Switch Lite, NSO+EP, & VB | $130 + $50/Yr | 352 | $14745 |
| +GameCube | Switch 2 & NSO+EP | $450 + $50/Yr | 361 | $15385 |
* I wanted to highlight that Nintendo Switch Online (NSO) without Expansion Pack has the option to actually pay $3 monthly rather than $20 yearly. This doesn't make sense if you're paying for a whole year anyway, but if you want to just play a game in the NES, SNES, GB, or GBC collections you can pay $3 for a month of NSO and play games for very cheap.
Here's the break-down per year how many games were added to each platform:
| Platform | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 |
|---|---|---|---|---|---|---|---|---|
| NES | 30 | 30 | 8 | 2 | 5 | 4 | 12 | |
| SNES | 25 | 18 | 13 | 9 | 1 | 9 | 8 | |
| N64 | 10 | 13 | 8 | 8 | 3 | |||
| Genesis | 20 | 17 | 8 | 3 | 3 | |||
| Game Boy | 19 | 16 | 6 | |||||
| GBA | 13 | 12 | 5 | |||||
| GameCube | 9 | |||||||
| Virtual Boy | ||||||||
| All Platforms | 30 | 55 | 26 | 55 | 43 | 53 | 60 | 34 |
View SQL query
SELECT platform, STRFTIME('%Y', added_date) AS year, COUNT(*)
FROM games
GROUP BY platform, year
ORDER BY platform, year DESC;
There are a bunch of valuable and rare games available in
View SQL query
SELECT platform, name, price FROM games
ORDER BY price DESC LIMIT 50;
Nintendo Classics has more publishers than just Nintendo and Sega. Looking at which third-party publishers are publishing their games to Nintendo Classics can give you a hint at what future games might make their way to the collection:
| Publisher | Games | Value |
|---|---|---|
| Capcom | 17 | $1055 |
| Xbox Game Studios | 13 | $245 |
| Koei Tecmo | 13 | $465 |
| City Connection | 11 | $240 |
| Konami | 10 | $505 |
| Bandai Namco Entertainment | 9 | $190 |
| Sunsoft | 7 | $155 |
| Natsume Inc. | 7 | $855 |
| G-Mode | 7 | $190 |
| Arc System Works | 6 | $110 |
View SQL query
SELECT publisher, COUNT(*) AS num_games, SUM(price)
FROM games WHERE publisher NOT IN ('Nintendo', 'Sega')
GROUP BY publisher
ORDER BY num_games DESC LIMIT 20;
There's only been one game that's been removed from Nintendo Classics so far. There likely will be more in the future:
| Platform | Game | Added Date | Removed Date |
|---|---|---|---|
| SNES | Super Soccer | 2019-09-05 | 2025-03-25 |
View SQL query:
SELECT platform, name, added_date, removed_date
FROM games WHERE removed_date IS NOT NULL;
This site uses the MIT licensed ChartJS for the line chart visualization.
Wow, you made it to the end!
- Share your thoughts with me on Mastodon, email, or Bluesky.
- Browse this blog’s archive of 168 entries.
- Check out this list of cool stuff I found on the internet.
- Follow this blog on RSS or the email newsletter.
- Go outside (best option)