├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── archive_org_xml └── .gitkeep ├── bin └── libretrodb_tool ├── common ├── metacritic.py └── parse_rdb.py ├── filter_list └── .gitkeep ├── game_lists ├── all │ ├── avg_critic_4_user_10 │ │ ├── Microsoft - Xbox.csv │ │ ├── Nintendo - Game Boy Advance.csv │ │ ├── Nintendo - GameCube.csv │ │ ├── Nintendo - Nintendo 3DS.csv │ │ ├── Nintendo - Nintendo 64.csv │ │ ├── Nintendo - Nintendo DS.csv │ │ ├── Nintendo - Wii.csv │ │ ├── Sega - Dreamcast.csv │ │ ├── Sony - PlayStation 2.csv │ │ ├── Sony - PlayStation 3.csv │ │ ├── Sony - PlayStation Portable.csv │ │ ├── Sony - PlayStation Vita.csv │ │ └── Sony - PlayStation.csv │ ├── best_critic_4 │ │ ├── Microsoft - Xbox.csv │ │ ├── Nintendo - Game Boy Advance.csv │ │ ├── Nintendo - GameCube.csv │ │ ├── Nintendo - Nintendo 3DS.csv │ │ ├── Nintendo - Nintendo 64.csv │ │ ├── Nintendo - Nintendo DS.csv │ │ ├── Nintendo - Wii.csv │ │ ├── Sega - Dreamcast.csv │ │ ├── Sony - PlayStation 2.csv │ │ ├── Sony - PlayStation 3.csv │ │ ├── Sony - PlayStation Portable.csv │ │ ├── Sony - PlayStation Vita.csv │ │ └── Sony - PlayStation.csv │ └── best_critic_4_user_10 │ │ ├── Microsoft - Xbox.csv │ │ ├── Nintendo - Game Boy Advance.csv │ │ ├── Nintendo - GameCube.csv │ │ ├── Nintendo - Nintendo 3DS.csv │ │ ├── Nintendo - Nintendo 64.csv │ │ ├── Nintendo - Nintendo DS.csv │ │ ├── Nintendo - Wii.csv │ │ ├── Sega - Dreamcast.csv │ │ ├── Sony - PlayStation 2.csv │ │ ├── Sony - PlayStation 3.csv │ │ ├── Sony - PlayStation Portable.csv │ │ ├── Sony - PlayStation Vita.csv │ │ └── Sony - PlayStation.csv └── platform_exclusives │ ├── avg_critic_4_user_10 │ ├── Microsoft - Xbox.csv │ ├── Nintendo - Game Boy Advance.csv │ ├── Nintendo - GameCube.csv │ ├── Nintendo - Nintendo 3DS.csv │ ├── Nintendo - Nintendo 64.csv │ ├── Nintendo - Nintendo DS.csv │ ├── Nintendo - Wii.csv │ ├── Sega - Dreamcast.csv │ ├── Sony - PlayStation 2.csv │ ├── Sony - PlayStation 3.csv │ ├── Sony - PlayStation Portable.csv │ ├── Sony - PlayStation Vita.csv │ └── Sony - PlayStation.csv │ ├── best_critic_4 │ ├── Microsoft - Xbox.csv │ ├── Nintendo - Game Boy Advance.csv │ ├── Nintendo - GameCube.csv │ ├── Nintendo - Nintendo 3DS.csv │ ├── Nintendo - Nintendo 64.csv │ ├── Nintendo - Nintendo DS.csv │ ├── Nintendo - Wii.csv │ ├── Sega - Dreamcast.csv │ ├── Sony - PlayStation 2.csv │ ├── Sony - PlayStation 3.csv │ ├── Sony - PlayStation Portable.csv │ ├── Sony - PlayStation Vita.csv │ └── Sony - PlayStation.csv │ └── best_critic_4_user_10 │ ├── Microsoft - Xbox.csv │ ├── Nintendo - Game Boy Advance.csv │ ├── Nintendo - GameCube.csv │ ├── Nintendo - Nintendo 3DS.csv │ ├── Nintendo - Nintendo 64.csv │ ├── Nintendo - Nintendo DS.csv │ ├── Nintendo - Wii.csv │ ├── Sega - Dreamcast.csv │ ├── Sony - PlayStation 2.csv │ ├── Sony - PlayStation 3.csv │ ├── Sony - PlayStation Portable.csv │ ├── Sony - PlayStation Vita.csv │ └── Sony - PlayStation.csv ├── metacritic_games.db ├── poetry.lock ├── pyproject.toml ├── redump_datfiles └── .gitkeep ├── rom_metacritic_match ├── __main__.py ├── generate_top_lists.py ├── metacritic_db.py ├── overrides.py ├── rom_match_platform.py └── rom_metacritic_match.py └── top_games_size ├── __main__.py ├── game_size.py ├── get_top_sizes.py ├── igdb.py ├── parse_archive_org_xml.py ├── parse_redump_dat.py └── platform.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | /site 140 | 141 | # mypy 142 | .mypy_cache/ 143 | .dmypy.json 144 | dmypy.json 145 | 146 | # Pyre type checker 147 | .pyre/ 148 | 149 | # pytype static type analyzer 150 | .pytype/ 151 | 152 | # Cython debug symbols 153 | cython_debug/ 154 | 155 | # PyCharm 156 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 157 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 158 | # and can be added to the global gitignore or merged into this file. For a more nuclear 159 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 160 | #.idea/ 161 | 162 | redump_datfiles/*.dat 163 | archive_org_xml/*.xml 164 | filter_list/*.txt 165 | rdb/*.rdb 166 | output 167 | metacritic_cache 168 | out.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | 8 | { 9 | "name": "top_games_size", 10 | "type": "debugpy", 11 | "request": "launch", 12 | "module": "top_games_size", 13 | "justMyCode": true 14 | }, 15 | { 16 | "name": "rom_metacritic_match", 17 | "type": "debugpy", 18 | "request": "launch", 19 | "module": "rom_metacritic_match", 20 | "justMyCode": true 21 | }, 22 | { 23 | "name": "Python Debugger: Current File", 24 | "type": "debugpy", 25 | "request": "launch", 26 | "program": "${file}", 27 | "console": "integratedTerminal" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "[python]": { 3 | "editor.formatOnSave": true, 4 | "editor.defaultFormatter": "charliermarsh.ruff", 5 | "editor.codeActionsOnSave": { 6 | "source.organizeImports": "explicit" 7 | }, 8 | } 9 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Top Games Size 2 | 3 | ## Results 4 | 5 | - [Best games with 4 critic reviews or 10 user reviews, sorted by **highest of either** score](game_lists/all/best_critic_4_user_10) 6 | - [Platform exclusives only](game_lists/platform_exclusives/best_critic_4_user_10) 7 | - [Best games with 4 critic reviews or 10 user reviews, sorted by **average of both** scores](game_lists/all/avg_critic_4_user_10) 8 | - [Platform exclusives only](game_lists/platform_exclusives/avg_critic_4_user_10) 9 | - [Best games with 4 critic reviews, sorted by critic score](game_lists/all/best_critic_4) 10 | - [Platform exclusives only](game_lists/platform_exclusives/best_critic_4) 11 | 12 | ### Details 13 | 14 | Platform exclusives are listed so games on the less desirable platforms are only on a need-to-have basis. (e.g. Xbox with bad compression) 15 | 16 | The ROM/ISO dump associated with each file is an approximated match by title. Some games will be wrong due to regional/platform title differences. 17 | 18 | The size is the uncompressed size. Multi-disc games show the final disc, and are all summed to be the size for the game. 19 | 20 | A running total column is listed to assist with estimating storage size for the top-n games. 21 | 22 | ### Platforms 23 | 24 | The platform must be in both [RetroArch's RDBs](https://github.com/libretro/libretro-database/tree/master/rdb), and in [Metacritic's database](https://www.metacritic.com/browse/game/) to be listed. 25 | 26 | - Microsoft - Xbox 27 | - Nintendo - Game Boy Advance 28 | - Nintendo - GameCube 29 | - Nintendo - Nintendo 3DS 30 | - Nintendo - Nintendo 64 (+ N64 DD) 31 | - Nintendo - Nintendo DS (+ DSi) 32 | - Nintendo - Wii 33 | - Sega - Dreamcast 34 | - Sony - PlayStation 35 | - Sony - PlayStation 2 36 | - Sony - PlayStation 3 37 | - Sony - PlayStation Portable 38 | - Sony - PlayStation Vita 39 | -------------------------------------------------------------------------------- /archive_org_xml/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claabs/top-games-size/3126b8e4c8a9da773e768cfdbc5c6b5b108f7749/archive_org_xml/.gitkeep -------------------------------------------------------------------------------- /bin/libretrodb_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claabs/top-games-size/3126b8e4c8a9da773e768cfdbc5c6b5b108f7749/bin/libretrodb_tool -------------------------------------------------------------------------------- /common/metacritic.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import re 3 | from dataclasses import dataclass 4 | from typing import List 5 | 6 | import requests 7 | from joblib import Memory 8 | 9 | from top_games_size.platform import Platform 10 | 11 | memory = Memory("metacritic_cache") 12 | 13 | max_attempts = 3 14 | default_timeout = 15 15 | 16 | 17 | @memory.cache(ignore=["attempt"]) 18 | def cached_get(url, params, attempt=1): 19 | try: 20 | response = requests.get( 21 | url, 22 | params=params, 23 | timeout=default_timeout, 24 | ) 25 | return response 26 | except Exception as e: 27 | if attempt > max_attempts: 28 | raise e 29 | return cached_get(url, params, attempt=attempt + 1) 30 | 31 | 32 | def get_top_rated_games_metacritic(platform, **kwargs): 33 | limit = platform.limit 34 | use_critic_ratings = kwargs.get("use_critic_ratings") 35 | min_rating = kwargs.get("min_rating") 36 | 37 | offset = 0 38 | all_games = [] 39 | 40 | while len(all_games) < limit: 41 | params = { 42 | "sortBy": "-metaScore" if use_critic_ratings else "-userScore", 43 | "productType": "games", 44 | "gamePlatformIds": platform.metacritic_id, 45 | "releaseYearMin": 1958, 46 | "releaseYearMax": datetime.date.today().year, 47 | "limit": min( 48 | 50, limit - len(all_games) 49 | ), # Fetching up to 50 records or remaining to reach limit 50 | "apiKey": "1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u", 51 | "offset": offset, 52 | } 53 | 54 | # Send GET request to the API endpoint 55 | response = cached_get( 56 | "https://internal-prod.apigee.fandom.net/v1/xapi/finder/metacritic/web", 57 | params=params, 58 | ) 59 | 60 | # Check if request was successful 61 | if response.status_code == 200: 62 | # Parse response JSON 63 | data = response.json() 64 | games = data.get("data", {}).get("items", []) 65 | all_games.extend(games) 66 | 67 | # Increment offset for next batch 68 | offset += len(games) 69 | 70 | # Break the loop if no more games available or limit reached 71 | if len(games) < 50 or len(all_games) >= limit: 72 | break 73 | else: 74 | # Handle unsuccessful response 75 | print(f"Request failed with status code {response.status_code}") 76 | break 77 | 78 | valid_games = list( 79 | filter( 80 | lambda x: x.get("criticScoreSummary").get("score") > min_rating, 81 | all_games[:limit], 82 | ) 83 | ) 84 | valid_game_titles = list(map(lambda x: x.get("title"), valid_games)) 85 | 86 | return valid_game_titles # Truncate to the specified limit 87 | 88 | 89 | def get_all_game_slugs_metacritic(platforms: List[Platform]): 90 | offset = 0 91 | all_games = [] 92 | request_limit = 50 93 | 94 | platform_ids = ",".join(list(map(lambda x: str(x.metacritic_id), platforms))) 95 | 96 | while True: 97 | params = { 98 | "sortBy": "-releaseDate", 99 | "productType": "games", 100 | "gamePlatformIds": platform_ids, 101 | "releaseYearMin": 1958, 102 | "releaseYearMax": datetime.date.today().year, 103 | "limit": request_limit, 104 | "apiKey": "1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u", 105 | "offset": offset, 106 | } 107 | 108 | print(f"getting offset {offset}") 109 | # Send GET request to the API endpoint 110 | response = cached_get( 111 | "https://internal-prod.apigee.fandom.net/v1/xapi/finder/metacritic/web", 112 | params=params, 113 | ) 114 | response.raise_for_status() 115 | data = response.json() 116 | 117 | games = data.get("data", {}).get("items", []) 118 | game_slugs = list(map(lambda x: x.get("slug"), games)) 119 | all_games.extend(game_slugs) 120 | 121 | offset += len(games) 122 | 123 | # Break the loop if no more games available or limit reached 124 | if len(games) < request_limit: 125 | break 126 | return all_games 127 | 128 | 129 | @dataclass 130 | class Score: 131 | score: float 132 | review_count: int 133 | 134 | 135 | def get_game_score(game_slug, platform_slug=None, use_critic_ratings=False) -> Score: 136 | # https://internal-prod.apigee.fandom.net/v1/xapi/reviews/metacritic/user/games/ys-viii-lacrimosa-of-dana/platform/playstation-vita/stats/web?apiKey=1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u 137 | params = { 138 | "apiKey": "1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u", 139 | } 140 | 141 | review_author = "critic" if use_critic_ratings else "user" 142 | platform = f"/platform/{platform_slug}" if platform_slug else "" 143 | response = cached_get( 144 | f"https://internal-prod.apigee.fandom.net/v1/xapi/reviews/metacritic/{review_author}/games/{game_slug}{platform}/stats/web", 145 | params=params, 146 | ) 147 | try: 148 | response.raise_for_status() 149 | except Exception: 150 | response = cached_get.call( 151 | f"https://internal-prod.apigee.fandom.net/v1/xapi/reviews/metacritic/{review_author}/games/{game_slug}{platform}/stats/web", 152 | params=params, 153 | ) 154 | response.raise_for_status() 155 | 156 | data = response.json() 157 | item = data.get("data", {}).get("item", {}) 158 | score = item.get("score", None) 159 | review_count = item.get("reviewCount", 0) 160 | 161 | if review_count is None: 162 | review_count = 0 163 | 164 | if review_count < 4: 165 | score = None 166 | 167 | if score and use_critic_ratings: 168 | score = score / 10 169 | 170 | return Score(score, review_count) 171 | 172 | 173 | def get_platform_slug(platform) -> str | None: 174 | url = platform.get("criticScoreSummary", {}).get("url", "") 175 | match = re.search(r"\?platform=(.+)", url) 176 | if match: 177 | return match.group(1) 178 | else: 179 | return None 180 | 181 | 182 | @dataclass 183 | class ScorePair: 184 | user_score: Score 185 | critic_score: Score 186 | 187 | 188 | @dataclass 189 | class PlatformScorePair(ScorePair): 190 | platform_slug: str 191 | 192 | 193 | @dataclass 194 | class GameRatings: 195 | title: str 196 | game_slug: str 197 | overall_score: ScorePair 198 | platform_scores: List[PlatformScorePair] 199 | developer: str | None 200 | publisher: str | None 201 | 202 | 203 | def get_all_game_ratings(game_slug) -> GameRatings: 204 | # Get platform slugs 205 | # https://internal-prod.apigee.fandom.net/v1/xapi/composer/metacritic/pages/games/ys-viii-lacrimosa-of-dana/web?=&apiKey=1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u 206 | params = { 207 | "apiKey": "1MOZgmNFxvmljaQR1X9KAij9Mo4xAY3u", 208 | } 209 | response = cached_get( 210 | f"https://internal-prod.apigee.fandom.net/v1/xapi/composer/metacritic/pages/games/{game_slug}/web", 211 | params=params, 212 | ) 213 | try: 214 | response.raise_for_status() 215 | except Exception: 216 | response = cached_get.call( 217 | f"https://internal-prod.apigee.fandom.net/v1/xapi/composer/metacritic/pages/games/{game_slug}/web", 218 | params=params, 219 | ) 220 | response.raise_for_status() 221 | 222 | data = response.json() 223 | product = next( 224 | filter( 225 | lambda x: x.get("meta", {}).get("componentName", None) == "product", 226 | data.get("components", []), 227 | ), 228 | None, 229 | ) 230 | if not product: 231 | raise KeyError(f"Could not find product for {game_slug}") 232 | 233 | product_item = product.get("data", {}).get("item", {}) 234 | platforms = product_item.get("platforms", []) 235 | platform_slugs = list(map(get_platform_slug, platforms)) 236 | title = product_item.get("title") 237 | 238 | companies = product_item.get("production", {}).get("companies", []) 239 | developer = next( 240 | filter( 241 | lambda x: x.get("typeName") == "Developer", 242 | companies, 243 | ), 244 | None, 245 | ) 246 | developer = developer.get("name", None) if developer else None 247 | publisher = next( 248 | filter( 249 | lambda x: x.get("typeName") == "Publisher", 250 | companies, 251 | ), 252 | None, 253 | ) 254 | publisher = publisher.get("name", None) if publisher else None 255 | 256 | platform_scores: List[PlatformScorePair] = [] 257 | for platform_slug in platform_slugs: 258 | user_score = get_game_score(game_slug, platform_slug, use_critic_ratings=False) 259 | critic_score = get_game_score(game_slug, platform_slug, use_critic_ratings=True) 260 | platform_scores.append( 261 | PlatformScorePair(user_score, critic_score, platform_slug) 262 | ) 263 | overall_user_score = get_game_score(game_slug, use_critic_ratings=False) 264 | overall_critic_score = get_game_score(game_slug, use_critic_ratings=True) 265 | overall_score = ScorePair(overall_user_score, overall_critic_score) 266 | return GameRatings( 267 | title, game_slug, overall_score, platform_scores, developer, publisher 268 | ) 269 | -------------------------------------------------------------------------------- /common/parse_rdb.py: -------------------------------------------------------------------------------- 1 | import contextlib 2 | import json 3 | import os 4 | import re 5 | import subprocess 6 | from dataclasses import dataclass 7 | from typing import List 8 | 9 | from rom_metacritic_match.rom_match_platform import RomMatchPlatform 10 | 11 | rdb_dir = "rdb" 12 | 13 | 14 | @dataclass 15 | class RdbEntry: 16 | rom_name: str 17 | size: int 18 | region: str 19 | developer: str | None 20 | publisher: str | None 21 | clean_name: str 22 | 23 | 24 | def read_rdb(filename) -> List[RdbEntry]: 25 | process = subprocess.run( 26 | ["./bin/libretrodb_tool", filename, "list"], capture_output=True 27 | ) 28 | values: List[RdbEntry] = [] 29 | for line in process.stdout.decode().split("\n"): 30 | line = line.replace("\\", "\\\\") 31 | with contextlib.suppress(json.decoder.JSONDecodeError): 32 | game = json.loads(line) 33 | 34 | # Some games do not have a name, we just discard them 35 | if "name" not in game or not game["name"]: 36 | continue 37 | # Discard any games with no size (no dump) 38 | if "size" not in game or not game["size"]: 39 | continue 40 | 41 | clean_name: str = game.get("rom_name") 42 | # Remove parenthesis groups 43 | clean_name = re.sub(r"\([^()]*\)", "", clean_name) 44 | # Remove file extension 45 | clean_name = re.sub(r"\.[^.]+$", "", clean_name) 46 | clean_name = clean_name.strip() 47 | 48 | values.append( 49 | RdbEntry( 50 | game.get("rom_name"), 51 | game.get("size"), 52 | game.get("region"), 53 | game.get("developer", None), 54 | game.get("publisher", None), 55 | clean_name, 56 | ) 57 | ) 58 | 59 | print(f"{len(values)} entries") 60 | return values 61 | 62 | 63 | def get_rdb_filename(rdb_name: str): 64 | files = os.listdir(rdb_dir) 65 | 66 | # Find the file that starts with the platform string 67 | matching_files = [file for file in files if file == f"{rdb_name}.rdb"] 68 | return os.path.join(rdb_dir, matching_files[0]) if matching_files else None 69 | 70 | 71 | def parse_rdb(platform: RomMatchPlatform) -> List[RdbEntry]: 72 | filenames = list(map(lambda x: get_rdb_filename(x), platform.rdb_names)) 73 | rdb_entries: List[RdbEntry] = [] 74 | for filename in filenames: 75 | rdb_entries.extend(read_rdb(filename)) 76 | 77 | return rdb_entries 78 | -------------------------------------------------------------------------------- /filter_list/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claabs/top-games-size/3126b8e4c8a9da773e768cfdbc5c6b5b108f7749/filter_list/.gitkeep -------------------------------------------------------------------------------- /game_lists/all/avg_critic_4_user_10/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | Buck Bumble,9.3,Argonaut Games,Ubisoft,Buck Bumble (USA).z64,12.0 MiB,44.0 MiB 4 | The Legend of Zelda: Majora's Mask,9.3,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,76.0 MiB 5 | GoldenEye 007,9.2,Rare Ltd.,Nintendo,"GoldenEye 007 (USA, Europe) (Switch Online).v64",12.0 MiB,88.0 MiB 6 | Super Mario 64,9.2,Nintendo,Nintendo,Super Mario 64 (Japan) (Rev 3) (Shindou Edition).z64,8.0 MiB,96.0 MiB 7 | Paper Mario,9.2,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,136.0 MiB 8 | Banjo-Kazooie,9.1,Rare Ltd.,Nintendo,Banjo-Kazooie (USA) (Rev 1).z64,16.0 MiB,152.0 MiB 9 | Perfect Dark (2000),9.1,4J Studios,Microsoft Game Studios,Perfect Dark (USA) (Rev 1).z64,32.0 MiB,184.0 MiB 10 | Conker's Bad Fur Day,9.0,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,248.0 MiB 11 | Resident Evil 2 (1998),8.9,TOSE,Capcom,Resident Evil 2 (USA) (Rev 1).z64,64.0 MiB,312.0 MiB 12 | Banjo-Tooie,8.9,4J Studios,Microsoft Game Studios,Banjo-Tooie (USA).z64,32.0 MiB,344.0 MiB 13 | Madden NFL 2001,8.9,EA Sports,EA Sports,Madden NFL 2001 (USA).z64,12.0 MiB,356.0 MiB 14 | Mario Tennis,8.8,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,372.0 MiB 15 | Rayman 2: The Great Escape,8.8,Ubisoft Casablanca,Ubisoft,"Rayman 2 - The Great Escape (USA) (En,Fr,De,Es,It).z64",32.0 MiB,404.0 MiB 16 | Wave Race 64,8.8,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,416.0 MiB 17 | Donkey Kong 64,8.8,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,448.0 MiB 18 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,460.0 MiB 19 | Diddy Kong Racing,8.6,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,472.0 MiB 20 | Excitebike 64,8.6,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,488.0 MiB 21 | Blast Corps,8.6,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,496.0 MiB 22 | F-Zero X,8.6,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,512.0 MiB 23 | Mario Party 2,8.6,Hudson,Nintendo,Mario Party 2 (USA).z64,32.0 MiB,544.0 MiB 24 | WWF No Mercy,8.5,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,576.0 MiB 25 | Star Wars: Rogue Squadron 3D,8.4,Factor 5,LucasArts,Star Wars - Rogue Squadron (USA) (Rev 1).z64,16.0 MiB,592.0 MiB 26 | Mario Kart 64,8.4,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,604.0 MiB 27 | Turok 2: Seeds of Evil,8.4,Iguana Entertainment,Acclaim,Turok 2 - Seeds of Evil (USA) (Rev 1).z64,32.0 MiB,636.0 MiB 28 | Tony Hawk's Pro Skater 2,8.4,Neversoft Entertainment,Activision,Tony Hawk's Pro Skater 2 (USA).z64,16.0 MiB,652.0 MiB 29 | Jet Force Gemini,8.3,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,684.0 MiB 30 | Mario Golf,8.3,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,716.0 MiB 31 | Turok: Dinosaur Hunter,8.3,Iguana Entertainment,Acclaim,Turok - Dinosaur Hunter (USA) (Rev 2).z64,8.0 MiB,724.0 MiB 32 | Beetle Adventure Racing,8.3,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,740.0 MiB 33 | International Superstar Soccer '98,8.3,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,752.0 MiB 34 | Super Smash Bros.,8.2,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,768.0 MiB 35 | Star Wars: Episode I Battle for Naboo,8.2,Factor 5,LucasArts,Star Wars Episode I - Battle for Naboo (USA).z64,32.0 MiB,800.0 MiB 36 | Ridge Racer 64,8.1,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,832.0 MiB 37 | Extreme-G,8.1,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,840.0 MiB 38 | Ogre Battle 64: Person of Lordly Caliber,8.1,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,880.0 MiB 39 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,912.0 MiB 40 | Wetrix,8.1,Zed Two Limited,Ocean,"Wetrix (USA) (En,Fr,De,Es,It,Nl).z64",8.0 MiB,920.0 MiB 41 | Harvest Moon 64,8.1,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,936.0 MiB 42 | 007: The World is not Enough,8.0,Eurocom,Electronic Arts,007 - The World Is Not Enough (USA).z64,32.0 MiB,968.0 MiB 43 | Pokemon Stadium 2,8.0,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,1.0 GiB 44 | World Driver Championship,8.0,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,1.0 GiB 45 | Mario Party,8.0,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,1.1 GiB 46 | NFL Blitz 2000,8.0,Midway,Midway,NFL Blitz 2000 (USA) (Rev 1).z64,16.0 MiB,1.1 GiB 47 | Space Station Silicon Valley,8.0,DMA Design,Take-Two Interactive,SpaceStation Silicon Valley (USA) (Rev 1).v64,8.0 MiB,1.1 GiB 48 | Kirby 64: The Crystal Shards,7.9,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,1.1 GiB 49 | Indiana Jones and the Infernal Machine,7.9,Factor 5,LucasArts,Indiana Jones and the Infernal Machine (USA).z64,32.0 MiB,1.1 GiB 50 | Wipeout 64,7.8,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,1.1 GiB 51 | Madden NFL 2002,7.8,EA Sports,EA Sports,Madden NFL 2002 (USA).z64,12.0 MiB,1.2 GiB 52 | Mario Party 3,7.8,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,1.2 GiB 53 | Pilotwings 64,7.8,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,1.2 GiB 54 | Army Men: Air Attack,7.7,3DO,3DO,Army Men - Air Combat (USA).z64,8.0 MiB,1.2 GiB 55 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,1.2 GiB 56 | Body Harvest,7.7,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,1.2 GiB 57 | Castlevania (1998),7.5,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,1.2 GiB 58 | Mystical Ninja starring Goemon,7.5,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,1.3 GiB 59 | Turok 3: Shadow of Oblivion (2000),7.5,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,1.3 GiB 60 | Duke Nukem 3D,7.4,3D Realms,3D Realms,Duke Nukem 64 (USA).z64,8.0 MiB,1.3 GiB 61 | San Francisco Rush 2049,7.4,Midway,Midway,San Francisco Rush 2049 (USA).z64,12.0 MiB,1.3 GiB 62 | Spider-Man (2000),7.4,Neversoft Entertainment,Activision,Spider-Man (USA).z64,32.0 MiB,1.3 GiB 63 | StarCraft 64,7.4,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,1.4 GiB 64 | Mickey's Speedway USA,7.3,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,1.4 GiB 65 | Ms. Pac-Man Maze Madness,7.3,Mass Media,Namco,Ms. Pac-Man - Maze Madness (USA).z64,12.0 MiB,1.4 GiB 66 | Forsaken (1998),7.2,Iguana Entertainment,Acclaim,Forsaken (Germany).z64,8.0 MiB,1.4 GiB 67 | NFL Blitz 2001,7.2,Avalanche Software,Midway,NFL Blitz 2001 (USA).z64,16.0 MiB,1.4 GiB 68 | Robotron X,7.2,Player 1,Crave,Robotron 64 (USA).v64,8.0 MiB,1.4 GiB 69 | Quake,7.1,id Software,id Software,Quake (USA).z64,12.0 MiB,1.5 GiB 70 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,1.5 GiB 71 | Dr. Mario 64,6.9,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,1.5 GiB 72 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,1.5 GiB 73 | Yoshi's Story,6.8,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,1.5 GiB 74 | Disney/Pixar Toy Story 2: Buzz Lightyear to the Rescue!,6.6,Traveller's Tales,Activision,Toy Story 2 - Buzz Lightyear to the Rescue! (USA) (Rev 1).z64,12.0 MiB,1.5 GiB 75 | Mega Man Legends,6.6,Capcom,Capcom,Mega Man 64 (USA).z64,32.0 MiB,1.6 GiB 76 | Disney's Donald Duck: Goin' Quackers,6.5,Disney Interactive Studios,Ubisoft,"Donald Duck - Goin' Quackers (USA) (En,Fr,De,Es,It).v64",32.0 MiB,1.6 GiB 77 | Hercules: The Legendary Journeys,6.4,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,1.6 GiB 78 | Ready 2 Rumble Boxing: Round 2,6.4,Midway,Midway,Ready 2 Rumble Boxing - Round 2 (USA).z64,32.0 MiB,1.6 GiB 79 | Rugrats in Paris: The Movie,6.4,Avalanche Software,THQ,Rugrats in Paris - The Movie (USA).z64,16.0 MiB,1.6 GiB 80 | Mission: Impossible (1998),6.3,Infogrames,Ocean,Mission - Impossible (USA).z64,12.0 MiB,1.7 GiB 81 | Aidyn Chronicles: The First Mage,6.2,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.7 GiB 82 | Midway's Greatest Arcade Hits Volume 1,5.9,Digital Eclipse,Midway,Midway's Greatest Arcade Hits - Volume 1 (USA).z64,4.0 MiB,1.7 GiB 83 | PGA European Tour,5.8,Infogrames Sheffield,Infogrames,PGA European Tour (USA).z64,16.0 MiB,1.7 GiB 84 | John Romero's Daikatana,5.7,Kemco,Kemco,John Romero's Daikatana (USA).z64,16.0 MiB,1.7 GiB 85 | NFL QB Club 2001,5.7,High Voltage Software,Acclaim,NFL QB Club 2001 (USA).z64,12.0 MiB,1.7 GiB 86 | "Hey You, Pikachu!",5.6,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,1.8 GiB 87 | Army Men: Sarge's Heroes 2,5.5,3DO,3DO,Army Men - Sarge's Heroes 2 (USA).z64,8.0 MiB,1.8 GiB 88 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1.8 GiB 89 | Cruis'n Exotica,5.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.8 GiB 90 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.8 GiB 91 | WCW Backstage Assault,4.8,Kodiak Interactive,Electronic Arts,WCW Backstage Assault (USA).z64,32.0 MiB,1.8 GiB 92 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.9 GiB 93 | Blues Brothers 2000,3.5,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.9 GiB 94 | Batman Beyond: Return of the Joker,2.9,Kemco,Ubisoft,Batman Beyond - Return of the Joker (USA).z64,4.0 MiB,1.9 GiB 95 | Saban's Power Rangers: Lightspeed Rescue,2.5,Mass Media,THQ,Power Rangers - Lightspeed Rescue (USA).z64,12.0 MiB,1.9 GiB 96 | -------------------------------------------------------------------------------- /game_lists/all/best_critic_4/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.9,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | Perfect Dark (2000),9.7,4J Studios,Microsoft Game Studios,Perfect Dark (USA) (Rev 1).z64,32.0 MiB,64.0 MiB 4 | GoldenEye 007,9.6,Rare Ltd.,Nintendo,"GoldenEye 007 (USA, Europe) (Switch Online).v64",12.0 MiB,76.0 MiB 5 | The Legend of Zelda: Majora's Mask,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,108.0 MiB 6 | Super Mario 64,9.4,Nintendo,Nintendo,Super Mario 64 (Japan) (Rev 3) (Shindou Edition).z64,8.0 MiB,116.0 MiB 7 | Paper Mario,9.3,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,156.0 MiB 8 | Banjo-Kazooie,9.2,Rare Ltd.,Nintendo,Banjo-Kazooie (USA) (Rev 1).z64,16.0 MiB,172.0 MiB 9 | Conker's Bad Fur Day,9.2,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,236.0 MiB 10 | Wave Race 64,9.2,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,248.0 MiB 11 | International Superstar Soccer '98,9.1,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,260.0 MiB 12 | Mario Golf,9.1,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,292.0 MiB 13 | Mario Tennis,9.1,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,308.0 MiB 14 | Banjo-Tooie,9.0,4J Studios,Microsoft Game Studios,Banjo-Tooie (USA).z64,32.0 MiB,340.0 MiB 15 | Beetle Adventure Racing,9.0,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,356.0 MiB 16 | Blast Corps,9.0,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,364.0 MiB 17 | Donkey Kong 64,9.0,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,396.0 MiB 18 | Rayman 2: The Great Escape,9.0,Ubisoft Casablanca,Ubisoft,"Rayman 2 - The Great Escape (USA) (En,Fr,De,Es,It).z64",32.0 MiB,428.0 MiB 19 | Madden NFL 2001,8.9,EA Sports,EA Sports,Madden NFL 2001 (USA).z64,12.0 MiB,440.0 MiB 20 | Resident Evil 2 (1998),8.9,TOSE,Capcom,Resident Evil 2 (USA) (Rev 1).z64,64.0 MiB,504.0 MiB 21 | WWF No Mercy,8.9,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,536.0 MiB 22 | Diddy Kong Racing,8.8,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,548.0 MiB 23 | Excitebike 64,8.8,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,564.0 MiB 24 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,576.0 MiB 25 | San Francisco Rush 2049,8.6,Midway,Midway,San Francisco Rush 2049 (USA).z64,12.0 MiB,588.0 MiB 26 | Turok 2: Seeds of Evil,8.6,Iguana Entertainment,Acclaim,Turok 2 - Seeds of Evil (USA) (Rev 1).z64,32.0 MiB,620.0 MiB 27 | F-Zero X,8.5,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,636.0 MiB 28 | NFL Blitz 2000,8.5,Midway,Midway,NFL Blitz 2000 (USA) (Rev 1).z64,16.0 MiB,652.0 MiB 29 | Star Wars: Rogue Squadron 3D,8.5,Factor 5,LucasArts,Star Wars - Rogue Squadron (USA) (Rev 1).z64,16.0 MiB,668.0 MiB 30 | Turok: Dinosaur Hunter,8.5,Iguana Entertainment,Acclaim,Turok - Dinosaur Hunter (USA) (Rev 2).z64,8.0 MiB,676.0 MiB 31 | Star Wars: Episode I Battle for Naboo,8.4,Factor 5,LucasArts,Star Wars Episode I - Battle for Naboo (USA).z64,32.0 MiB,708.0 MiB 32 | Tony Hawk's Pro Skater 2,8.4,Neversoft Entertainment,Activision,Tony Hawk's Pro Skater 2 (USA).z64,16.0 MiB,724.0 MiB 33 | Wipeout 64,8.4,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,732.0 MiB 34 | Mario Kart 64,8.3,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,744.0 MiB 35 | Space Station Silicon Valley,8.3,DMA Design,Take-Two Interactive,SpaceStation Silicon Valley (USA) (Rev 1).v64,8.0 MiB,752.0 MiB 36 | Extreme-G,8.2,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,760.0 MiB 37 | Ogre Battle 64: Person of Lordly Caliber,8.2,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,800.0 MiB 38 | Ridge Racer 64,8.2,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,832.0 MiB 39 | 007: The World is not Enough,8.1,Eurocom,Electronic Arts,007 - The World Is Not Enough (USA).z64,32.0 MiB,864.0 MiB 40 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,896.0 MiB 41 | Wetrix,8.1,Zed Two Limited,Ocean,"Wetrix (USA) (En,Fr,De,Es,It,Nl).z64",8.0 MiB,904.0 MiB 42 | Jet Force Gemini,8.0,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,936.0 MiB 43 | Pilotwings 64,8.0,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,944.0 MiB 44 | StarCraft 64,8.0,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,976.0 MiB 45 | Mario Party,7.9,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,1008.0 MiB 46 | Super Smash Bros.,7.9,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,1.0 GiB 47 | Castlevania (1998),7.8,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,1.0 GiB 48 | Harvest Moon 64,7.8,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,1.0 GiB 49 | Madden NFL 2002,7.8,EA Sports,EA Sports,Madden NFL 2002 (USA).z64,12.0 MiB,1.0 GiB 50 | Pokemon Stadium 2,7.8,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,1.1 GiB 51 | Army Men: Air Attack,7.7,3DO,3DO,Army Men - Air Combat (USA).z64,8.0 MiB,1.1 GiB 52 | Kirby 64: The Crystal Shards,7.7,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,1.1 GiB 53 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,1.2 GiB 54 | Turok 3: Shadow of Oblivion (2000),7.7,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,1.2 GiB 55 | Forsaken (1998),7.5,Iguana Entertainment,Acclaim,Forsaken (Germany).z64,8.0 MiB,1.2 GiB 56 | Indiana Jones and the Infernal Machine,7.5,Factor 5,LucasArts,Indiana Jones and the Infernal Machine (USA).z64,32.0 MiB,1.2 GiB 57 | World Driver Championship,7.5,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,1.2 GiB 58 | Mario Party 3,7.4,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,1.3 GiB 59 | Quake,7.4,id Software,id Software,Quake (USA).z64,12.0 MiB,1.3 GiB 60 | Body Harvest,7.3,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,1.3 GiB 61 | Duke Nukem 3D,7.3,3D Realms,3D Realms,Duke Nukem 64 (USA).z64,8.0 MiB,1.3 GiB 62 | Ms. Pac-Man Maze Madness,7.3,Mass Media,Namco,Ms. Pac-Man - Maze Madness (USA).z64,12.0 MiB,1.3 GiB 63 | NFL Blitz 2001,7.2,Avalanche Software,Midway,NFL Blitz 2001 (USA).z64,16.0 MiB,1.3 GiB 64 | Robotron X,7.2,Player 1,Crave,Robotron 64 (USA).v64,8.0 MiB,1.3 GiB 65 | Spider-Man (2000),7.2,Neversoft Entertainment,Activision,Spider-Man (USA).z64,32.0 MiB,1.4 GiB 66 | Dr. Mario 64,7.1,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,1.4 GiB 67 | Mickey's Speedway USA,7.1,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,1.4 GiB 68 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,1.4 GiB 69 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,1.4 GiB 70 | Mystical Ninja starring Goemon,6.7,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,1.5 GiB 71 | Disney's Donald Duck: Goin' Quackers,6.5,Disney Interactive Studios,Ubisoft,"Donald Duck - Goin' Quackers (USA) (En,Fr,De,Es,It).v64",32.0 MiB,1.5 GiB 72 | Yoshi's Story,6.5,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,1.5 GiB 73 | Ready 2 Rumble Boxing: Round 2,6.4,Midway,Midway,Ready 2 Rumble Boxing - Round 2 (USA).z64,32.0 MiB,1.5 GiB 74 | Rugrats in Paris: The Movie,6.4,Avalanche Software,THQ,Rugrats in Paris - The Movie (USA).z64,16.0 MiB,1.5 GiB 75 | Mission: Impossible (1998),6.1,Infogrames,Ocean,Mission - Impossible (USA).z64,12.0 MiB,1.6 GiB 76 | Mega Man Legends,5.9,Capcom,Capcom,Mega Man 64 (USA).z64,32.0 MiB,1.6 GiB 77 | Midway's Greatest Arcade Hits Volume 1,5.9,Digital Eclipse,Midway,Midway's Greatest Arcade Hits - Volume 1 (USA).z64,4.0 MiB,1.6 GiB 78 | Disney/Pixar Toy Story 2: Buzz Lightyear to the Rescue!,5.8,Traveller's Tales,Activision,Toy Story 2 - Buzz Lightyear to the Rescue! (USA) (Rev 1).z64,12.0 MiB,1.6 GiB 79 | PGA European Tour,5.8,Infogrames Sheffield,Infogrames,PGA European Tour (USA).z64,16.0 MiB,1.6 GiB 80 | "Hey You, Pikachu!",5.7,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,1.6 GiB 81 | NFL QB Club 2001,5.7,High Voltage Software,Acclaim,NFL QB Club 2001 (USA).z64,12.0 MiB,1.6 GiB 82 | Hercules: The Legendary Journeys,5.5,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,1.7 GiB 83 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1.7 GiB 84 | Aidyn Chronicles: The First Mage,5.3,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.7 GiB 85 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.7 GiB 86 | WCW Backstage Assault,4.8,Kodiak Interactive,Electronic Arts,WCW Backstage Assault (USA).z64,32.0 MiB,1.8 GiB 87 | Army Men: Sarge's Heroes 2,4.6,3DO,3DO,Army Men - Sarge's Heroes 2 (USA).z64,8.0 MiB,1.8 GiB 88 | Cruis'n Exotica,4.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.8 GiB 89 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.8 GiB 90 | Blues Brothers 2000,3.2,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.8 GiB 91 | Saban's Power Rangers: Lightspeed Rescue,2.5,Mass Media,THQ,Power Rangers - Lightspeed Rescue (USA).z64,12.0 MiB,1.8 GiB 92 | Batman Beyond: Return of the Joker,2.4,Kemco,Ubisoft,Batman Beyond - Return of the Joker (USA).z64,4.0 MiB,1.8 GiB 93 | -------------------------------------------------------------------------------- /game_lists/all/best_critic_4_user_10/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.9,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | Perfect Dark (2000),9.7,4J Studios,Microsoft Game Studios,Perfect Dark (USA) (Rev 1).z64,32.0 MiB,64.0 MiB 4 | GoldenEye 007,9.6,Rare Ltd.,Nintendo,"GoldenEye 007 (USA, Europe) (Switch Online).v64",12.0 MiB,76.0 MiB 5 | The Legend of Zelda: Majora's Mask,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,108.0 MiB 6 | Super Mario 64,9.4,Nintendo,Nintendo,Super Mario 64 (Japan) (Rev 3) (Shindou Edition).z64,8.0 MiB,116.0 MiB 7 | Buck Bumble,9.3,Argonaut Games,Ubisoft,Buck Bumble (USA).z64,12.0 MiB,128.0 MiB 8 | Paper Mario,9.3,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,168.0 MiB 9 | Banjo-Kazooie,9.2,Rare Ltd.,Nintendo,Banjo-Kazooie (USA) (Rev 1).z64,16.0 MiB,184.0 MiB 10 | Conker's Bad Fur Day,9.2,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,248.0 MiB 11 | Wave Race 64,9.2,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,260.0 MiB 12 | International Superstar Soccer '98,9.1,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,272.0 MiB 13 | Mario Golf,9.1,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,304.0 MiB 14 | Mario Tennis,9.1,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,320.0 MiB 15 | Banjo-Tooie,9.0,4J Studios,Microsoft Game Studios,Banjo-Tooie (USA).z64,32.0 MiB,352.0 MiB 16 | Beetle Adventure Racing,9.0,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,368.0 MiB 17 | Blast Corps,9.0,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,376.0 MiB 18 | Donkey Kong 64,9.0,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,408.0 MiB 19 | Rayman 2: The Great Escape,9.0,Ubisoft Casablanca,Ubisoft,"Rayman 2 - The Great Escape (USA) (En,Fr,De,Es,It).z64",32.0 MiB,440.0 MiB 20 | Resident Evil 2 (1998),9.0,TOSE,Capcom,Resident Evil 2 (USA) (Rev 1).z64,64.0 MiB,504.0 MiB 21 | Madden NFL 2001,8.9,EA Sports,EA Sports,Madden NFL 2001 (USA).z64,12.0 MiB,516.0 MiB 22 | WWF No Mercy,8.9,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,548.0 MiB 23 | Diddy Kong Racing,8.8,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,560.0 MiB 24 | Excitebike 64,8.8,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,576.0 MiB 25 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,588.0 MiB 26 | F-Zero X,8.7,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,604.0 MiB 27 | Jet Force Gemini,8.7,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,636.0 MiB 28 | Mario Party 2,8.6,Hudson,Nintendo,Mario Party 2 (USA).z64,32.0 MiB,668.0 MiB 29 | San Francisco Rush 2049,8.6,Midway,Midway,San Francisco Rush 2049 (USA).z64,12.0 MiB,680.0 MiB 30 | Super Smash Bros.,8.6,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,696.0 MiB 31 | Turok 2: Seeds of Evil,8.6,Iguana Entertainment,Acclaim,Turok 2 - Seeds of Evil (USA) (Rev 1).z64,32.0 MiB,728.0 MiB 32 | Mario Kart 64,8.5,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,740.0 MiB 33 | NFL Blitz 2000,8.5,Midway,Midway,NFL Blitz 2000 (USA) (Rev 1).z64,16.0 MiB,756.0 MiB 34 | Star Wars: Rogue Squadron 3D,8.5,Factor 5,LucasArts,Star Wars - Rogue Squadron (USA) (Rev 1).z64,16.0 MiB,772.0 MiB 35 | Turok: Dinosaur Hunter,8.5,Iguana Entertainment,Acclaim,Turok - Dinosaur Hunter (USA) (Rev 2).z64,8.0 MiB,780.0 MiB 36 | World Driver Championship,8.5,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,796.0 MiB 37 | Star Wars: Episode I Battle for Naboo,8.4,Factor 5,LucasArts,Star Wars Episode I - Battle for Naboo (USA).z64,32.0 MiB,828.0 MiB 38 | Tony Hawk's Pro Skater 2,8.4,Neversoft Entertainment,Activision,Tony Hawk's Pro Skater 2 (USA).z64,16.0 MiB,844.0 MiB 39 | Wipeout 64,8.4,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,852.0 MiB 40 | Harvest Moon 64,8.3,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,868.0 MiB 41 | Indiana Jones and the Infernal Machine,8.3,Factor 5,LucasArts,Indiana Jones and the Infernal Machine (USA).z64,32.0 MiB,900.0 MiB 42 | Mystical Ninja starring Goemon,8.3,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,916.0 MiB 43 | Space Station Silicon Valley,8.3,DMA Design,Take-Two Interactive,SpaceStation Silicon Valley (USA) (Rev 1).v64,8.0 MiB,924.0 MiB 44 | Extreme-G,8.2,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,932.0 MiB 45 | Kirby 64: The Crystal Shards,8.2,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,964.0 MiB 46 | Mario Party 3,8.2,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,996.0 MiB 47 | Ogre Battle 64: Person of Lordly Caliber,8.2,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,1.0 GiB 48 | Pokemon Stadium 2,8.2,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,1.1 GiB 49 | Ridge Racer 64,8.2,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,1.1 GiB 50 | 007: The World is not Enough,8.1,Eurocom,Electronic Arts,007 - The World Is Not Enough (USA).z64,32.0 MiB,1.1 GiB 51 | Body Harvest,8.1,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,1.1 GiB 52 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,1.2 GiB 53 | Wetrix,8.1,Zed Two Limited,Ocean,"Wetrix (USA) (En,Fr,De,Es,It,Nl).z64",8.0 MiB,1.2 GiB 54 | Mario Party,8.0,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,1.2 GiB 55 | Pilotwings 64,8.0,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,1.2 GiB 56 | StarCraft 64,8.0,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,1.3 GiB 57 | Castlevania (1998),7.8,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,1.3 GiB 58 | Madden NFL 2002,7.8,EA Sports,EA Sports,Madden NFL 2002 (USA).z64,12.0 MiB,1.3 GiB 59 | Army Men: Air Attack,7.7,3DO,3DO,Army Men - Air Combat (USA).z64,8.0 MiB,1.3 GiB 60 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,1.3 GiB 61 | Turok 3: Shadow of Oblivion (2000),7.7,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,1.3 GiB 62 | Duke Nukem 3D,7.6,3D Realms,3D Realms,Duke Nukem 64 (USA).z64,8.0 MiB,1.3 GiB 63 | Spider-Man (2000),7.6,Neversoft Entertainment,Activision,Spider-Man (USA).z64,32.0 MiB,1.4 GiB 64 | Forsaken (1998),7.5,Iguana Entertainment,Acclaim,Forsaken (Germany).z64,8.0 MiB,1.4 GiB 65 | Mickey's Speedway USA,7.5,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,1.4 GiB 66 | Disney/Pixar Toy Story 2: Buzz Lightyear to the Rescue!,7.4,Traveller's Tales,Activision,Toy Story 2 - Buzz Lightyear to the Rescue! (USA) (Rev 1).z64,12.0 MiB,1.4 GiB 67 | Quake,7.4,id Software,id Software,Quake (USA).z64,12.0 MiB,1.4 GiB 68 | Hercules: The Legendary Journeys,7.3,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,1.5 GiB 69 | Ms. Pac-Man Maze Madness,7.3,Mass Media,Namco,Ms. Pac-Man - Maze Madness (USA).z64,12.0 MiB,1.5 GiB 70 | Aidyn Chronicles: The First Mage,7.2,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.5 GiB 71 | Mega Man Legends,7.2,Capcom,Capcom,Mega Man 64 (USA).z64,32.0 MiB,1.5 GiB 72 | NFL Blitz 2001,7.2,Avalanche Software,Midway,NFL Blitz 2001 (USA).z64,16.0 MiB,1.5 GiB 73 | Robotron X,7.2,Player 1,Crave,Robotron 64 (USA).v64,8.0 MiB,1.6 GiB 74 | Yoshi's Story,7.2,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,1.6 GiB 75 | Dr. Mario 64,7.1,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,1.6 GiB 76 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,1.6 GiB 77 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,1.6 GiB 78 | Mission: Impossible (1998),6.6,Infogrames,Ocean,Mission - Impossible (USA).z64,12.0 MiB,1.6 GiB 79 | Army Men: Sarge's Heroes 2,6.5,3DO,3DO,Army Men - Sarge's Heroes 2 (USA).z64,8.0 MiB,1.6 GiB 80 | Disney's Donald Duck: Goin' Quackers,6.5,Disney Interactive Studios,Ubisoft,"Donald Duck - Goin' Quackers (USA) (En,Fr,De,Es,It).v64",32.0 MiB,1.7 GiB 81 | Ready 2 Rumble Boxing: Round 2,6.4,Midway,Midway,Ready 2 Rumble Boxing - Round 2 (USA).z64,32.0 MiB,1.7 GiB 82 | Rugrats in Paris: The Movie,6.4,Avalanche Software,THQ,Rugrats in Paris - The Movie (USA).z64,16.0 MiB,1.7 GiB 83 | Cruis'n Exotica,6.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.7 GiB 84 | Midway's Greatest Arcade Hits Volume 1,5.9,Digital Eclipse,Midway,Midway's Greatest Arcade Hits - Volume 1 (USA).z64,4.0 MiB,1.7 GiB 85 | PGA European Tour,5.8,Infogrames Sheffield,Infogrames,PGA European Tour (USA).z64,16.0 MiB,1.7 GiB 86 | "Hey You, Pikachu!",5.7,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,1.8 GiB 87 | John Romero's Daikatana,5.7,Kemco,Kemco,John Romero's Daikatana (USA).z64,16.0 MiB,1.8 GiB 88 | NFL QB Club 2001,5.7,High Voltage Software,Acclaim,NFL QB Club 2001 (USA).z64,12.0 MiB,1.8 GiB 89 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1.8 GiB 90 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.8 GiB 91 | WCW Backstage Assault,4.8,Kodiak Interactive,Electronic Arts,WCW Backstage Assault (USA).z64,32.0 MiB,1.8 GiB 92 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.9 GiB 93 | Blues Brothers 2000,3.7,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.9 GiB 94 | Batman Beyond: Return of the Joker,3.4,Kemco,Ubisoft,Batman Beyond - Return of the Joker (USA).z64,4.0 MiB,1.9 GiB 95 | Saban's Power Rangers: Lightspeed Rescue,2.5,Mass Media,THQ,Power Rangers - Lightspeed Rescue (USA).z64,12.0 MiB,1.9 GiB 96 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/avg_critic_4_user_10/Nintendo - GameCube.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: The Wind Waker,9.3,Nintendo,Nintendo,"Legend of Zelda, The - The Wind Waker (USA).iso",1.4 GiB,1.4 GiB 3 | The Legend of Zelda Collector's Edition,9.2,Nintendo,Nintendo,"Legend of Zelda, The - Collector's Edition (USA).iso",1.4 GiB,2.7 GiB 4 | Super Smash Bros. Melee,9.1,HAL Labs,Nintendo,"Super Smash Bros. Melee (USA) (En,Ja) (Rev 2).iso",1.4 GiB,4.1 GiB 5 | Eternal Darkness: Sanity's Requiem,9.1,Silicon Knights,Nintendo,Eternal Darkness - Sanity's Requiem (USA).iso,1.4 GiB,5.4 GiB 6 | The Legend of Zelda: Ocarina of Time / Master Quest,9.0,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time & Master Quest (USA).iso",1.4 GiB,6.8 GiB 7 | Star Wars Rogue Leader: Rogue Squadron II,8.9,Factor 5,LucasArts,Star Wars - Rogue Squadron II - Rogue Leader (USA).iso,1.4 GiB,8.2 GiB 8 | Paper Mario: The Thousand-Year Door (2004),8.8,Intelligent Systems,Nintendo,Paper Mario - The Thousand-Year Door (USA).iso,1.4 GiB,9.5 GiB 9 | Fire Emblem: Path of Radiance,8.8,Intelligent Systems,Nintendo,Fire Emblem - Path of Radiance (USA).iso,1.4 GiB,10.9 GiB 10 | F-Zero GX,8.8,Amusement Vision,Nintendo,F-Zero GX (USA).iso,1.4 GiB,12.2 GiB 11 | Super Mario Sunshine,8.8,Nintendo,Nintendo,Super Mario Sunshine (USA).iso,1.4 GiB,13.6 GiB 12 | Mario Kart: Double Dash!!,8.7,Nintendo,Nintendo,Mario Kart - Double Dash!! (USA).iso,1.4 GiB,15.0 GiB 13 | Animal Crossing,8.7,Nintendo,Nintendo,Animal Crossing (USA).iso,1.4 GiB,16.3 GiB 14 | Metal Gear Solid: The Twin Snakes,8.7,Silicon Knights,Konami,Metal Gear Solid - The Twin Snakes (USA) (Disc 2).iso,2.7 GiB,19.0 GiB 15 | Final Fantasy Crystal Chronicles,8.4,Square Enix,Nintendo,Final Fantasy Crystal Chronicles (USA).iso,1.4 GiB,20.4 GiB 16 | Bomberman Generation,8.3,Hudson,Majesco,Bomberman Generation (USA) (Rev 1).iso,1.4 GiB,21.8 GiB 17 | Mario Golf: Toadstool Tour,8.1,Camelot Software Planning,Nintendo,Mario Golf - Toadstool Tour (USA).iso,1.4 GiB,23.1 GiB 18 | Super Mario Strikers,8.1,Next Level Games,Nintendo,Super Mario Strikers (USA).iso,1.4 GiB,24.5 GiB 19 | Baten Kaitos: Eternal Wings and the Lost Ocean,8.1,Monolith Soft,Namco,Baten Kaitos - Eternal Wings and the Lost Ocean (USA) (Disc 2).iso,2.7 GiB,27.2 GiB 20 | Star Fox Adventures,8.1,Rare Ltd.,Nintendo,Star Fox Adventures (USA) (Rev 1).iso,1.4 GiB,28.6 GiB 21 | The Legend of Zelda: Four Swords Adventures,8.0,Nintendo,Nintendo,"Legend of Zelda, The - Four Swords Adventures (USA).iso",1.4 GiB,29.9 GiB 22 | Mario Superstar Baseball,8.0,Namco,Nintendo,Mario Superstar Baseball (USA).iso,1.4 GiB,31.3 GiB 23 | Wave Race: Blue Storm,7.9,Nintendo Software Technology,Nintendo,Wave Race - Blue Storm (USA).iso,1.4 GiB,32.6 GiB 24 | Sonic Mega Collection (2002),7.9,Sonic Team,Sega,Sonic Mega Collection (USA).iso,1.4 GiB,34.0 GiB 25 | Smuggler's Run: Warzones,7.9,Angel Studios,Rockstar Games,Smuggler's Run - Warzones (USA).iso,1.4 GiB,35.4 GiB 26 | WWE WrestleMania XIX,7.9,Yuke's,THQ,WWE WrestleMania XIX (USA).iso,1.4 GiB,36.7 GiB 27 | P.N. 03,7.8,Capcom,Capcom,P.N. 03 (USA).iso,1.4 GiB,38.1 GiB 28 | Pac-Man vs.,7.8,Namco,Namco,Pac-Man Vs. (USA).iso,1.4 GiB,39.4 GiB 29 | Knockout Kings 2003,7.8,EA Sports,Electronic Arts,Knockout Kings 2003 (USA).iso,1.4 GiB,40.8 GiB 30 | WWE Day of Reckoning 2,7.8,Yuke's,THQ,WWE Day of Reckoning 2 (USA).iso,1.4 GiB,42.2 GiB 31 | Battalion Wars,7.8,Kuju Entertainment,Nintendo,Battalion Wars (USA).iso,1.4 GiB,43.5 GiB 32 | Ultimate Muscle: Legends vs New Generation,7.7,Aki Corp.,Bandai,Ultimate Muscle - Legends vs. New Generation (USA).iso,1.4 GiB,44.9 GiB 33 | Pokemon Colosseum,7.7,Genius Sonority Inc.,Nintendo,Pokemon Colosseum (USA).iso,1.4 GiB,46.2 GiB 34 | Lost Kingdoms,7.7,From Software,Activision,Lost Kingdoms (USA).iso,1.4 GiB,47.6 GiB 35 | Beach Spikers: Virtua Beach Volleyball,7.7,Sega AM2,Sega,Beach Spikers - Virtua Beach Volleyball (USA).iso,1.4 GiB,48.9 GiB 36 | "WarioWare, Inc.: Mega Party Game$!",7.6,Nintendo,Nintendo,"WarioWare, Inc. - Mega Party Game$! (USA).iso",1.4 GiB,50.3 GiB 37 | Star Wars Rogue Squadron III: Rebel Strike,7.6,Factor 5,LucasArts,"Star Wars - Rogue Squadron III - Rebel Strike (USA) (En,Fr,De,Es,It).iso",1.4 GiB,51.7 GiB 38 | Donkey Konga,7.6,Namco,Nintendo,Donkey Konga (USA).iso,1.4 GiB,53.0 GiB 39 | Mario Party 6,7.5,Hudson Soft,Nintendo,Mario Party 6 (USA).iso,1.4 GiB,54.4 GiB 40 | Wario World,7.5,Treasure,Nintendo,Wario World (USA).iso,1.4 GiB,55.7 GiB 41 | Naruto: Clash of Ninja 2,7.5,Eighting,Tomy Corporation,Naruto - Clash of Ninja 2 (USA).iso,1.4 GiB,57.1 GiB 42 | 1080: Avalanche,7.5,Nintendo,Nintendo,1080 Avalanche (USA).iso,1.4 GiB,58.5 GiB 43 | WWE Day of Reckoning,7.5,Yuke's,THQ,WWE Day of Reckoning (USA) (Rev 1).iso,1.4 GiB,59.8 GiB 44 | Lost Kingdoms II,7.4,From Software,Activision,Lost Kingdoms II (USA).iso,1.4 GiB,61.2 GiB 45 | Star Fox: Assault,7.4,Namco,Nintendo,Star Fox - Assault (USA).iso,1.4 GiB,62.5 GiB 46 | Mario Party 4,7.3,Hudson,Nintendo,Mario Party 4 (USA) (Rev 1).iso,1.4 GiB,63.9 GiB 47 | Mario Party 5,7.3,Hudson,Nintendo,Mario Party 5 (USA).iso,1.4 GiB,65.3 GiB 48 | Phantasy Star Online Episode III: C.A.R.D. Revolution,7.3,Sonic Team,Sega,"Phantasy Star Online Episode III - C.A.R.D. Revolution (USA) (En,Ja).iso",1.4 GiB,66.6 GiB 49 | Pokemon XD: Gale of Darkness,7.2,Genius Sonority Inc.,Nintendo,Pokemon XD - Gale of Darkness (USA).iso,1.4 GiB,68.0 GiB 50 | Dance Dance Revolution: Mario Mix,7.2,Konami,Nintendo,Dance Dance Revolution - Mario Mix (USA) (Rev 1).iso,1.4 GiB,69.3 GiB 51 | Swingerz Golf,7.2,Telenet,Eidos Interactive,Swingerz Golf (USA).iso,1.4 GiB,70.7 GiB 52 | Summoner: A Goddess Reborn,7.2,Cranky Pants Games,THQ,Summoner - A Goddess Reborn (USA).iso,1.4 GiB,72.1 GiB 53 | NBA Courtside 2002,7.1,Left Field Productions,Nintendo,NBA Courtside 2002 (USA).iso,1.4 GiB,73.4 GiB 54 | Mario Party 7,7.1,Hudson,Nintendo,Mario Party 7 (USA) (Rev 1).iso,1.4 GiB,74.8 GiB 55 | Kirby Air Ride,7.1,HAL Labs,Nintendo,Kirby Air Ride (USA).iso,1.4 GiB,76.1 GiB 56 | Gotcha Force,7.1,Capcom,Capcom,Gotcha Force (USA).iso,1.4 GiB,77.5 GiB 57 | Custom Robo,7.1,Noise Inc.,Nintendo,Custom Robo (USA).iso,1.4 GiB,78.9 GiB 58 | Naruto: Clash of Ninja,7.1,Eighting,Tomy Corporation,Naruto - Clash of Ninja (USA).iso,1.4 GiB,80.2 GiB 59 | Geist (2005),7.0,n-Space,Nintendo,Geist (USA).iso,1.4 GiB,81.6 GiB 60 | Donkey Konga 2,6.9,Namco,Nintendo,Donkey Konga 2 (USA).iso,1.4 GiB,82.9 GiB 61 | TransWorld Surf: Next Wave,6.8,Angel Studios,Atari SA,TransWorld Surf - Next Wave (USA).iso,1.4 GiB,84.3 GiB 62 | Phantasy Star Online Episode I & II Plus,6.7,Sonic Team,Sega,"Phantasy Star Online Episode I & II Plus (Japan) (En,Ja,Fr,De,Es) (Rev 5).iso",1.4 GiB,85.7 GiB 63 | Go! Go! Hypergrind,6.7,Poponchi,Atlus,Go! Go! Hypergrind (USA).iso,1.4 GiB,87.0 GiB 64 | Home Run King,6.6,Wow Entertainment,Sega,Home Run King (USA).iso,1.4 GiB,88.4 GiB 65 | WWE WrestleMania X8,6.4,Yuke's,THQ,WWE WrestleMania X8 (USA).iso,1.4 GiB,89.7 GiB 66 | Pro Rally,6.4,Ubisoft,Ubisoft,"Pro Rally 2002 (USA) (En,Fr,Es).iso",1.4 GiB,91.1 GiB 67 | Harvest Moon: Another Wonderful Life,6.4,TOSE,Natsume,Harvest Moon - Another Wonderful Life (USA).iso,1.4 GiB,92.5 GiB 68 | Evolution Worlds,6.3,Sting,Ubisoft,Evolution Worlds (USA).iso,1.4 GiB,93.8 GiB 69 | Mega Man Network Transmission,6.2,Arika,Capcom,Mega Man Network Transmission (USA).iso,1.4 GiB,95.2 GiB 70 | Tube Slider,6.2,Nd Cube,NEC Interchannel,,, 71 | Odama,6.2,Vivarium,Nintendo,Odama (USA) (Rev 1).iso,1.4 GiB,96.5 GiB 72 | Disney's Magical Mirror Starring Mickey Mouse,6.0,Capcom,Nintendo,Disney's Magical Mirror Starring Mickey Mouse (USA).iso,1.4 GiB,97.9 GiB 73 | Rave Master,6.0,Konami,Konami,Rave Master (USA).iso,1.4 GiB,99.3 GiB 74 | Amazing Island,5.9,Hitmaker,Sega,Amazing Island (USA).iso,1.4 GiB,100.6 GiB 75 | Shrek Extra Large,5.9,Digital Illusions,TDK Mediactive,Shrek Extra Large (USA).iso,1.4 GiB,102.0 GiB 76 | Virtua Striker 2002,5.8,Amusement Vision,Sega,Virtua Striker 2002 (USA).iso,1.4 GiB,103.3 GiB 77 | Pokemon Channel,5.8,Ambrella,Nintendo,Pokemon Channel (USA).iso,1.4 GiB,104.7 GiB 78 | Yu-Gi-Oh! The Falsebound Kingdom,5.7,Konami,Konami,Yu-Gi-Oh! The Falsebound Kingdom (USA).iso,1.4 GiB,106.1 GiB 79 | Big Air Freestyle,5.6,Paradigm Entertainment,Infogrames,Big Air Freestyle (USA).iso,1.4 GiB,107.4 GiB 80 | Bust-A-Move 3000,5.3,Taito Corporation,Ubisoft,Bust-A-Move 3000 (USA).iso,1.4 GiB,108.8 GiB 81 | Medabots: Infinity,5.1,Natsume,Natsume,Medabots Infinity (USA) (Rev 1).iso,1.4 GiB,110.1 GiB 82 | "Disney/Pixar Monsters, Inc. Scream Arena",5.1,Radical Entertainment,THQ,"Disney-Pixar Monsters, Inc. - Scream Arena (USA).iso",1.4 GiB,111.5 GiB 83 | Disney's Hide & Sneak,4.8,Capcom,Capcom,Disney's Hide & Sneak (USA) (Rev 1).iso,1.4 GiB,112.9 GiB 84 | MC Groovz Dance Craze,4.2,Mad Catz,Mad Catz,MC Groovz Dance Craze (USA).iso,1.4 GiB,114.2 GiB 85 | Universal Studios Theme Parks Adventure,3.9,Nai'a Digital Works,Kemco,Universal Studios Theme Park Adventure (USA).iso,1.4 GiB,115.6 GiB 86 | BeyBlade VForce: Super Tournament Battle,3.3,AI,Atari SA,Beyblade VForce - Super Tournament Battle (USA).iso,1.4 GiB,116.9 GiB 87 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/avg_critic_4_user_10/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | The Legend of Zelda: Majora's Mask,9.3,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,64.0 MiB 4 | Buck Bumble,9.3,Argonaut Games,Ubisoft,Buck Bumble (USA).z64,12.0 MiB,76.0 MiB 5 | Paper Mario,9.2,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,116.0 MiB 6 | Conker's Bad Fur Day,9.0,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,180.0 MiB 7 | Mario Tennis,8.8,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,196.0 MiB 8 | Wave Race 64,8.8,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,208.0 MiB 9 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,220.0 MiB 10 | Donkey Kong 64,8.8,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,252.0 MiB 11 | Excitebike 64,8.6,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,268.0 MiB 12 | Diddy Kong Racing,8.6,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,280.0 MiB 13 | Mario Party 2,8.6,Hudson,Nintendo,Mario Party 2 (USA).z64,32.0 MiB,312.0 MiB 14 | F-Zero X,8.6,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,328.0 MiB 15 | Blast Corps,8.6,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,336.0 MiB 16 | WWF No Mercy,8.5,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,368.0 MiB 17 | Mario Kart 64,8.4,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,380.0 MiB 18 | Mario Golf,8.3,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,412.0 MiB 19 | Jet Force Gemini,8.3,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,444.0 MiB 20 | International Superstar Soccer '98,8.3,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,456.0 MiB 21 | Beetle Adventure Racing,8.3,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,472.0 MiB 22 | Super Smash Bros.,8.2,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,488.0 MiB 23 | Ridge Racer 64,8.1,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,520.0 MiB 24 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,552.0 MiB 25 | Ogre Battle 64: Person of Lordly Caliber,8.1,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,592.0 MiB 26 | Extreme-G,8.1,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,600.0 MiB 27 | Harvest Moon 64,8.1,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,616.0 MiB 28 | World Driver Championship,8.0,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,632.0 MiB 29 | Pokemon Stadium 2,8.0,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,696.0 MiB 30 | Mario Party,8.0,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,728.0 MiB 31 | Kirby 64: The Crystal Shards,7.9,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,760.0 MiB 32 | Wipeout 64,7.8,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,768.0 MiB 33 | Pilotwings 64,7.8,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,776.0 MiB 34 | Mario Party 3,7.8,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,808.0 MiB 35 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,824.0 MiB 36 | Body Harvest,7.7,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,836.0 MiB 37 | Castlevania (1998),7.5,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,848.0 MiB 38 | Turok 3: Shadow of Oblivion (2000),7.5,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,880.0 MiB 39 | Mystical Ninja starring Goemon,7.5,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,896.0 MiB 40 | StarCraft 64,7.4,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,928.0 MiB 41 | Mickey's Speedway USA,7.3,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,960.0 MiB 42 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,976.0 MiB 43 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,992.0 MiB 44 | Dr. Mario 64,6.9,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,996.0 MiB 45 | Yoshi's Story,6.8,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,1012.0 MiB 46 | Hercules: The Legendary Journeys,6.4,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,1.0 GiB 47 | Aidyn Chronicles: The First Mage,6.2,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.0 GiB 48 | "Hey You, Pikachu!",5.6,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,1.1 GiB 49 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1.1 GiB 50 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.1 GiB 51 | Cruis'n Exotica,5.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.1 GiB 52 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.1 GiB 53 | Blues Brothers 2000,3.5,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.1 GiB 54 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/avg_critic_4_user_10/Sega - Dreamcast.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Resident Evil Code: Veronica,9.3,NexTech,Capcom,Resident Evil - Code - Veronica (USA) (Disc 2) (Track 3).bin,2.2 GiB,2.2 GiB 3 | Shenmue,8.9,Sega AM2,Sega,Shenmue (USA) (Disc 3) (Track 6).bin,2.3 GiB,4.5 GiB 4 | Power Stone 2,8.6,Capcom,Capcom,Power Stone 2 (USA) (Track 3).bin,1.1 GiB,5.6 GiB 5 | Phantasy Star Online,8.6,Sonic Team,Sega,Phantasy Star Online (Japan) (Tentou-you Demo Movie) (Track 3).bin,828.9 MiB,6.4 GiB 6 | Sonic Adventure,8.5,Sonic Team,Sega,"Sonic Adventure (USA) (En,Ja,Fr,De,Es) (Rev A) (Track 3).bin",1.1 GiB,7.5 GiB 7 | Metropolis Street Racer,8.5,Bizarre Creations,Sega,MSR - Metropolis Street Racer (USA) (Rev A) (Track 3).bin,1.1 GiB,8.6 GiB 8 | Test Drive V-Rally,8.3,Eden Studios,Infogrames,"Test Drive V-Rally (USA) (En,Fr,De) (Track 10).bin",702.2 MiB,9.3 GiB 9 | Street Fighter III: Double Impact,8.2,Capcom,Capcom,Street Fighter III - Double Impact (USA) (Track 3).bin,1.1 GiB,10.4 GiB 10 | F355 Challenge: Passione Rossa,8.2,Sega,Acclaim,F355 Challenge - Passione Rossa (USA) (Track 3).bin,1.1 GiB,11.5 GiB 11 | Crazy Taxi 2,8.2,Hitmaker,Sega,Crazy Taxi 2 (USA) (Track 3).bin,1.1 GiB,12.6 GiB 12 | NBA 2K1,8.2,Visual Concepts,Sega,NBA 2K1 (USA) (Track 5).bin,832.8 MiB,13.4 GiB 13 | Capcom vs. SNK,8.1,Capcom,Capcom,Capcom vs. SNK (USA) (Track 3).bin,1.1 GiB,14.5 GiB 14 | NHL 2K2,8.0,Treyarch,Sega,NHL 2K2 (USA) (Track 5).bin,850.9 MiB,15.3 GiB 15 | Bomberman Online,8.0,h.a.n.d. Inc.,Sega,Bomberman Online (USA) (Track 3).bin,1.1 GiB,16.4 GiB 16 | Project Justice,7.9,Capcom,Capcom,Project Justice (USA) (Track 3).bin,1.1 GiB,17.5 GiB 17 | Record of Lodoss War,7.8,Neverland,Conspiracy Entertainment,Record of Lodoss War (USA) (Track 5).bin,642.8 MiB,18.2 GiB 18 | NFL 2K1,7.8,Visual Concepts,Sega,NFL 2K1 (USA) (Track 5).bin,1.1 GiB,19.3 GiB 19 | NCAA College Football 2K2: Road to the Rose Bowl,7.8,Visual Concepts,Sega,NCAA College Football 2K2 - Road to the Rose Bowl (USA) (Track 5).bin,906.4 MiB,20.1 GiB 20 | Mars Matrix,7.8,Takumi Corporation,Capcom,Mars Matrix (USA) (Track 3).bin,1.1 GiB,21.2 GiB 21 | Speed Devils Online Racing,7.6,Ubisoft Montreal,Ubisoft,Speed Devils - Online Racing (USA) (Track 13).bin,431.4 MiB,21.7 GiB 22 | Sega Smash Pack Volume 1,7.6,Sega,Sega,Sega Smash Pack - Volume 1 (USA) (Track 03).bin,628.8 MiB,22.3 GiB 23 | Sega Bass Fishing 2,7.6,Wow Entertainment,Sega,Sega Bass Fishing 2 (USA) (Track 3).bin,1.1 GiB,23.4 GiB 24 | Alien Front Online,7.6,Sega,Sega,Alien Front Online (USA) (Track 3).bin,960.0 MiB,24.3 GiB 25 | AeroWings 2: Air Strike,7.4,CRI,Crave,AeroWings 2 - Airstrike (USA) (Track 3).bin,1.1 GiB,25.4 GiB 26 | Red Dog: Superior Firepower,7.3,Argonaut Games,Crave,Red Dog - Superior Firepower (USA) (Track 3).bin,1.1 GiB,26.5 GiB 27 | Outtrigger,7.3,Sega AM2,Sega,Outtrigger (USA) (Track 3).bin,1.1 GiB,27.6 GiB 28 | Cannon Spike,7.3,Psikyo,Capcom,Cannon Spike (USA) (Track 3).bin,1.1 GiB,28.7 GiB 29 | Tokyo Xtreme Racer 2,7.1,Genki,Crave,Tokyo Xtreme Racer 2 (USA) (Track 3).bin,1.1 GiB,29.8 GiB 30 | Spawn: In the Demon's Hand,7.0,Capcom,Capcom,Spawn - In the Demon's Hand (USA) (Track 3).bin,1.1 GiB,30.9 GiB 31 | Giga Wing 2,7.0,Takumi Corporation,Capcom,GigaWing 2 (USA) (Track 3).bin,1.1 GiB,32.1 GiB 32 | Confidential Mission,7.0,Hitmaker,Sega,Confidential Mission (USA) (Track 3).bin,1.1 GiB,33.2 GiB 33 | Coaster Works,7.0,Bimboosoft,Xicat Interactive,Coaster Works (USA) (Track 03).bin,973.4 MiB,34.1 GiB 34 | World Series Baseball 2K2,6.9,Visual Concepts,Sega,World Series Baseball 2K2 (USA) (Track 5).bin,806.9 MiB,34.9 GiB 35 | D2,6.9,WARP,Sega,D2 (USA) (Disc 4) (Track 3).bin,4.4 GiB,39.3 GiB 36 | Charge 'N Blast,6.8,SIMS,Xicat Interactive,Charge 'N Blast (USA) (Track 3).bin,1.1 GiB,40.4 GiB 37 | The Next Tetris: On-line Edition,6.7,Blue Planet Software,Crave,"Next Tetris, The - On-Line Edition (USA) (Track 03).bin",728.9 MiB,41.1 GiB 38 | Iron Aces,6.7,Marionette,Xicat Interactive,Iron Aces (USA) (Track 3).bin,1.1 GiB,42.2 GiB 39 | Ooga Booga,6.7,Visual Concepts,Sega,Ooga Booga (USA) (Track 3).bin,1.0 GiB,43.2 GiB 40 | WWF Royal Rumble,6.6,Yuke's,THQ,WWF Royal Rumble (USA) (Track 3).bin,1.1 GiB,44.3 GiB 41 | Super Runabout: San Francisco Edition,6.5,Climax Entertainment,Interplay,Super Runabout - San Francisco Edition (USA) (Track 23).bin,345.3 MiB,44.7 GiB 42 | Sports Jam,6.4,Wow Entertainment,Agetec,Sports Jam (USA) (Track 3).bin,1.1 GiB,45.8 GiB 43 | Floigan Bros. Episode 1,6.4,Visual Concepts,Sega,Floigan Bros. - Episode 1 (USA) (Track 3).bin,603.2 MiB,46.4 GiB 44 | Sonic Shuffle,6.2,Sega,Sega,Sonic Shuffle (USA) (Track 3).bin,1.1 GiB,47.5 GiB 45 | Virtua Athlete 2000,6.1,Hitmaker,Agetec,"Virtua Athlete 2000 (USA) (En,Fr,De,Es) (Track 3).bin",1.1 GiB,48.6 GiB 46 | Zombie Revenge,6.0,Sega,Sega,Zombie Revenge (USA) (Track 3).bin,1.1 GiB,49.7 GiB 47 | Heavy Metal: Geomatrix,5.8,Capcom,Capcom,Heavy Metal - Geomatrix (USA) (Track 3).bin,1.1 GiB,50.8 GiB 48 | Surf Rocket Racers,5.5,CRI,Crave,Surf Rocket Racers (USA) (Track 3).bin,1.1 GiB,51.9 GiB 49 | Spec Ops II: Omega Squad,5.0,Runecraft,Ripcord Games,Spec Ops II - Omega Squad (USA) (Track 03).bin,365.2 MiB,52.2 GiB 50 | World Series Baseball 2K1,4.8,Wow Entertainment,Sega,World Series Baseball 2K1 (USA) (Track 3).bin,1.1 GiB,53.3 GiB 51 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/avg_critic_4_user_10/Sony - PlayStation Vita.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Tearaway,8.8,Media Molecule,SCEA,Tearaway (USA).vpk,907.6 MiB,907.6 MiB 3 | LittleBigPlanet PS Vita,8.7,Tarsier Studios,SCEA,"LittleBigPlanet PS Vita (Europe) (En,Fr,De,Es,It,Nl,Pt,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,2.5 GiB 4 | Gravity Rush,8.4,SCE Japan Studio,SCEA,Gravity Rush (Europe).vpk,1.4 GiB,3.9 GiB 5 | Killzone: Mercenary,8.3,Guerilla Cambridge,SCEA,"Killzone - Mercenary (Europe) (En,Fr,De,Es,It,Nl,Pt).vpk",3.3 GiB,7.2 GiB 6 | Muramasa Rebirth: Fishy Tales of the Nekomata,8.2,Vanillaware,Aksys Games,,, 7 | Fuel Tiracas,8.2,FuturLab,FuturLab,,, 8 | Lumines: Electronic Symphony,8.1,Q Entertainment,Ubisoft,Lumines - Electronic Symphony (USA).vpk,720.4 MiB,7.9 GiB 9 | Super Stardust Delta,8.1,Housemarque,Sony Interactive Entertainment,,, 10 | Muramasa Rebirth: A Cause to Daikon for,8.1,Vanillaware,Aksys Games,,, 11 | WipEout 2048,8.1,Studio Liverpool,SCEA,"WipEout 2048 (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,9.4 GiB 12 | Surge (2012),8.1,FuturLab,FuturLab,,, 13 | Tokyo Jungle Mobile,7.9,SCEI,SCEA,,, 14 | Soul Sacrifice,7.9,SCE Japan Studio,SCEA,Soul Sacrifice (USA).vpk,1.7 GiB,11.1 GiB 15 | TxK,7.9,Llamasoft,Llamasoft,,, 16 | Switch Galaxy,7.9,Atomicom,Atomicom,,, 17 | Oreshika: Tainted Bloodlines,7.9,Alfa System,SCEA,,, 18 | DJMax Technika Tune,7.9,Pentavision Entertainment,Pentavision Entertainment,DJMax Technika Tune (USA).vpk,3.1 GiB,14.2 GiB 19 | Virtua Tennis 4: World Tour Edition,7.8,Sega,Sega,"Virtua Tennis 4 - World Tour Edition (USA) (En,Fr,Es).vpk",1.0 GiB,15.3 GiB 20 | Freedom Wars,7.8,SCE Japan Studio,SCEA,Freedom Wars (USA).vpk,1.3 GiB,16.6 GiB 21 | Uncharted: Golden Abyss,7.8,Sony Bend,SCEA,"Uncharted - Golden Abyss (Europe) (En-GB,Es,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",3.3 GiB,19.9 GiB 22 | Malicious Rebirth,7.8,Alvion,SCEA,"Muramasa Rebirth (USA) (En,Ja).vpk",455.4 MiB,20.4 GiB 23 | Demon Gaze,7.8,Experience Inc.,NIS America,"Demon Gaze (Europe) (En,Ja).vpk",512.4 MiB,20.9 GiB 24 | Bad Apple Wars,7.8,Otomate,Aksys Games,Bad Apple Wars (USA).vpk,1.5 GiB,22.4 GiB 25 | Tokyo Xanadu,7.8,Falcom,Aksys Games,Tokyo Xanadu (USA).vpk,2.2 GiB,24.5 GiB 26 | Floating Cloud God Saves the Pilgrims in HD!,7.7,Dakko Dakko,Dakko Dakko,,, 27 | Open Me!,7.6,SCEI,SCEA,,, 28 | FIFA Soccer (2012),7.6,Electronic Arts,EA Sports,FIFA Soccer 13 (USA).vpk,2.8 GiB,27.4 GiB 29 | Criminal Girls 2: Party Favors,7.4,Nippon Ichi Software,NIS America,Criminal Girls 2 - Party Favors (Europe).vpk,1.1 GiB,28.5 GiB 30 | Surge Deluxe,7.3,FuturLab,FuturLab,,, 31 | Frobisher Says!,7.3,Honeyslug Ltd,SCEA,,, 32 | Invizimals: The Resistance,7.3,Novarama,SCEA,,, 33 | New Little King's Story,7.3,Konami,Konami,"New Little King's Story (Europe) (En,Fr,De,Es,It).vpk",659.5 MiB,29.1 GiB 34 | Gravity Crash Ultra,7.3,Just Add Water,Just Add Water,Gravity Rush (Europe).vpk,1.4 GiB,30.5 GiB 35 | PulzAR,7.2,XDEV,SCEA,,, 36 | Smart as...,7.2,XDEV,SCEA,"Smart as... (Europe) (En,Fr,De,It,Nl).vpk",1.5 GiB,32.0 GiB 37 | Gravity Rush: Military Pack,7.2,SCE Japan Studio,SCEA,Gravity Rush (Europe).vpk,1.4 GiB,33.4 GiB 38 | Ragnarok Odyssey,7.2,Game Arts,XSEED Games,Ragnarok Odyssey (USA).vpk,1.0 GiB,34.5 GiB 39 | Earth Defense Force 2017 Portable,7.2,Sandlot,D3Publisher,Earth Defense Force 2 - Invaders From Planet Space (USA).vpk,280.3 MiB,34.7 GiB 40 | Touch My Katamari,7.2,Bandai Namco Games,Namco Bandai Games,Touch My Katamari (USA).vpk,590.0 MiB,35.3 GiB 41 | Sword Art Online: Hollow Fragment,7.2,Aquria,Bandai Namco Games,"Sword Art Online - Hollow Realization (Europe) (En,Fr,De,Es,It).vpk",2.8 GiB,38.1 GiB 42 | Dynasty Warriors Next,7.2,Omega Force,Tecmo Koei Games,Dynasty Warriors Next (Europe).vpk,1.4 GiB,39.6 GiB 43 | Unit 13,7.1,Zipper Interactive,SCEA,"Unit 13 (USA) (En,Fr,Es,Pt).vpk",1.2 GiB,40.7 GiB 44 | Invizimals: The Alliance,7.1,Novarama,SCEA,,, 45 | Football Manager Classic 2014,7.0,Sports Interactive,Sega,,, 46 | Murasaki Baby,7.0,Ovosonico,SCEA,,, 47 | Assassin's Creed III: Liberation,7.0,Ubisoft Sofia,Ubisoft,"Assassin's Creed III - Liberation (Europe) (En,Fr,De,Es,It,Nl,Ru).vpk",2.9 GiB,43.6 GiB 48 | Super Monkey Ball: Banana Splitz,6.9,Marvelous AQL,Sega,Super Monkey Ball - Banana Splitz (USA).vpk,811.6 MiB,44.4 GiB 49 | MonsterBag,6.9,IguanaBee,SCEA,,, 50 | PlayStation Vita Pets,6.9,Spiral House,SCEA,"PlayStation Vita Pets (Europe) (En,Fr,De,Es).vpk",1.6 GiB,46.0 GiB 51 | Reel Fishing: Master's Challenge,6.8,"Tachyon Inc.,",Natsume,,, 52 | Destiny of Spirits,6.8,Q Entertainment,SCEA,,, 53 | The Hungry Horde,6.8,Nosebleed Interactive,SCEA,,, 54 | OMG HD Zombies!,6.8,Laughing Jackal,Laughing Jackal,,, 55 | Flying Hamster HD (2010),6.7,The Game Atelier,The Game Atelier,,, 56 | Senran Kagura: Bon Appetit!,6.7,Meteorise,XSEED Games,Senran Kagura Shinovi Versus (USA).vpk,1.9 GiB,47.9 GiB 57 | The HD Adventures of Rotating Octopus Character,6.6,Dakko Dakko,Dakko Dakko,,, 58 | Period: Cube - Shackles of Amadeus,6.6,Otomate,Idea Factory,Period - Cube - Shackles of Amadeus (USA).vpk,2.6 GiB,50.5 GiB 59 | Sketchcross,6.5,Spiky Fish Games,Spiky Fish Games,,, 60 | Orgarhythm,6.5,Neilo,XSEED Games,,, 61 | NekoBuro: Cats Block,6.5,Arc System Works,Arc System Works,,, 62 | Resistance: Burning Skies,6.5,Nihilistic,SCEA,"Resistance - Burning Skies (France) (Fr,De,It).vpk",2.9 GiB,53.4 GiB 63 | Uncharted: Fight for Fortune,6.3,Sony Bend,SCEA,,, 64 | UFO Dad,6.3,Edit Mode,Edit Mode,,, 65 | Metrico,6.3,Digital Dreams,Digital Dreams,,, 66 | Lemmings Touch,6.3,D3T,SCEA,,, 67 | ModNation Racers: Road Trip,6.2,SCEA,SCEA,ModNation Racers - Road Trip (USA).vpk,1.5 GiB,54.9 GiB 68 | Army Corps of Hell,6.2,"Entersphere, Inc.",Square Enix,"Army Corps of Hell (Europe) (En,Fr,De,Es,It).vpk",646.4 MiB,55.5 GiB 69 | Treasures of Montezuma Blitz,6.1,Alawar Entertainment,Alawar Entertainment,,, 70 | Mobile Suit Gundam: Extreme VS-Force,6.1,Bandai Namco Games,Bandai Namco Games,,, 71 | Shinobido 2: Revenge of Zen,6.0,Acquire,Namco Bandai Games,Shinobido 2 - Revenge of Zen (USA).vpk,1.1 GiB,56.6 GiB 72 | Phineas and Ferb: Day of Doofenshmirtz,6.0,Virtual Toys,SCEA,"Phineas and Ferb - Day of Doofenshmirtz (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",861.4 MiB,57.4 GiB 73 | Sumioni: Demon Arts,5.9,Acquire,XSEED Games,,, 74 | Valhalla Knights 3,5.8,K2,XSEED Games,Valhalla Knights 3 (USA).vpk,899.1 MiB,58.3 GiB 75 | Hyperdimension Neptunia PP: Producing Perfection,5.8,Tamsoft,NIS America,Hyperdimension Neptunia PP - Producing Perfection (Europe).vpk,1.2 GiB,59.5 GiB 76 | Ecolibrium,5.8,SCEE,SCEA,,, 77 | The Muppets: Movie Adventures,5.8,Virtual Toys,SCEA,"Muppets Movie, The - Adventures (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",870.8 MiB,60.4 GiB 78 | Table Mini Golf,5.6,Four Door Lemon,SCEA,,, 79 | MeiQ: Labyrinth of Death,5.6,Compile Heart,Idea Factory,MeiQ - Labyrinth of Death (USA).vpk,1.4 GiB,61.8 GiB 80 | Boss!,5.6,Fair Play Labs,Fair Play Labs,,, 81 | Little Deviants,5.6,Bigbig Studios,SCEA,Little Deviants (USA).vpk,898.4 MiB,62.7 GiB 82 | Table Top Tanks,5.4,Devils Details,SCEA,,, 83 | Silent Hill: Book of Memories,5.3,WayForward,Konami,"Silent Hill - Book of Memories (Europe) (En,Fr,De,Es,It).vpk",1.5 GiB,64.2 GiB 84 | Lets Fish! Hooked On,5.3,SIMS,Wired Productions,,, 85 | Asphalt: Injection,5.1,Ubisoft,Ubisoft,"Asphalt - Injection (Europe) (En,Fr,De,Es,It).vpk",537.9 MiB,64.7 GiB 86 | A.W.: Phoenix Festa,4.8,Bandai Namco Games,Bandai Namco Games,,, 87 | Drive Girls,4.8,Tamsoft,Aksys Games,Drive Girls (USA).vpk,279.7 MiB,65.0 GiB 88 | Reality Fighters,4.6,Novarama,SCEA,,, 89 | Ridge Racer (2012),4.2,Namco Bandai Games,Namco Bandai Games,Ridge Racer (Europe).vpk,797.0 MiB,65.8 GiB 90 | Call of Duty: Black Ops Declassified,4.2,Nihilistic,Activision,Call of Duty - Black Ops - Declassified (Europe).vpk,2.2 GiB,68.0 GiB 91 | Fireworks,4.1,Studio Liverpool,SCEA,,, 92 | Z-Run,4.0,Beatshapers,Beatshapers,,, 93 | Chronovolt,3.8,Playerthree,Playerthree,,, 94 | Table Soccer,3.6,Studio Liverpool,SCEA,,, 95 | Cliff Diving,3.6,Studio Liverpool,SCEA,,, 96 | Die!Die!Die!,3.1,iFun4all,iFun4all,,, 97 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/avg_critic_4_user_10/Sony - PlayStation.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Chrono Cross,9.1,SquareSoft,Square EA,Chrono Cross (USA) (Disc 2).bin,1.4 GiB,1.4 GiB 3 | Gran Turismo,9.1,Polyphony Digital,SCEA,Gran Turismo (USA) (Rev 1).bin,661.5 MiB,2.0 GiB 4 | Vagrant Story,9.1,SquareSoft,Square EA,Vagrant Story (USA).bin,715.9 MiB,2.7 GiB 5 | Medal of Honor (1999),9.1,Dreamworks Interactive,Electronic Arts,Medal of Honor (USA).bin,708.2 MiB,3.4 GiB 6 | Crash Bandicoot: Warped,9.1,Naughty Dog,SCEA,Crash Bandicoot - Warped (USA).bin,271.9 MiB,3.7 GiB 7 | Spyro: Year of the Dragon,8.9,Insomniac Games,SCEA,Spyro - Year of the Dragon (USA) (Rev 1).bin,634.0 MiB,4.3 GiB 8 | Spyro 2: Ripto's Rage!,8.9,Insomniac Games,SCEA,Spyro 2 - Ripto's Rage! (USA).bin,539.2 MiB,4.8 GiB 9 | Soul Edge,8.9,Namco,Namco,Soul Edge (Japan) (Rev 1).bin,477.2 MiB,5.3 GiB 10 | Final Fantasy Chronicles,8.8,TOSE,Square EA,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,5.8 GiB 11 | CTR: Crash Team Racing,8.8,Naughty Dog,SCEA,CTR - Crash Team Racing (USA).bin,577.6 MiB,6.4 GiB 12 | Crash Bandicoot 2: Cortex Strikes Back,8.8,Naughty Dog,SCEA,Crash Bandicoot 2 - Cortex Strikes Back (USA).bin,183.9 MiB,6.6 GiB 13 | Xenogears,8.8,SquareSoft,Square EA,Xenogears (USA) (Disc 2).bin,1.3 GiB,7.9 GiB 14 | Einhander,8.8,SquareSoft,SCEA,Einhaender (USA).bin,623.2 MiB,8.5 GiB 15 | Spyro the Dragon,8.7,Insomniac Games,SCEA,Spyro the Dragon (USA).bin,630.9 MiB,9.1 GiB 16 | Silent Hill,8.7,KCET,Konami,Silent Hill (USA).bin,587.9 MiB,9.7 GiB 17 | WWF SmackDown! 2: Know Your Role,8.7,Yuke's,THQ,WWF SmackDown! 2 - Know Your Role (USA).bin,711.7 MiB,10.4 GiB 18 | Suikoden II,8.6,Konami,Konami,Suikoden II (USA).bin,490.1 MiB,10.9 GiB 19 | Wipeout 3,8.6,Psygnosis,Psygnosis,WipEout 3 (USA) (Track 01).bin,51.5 MiB,10.9 GiB 20 | ISS Pro Evolution,8.6,KCET,Konami,ISS Pro Evolution (USA) (Track 01).bin,206.7 MiB,11.1 GiB 21 | Tenchu: Stealth Assassins,8.6,Acquire,Activision,Tenchu - Stealth Assassins (USA) (Rev 1).bin,660.9 MiB,11.8 GiB 22 | Lunar 2: Eternal Blue,8.6,Game Arts,Working Designs,Lunar 2 - Eternal Blue (Japan) (Disc 3).bin,2.0 GiB,13.8 GiB 23 | Alundra,8.6,Matrix Software,Working Designs,Alundra (USA) (Rev 1).bin,572.5 MiB,14.3 GiB 24 | Pepsiman,8.5,Kid,Kid,Pepsiman (Japan) (Track 1).bin,118.4 MiB,14.4 GiB 25 | Colony Wars,8.5,Psygnosis,Psygnosis,Colony Wars (USA) (Disc 2) (Track 1).bin,1.1 GiB,15.5 GiB 26 | Ace Combat 2,8.5,Namco,Namco,Ace Combat 2 (USA).bin,553.9 MiB,16.1 GiB 27 | Parasite Eve,8.4,SquareSoft,Square EA,Parasite Eve (USA) (Disc 2).bin,1.1 GiB,17.1 GiB 28 | Dance Dance Revolution Konamix,8.4,Konami,Konami,Dance Dance Revolution Konamix (USA).bin,431.5 MiB,17.6 GiB 29 | Final Fantasy Anthology,8.3,SquareSoft,Square EA,"Final Fantasy V (Japan, Asia).bin",282.4 MiB,17.8 GiB 30 | Crash Bandicoot,8.3,Naughty Dog,SCEA,Crash Bandicoot (USA).bin,602.8 MiB,18.4 GiB 31 | Dead or Alive,8.2,Team Ninja,Tecmo,"Dead or Alive (Japan, Asia) (Track 01).bin",146.0 MiB,18.6 GiB 32 | You Don't Know Jack: Mock 2,8.2,Jellyvision,Sierra Entertainment,You Don't Know Jack - Mock 2 (USA).bin,615.5 MiB,19.2 GiB 33 | Star Ocean: The Second Story,8.2,Tri-Ace,SCEA,Star Ocean - The Second Story (USA) (Disc 2).bin,1.2 GiB,20.4 GiB 34 | Parasite Eve II,8.2,SquareSoft,Square EA,"Parasite Eve II (USA, Canada) (Disc 2).bin",1.1 GiB,21.5 GiB 35 | Brave Fencer Musashi,8.2,SquareSoft,Square EA,Brave Fencer Musashi (USA) (Track 1).bin,347.9 MiB,21.8 GiB 36 | Tenchu 2: Birth of the Stealth Assassins,8.2,Acquire,Activision,Tenchu 2 - Birth of the Stealth Assassins (USA).bin,709.6 MiB,22.5 GiB 37 | Bushido Blade,8.1,Light Weight,SCEA,Bushido Blade (USA).bin,555.3 MiB,23.1 GiB 38 | RC de GO!,8.0,Taito Corporation,Acclaim,RC de Go! (USA) (Track 1).bin,291.8 MiB,23.3 GiB 39 | Barbie: Gotta Have Games,8.0,Digital Illusions,VU Games,Barbie - Gotta Have Games (USA) (Track 01).bin,25.9 MiB,23.4 GiB 40 | Saiyuki: Journey West,7.9,Koei,Koei,Saiyuki - Journey West (USA).bin,498.0 MiB,23.8 GiB 41 | Final Fantasy Origins,7.9,TOSE,Square Enix,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,24.4 GiB 42 | Bomberman Party Edition,7.9,Metro,Vatical Entertainment,Bomberman - Party Edition (USA).bin,630.2 MiB,25.0 GiB 43 | Spider-Man 2: Enter: Electro,7.8,Vicarious Visions,Activision,Spider-Man 2 - Enter - Electro (USA) (Rev 1).bin,684.2 MiB,25.7 GiB 44 | Point Blank 3,7.8,TOSE,Namco,Point Blank 3 (USA).bin,120.2 MiB,25.8 GiB 45 | MLB 2003,7.8,989 Sports,SCEA,MLB 2003 (USA).bin,523.8 MiB,26.3 GiB 46 | Incredible Crisis,7.8,Polygon Magic,Titus Software,Incredible Crisis (USA).bin,688.0 MiB,27.0 GiB 47 | Disney/Pixar Toy Story Racer,7.8,Traveller's Tales,Activision,Disney-Pixar Toy Story Racer (USA).bin,247.2 MiB,27.2 GiB 48 | Arc the Lad Collection,7.7,ARC Entertainment,Working Designs,Arc the Lad Collection - Arc the Lad (USA).bin,598.7 MiB,27.8 GiB 49 | Star Trek: Invasion,7.6,Warthog,Activision,Star Trek - Invasion (USA).bin,648.2 MiB,28.4 GiB 50 | MLB 2002,7.6,989 Sports,SCEA,MLB 2002 (USA).bin,605.1 MiB,29.0 GiB 51 | Fear Effect 2: Retro Helix,7.6,Kronos Digital Entertainment,Eidos Interactive,Fear Effect 2 - Retro Helix (USA) (Disc 4) (Rev 1).bin,2.6 GiB,31.6 GiB 52 | Elemental Gearbolt,7.6,Alfa System,Working Designs,Elemental Gearbolt (USA).bin,508.3 MiB,32.1 GiB 53 | X-Men: Mutant Academy 2,7.6,Paradox Development,Activision,X-Men - Mutant Academy 2 (USA) (Track 01).bin,419.5 MiB,32.5 GiB 54 | Disney's Atlantis: The Lost Empire (2001),7.5,Eurocom,SCEA,Disney's Atlantis - The Lost Empire (USA) (Track 1).bin,325.2 MiB,32.9 GiB 55 | Strider 2,7.5,Use,Capcom,Strider 2 (USA).bin,437.8 MiB,33.3 GiB 56 | Looney Tunes Racing,7.4,Circus Freak,Infogrames,"Looney Tunes Racing (USA) (En,Fr,Es).bin",433.8 MiB,33.7 GiB 57 | Vanguard Bandits,7.4,S-Neo,Working Designs,Vanguard Bandits (USA).bin,544.5 MiB,34.2 GiB 58 | Dance Dance Revolution Disney Mix,7.4,Konami,Konami,Dance Dance Revolution - Disney Mix (USA).bin,239.7 MiB,34.5 GiB 59 | Digimon Rumble Arena,7.4,Bandai,Bandai,Digimon Rumble Arena (USA).bin,254.5 MiB,34.7 GiB 60 | Gundam: Battle Assault 2,7.3,Natsume,Bandai,Gundam Battle Assault 2 (USA) (Track 1).bin,232.5 MiB,35.0 GiB 61 | Crash Bash,7.3,Eurocom,SCEA,Crash Bash (USA).bin,170.0 MiB,35.1 GiB 62 | RC Revenge,7.2,Acclaim Studios Cheltenham,Acclaim,RC Revenge (USA) (Track 1).bin,461.6 MiB,35.6 GiB 63 | Dragon Valor,7.2,Namco,Namco,Dragon Valor (USA) (Disc 2) (Track 1).bin,1.2 GiB,36.7 GiB 64 | C-12: Final Resistance,7.2,SCE Studio Cambridge,SCEA,C-12 - Final Resistance (USA) (Track 1).bin,432.4 MiB,37.2 GiB 65 | Bust A Groove 2,7.2,Metro,Enix Corporation,Bust A Groove 2 (USA).bin,584.0 MiB,37.7 GiB 66 | Time Crisis: Project Titan,7.1,Flying Tiger Development,Namco,Time Crisis - Project Titan (USA) (Track 01).bin,37.9 MiB,37.8 GiB 67 | NCAA March Madness 2001,7.1,Black Ops Entertainment,EA Sports,NCAA March Madness 2001 (USA).bin,597.8 MiB,38.3 GiB 68 | Yu-Gi-Oh! Forbidden Memories,7.1,KCEJ,Konami,Yu-Gi-Oh! Forbidden Memories (USA).bin,493.9 MiB,38.8 GiB 69 | Destruction Derby Raw,7.1,Studio 33,Midway,Destruction Derby Raw (USA) (Track 01).bin,262.4 MiB,39.1 GiB 70 | Thunder Force V,7.0,TechnoSoft,Working Designs,Thunderstrike 2 (USA) (Track 01).bin,72.4 MiB,39.2 GiB 71 | Super Shot Soccer,7.0,Tecmo,Tecmo,Super Shot Soccer (USA) (Track 1).bin,317.9 MiB,39.5 GiB 72 | MTV Sports: Pure Ride,7.0,Radical Entertainment,THQ,MTV Sports - Pure Ride (USA) (Track 1).bin,388.0 MiB,39.8 GiB 73 | ESPN MLS GameNight,7.0,Saffire,Konami,ESPN MLS Gamenight (USA) (Track 01).bin,184.0 MiB,40.0 GiB 74 | Championship Motocross 2001 Featuring Ricky Carmichael,7.0,Funcom,THQ,Championship Motocross 2001 featuring Ricky Carmichael (USA).bin,388.1 MiB,40.4 GiB 75 | Delta Force: Urban Warfare,7.0,Rebellion,NovaLogic,"Delta Force Urban Warfare (USA) (En,Fr,Es).bin",261.8 MiB,40.7 GiB 76 | Castlevania Chronicles,7.0,Konami,Konami,Castlevania Chronicles (USA).bin,503.8 MiB,41.2 GiB 77 | Silhouette Mirage: Reprogrammed Hope,6.9,Treasure,Working Designs,Silhouette Mirage - Reprogrammed Hope (Japan) (Track 01).bin,171.0 MiB,41.3 GiB 78 | Driver 2,6.8,Reflections Interactive,Infogrames,Driver 2 (USA) (Disc 2) (Rev 1).bin,1.2 GiB,42.5 GiB 79 | Digimon Digital Card Battle,6.8,Bec,Bandai,Digimon Digital Card Battle (Europe).bin,205.8 MiB,42.7 GiB 80 | Scooby-Doo and the Cyber Chase,6.7,Art,THQ,Scooby-Doo and the Cyber Chase (USA).bin,179.9 MiB,42.9 GiB 81 | Dave Mirra Freestyle BMX: Maximum Remix,6.7,"Z-Axis, Ltd.",Acclaim,Dave Mirra Freestyle BMX - Maximum Remix (USA) (Track 1).bin,285.8 MiB,43.1 GiB 82 | Vampire Hunter D,6.6,Jaleco Entertainment,Jaleco Entertainment,Vampire Hunter D (USA).bin,457.8 MiB,43.6 GiB 83 | Torneko: The Last Hope,6.6,Matrix Software,Enix Corporation,World of Dragon Warrior - Torneko - The Last Hope (USA) (Track 1).bin,556.4 MiB,44.1 GiB 84 | Blade (2000),6.6,Hammerhead,Activision,Blade (USA).bin,596.0 MiB,44.7 GiB 85 | Digimon World 3,6.6,Boom,Bandai,Digimon World 3 (USA).bin,617.5 MiB,45.3 GiB 86 | Alien Resurrection,6.5,Argonaut Games,Fox Interactive,Alien Resurrection (USA) (Track 1).bin,257.5 MiB,45.6 GiB 87 | Surf Riders,6.4,ACOT,Ubisoft,Surf Riders (USA) (Track 01).bin,106.9 MiB,45.7 GiB 88 | One Piece Mansion,6.2,Capcom,Capcom,One Piece Mansion (USA).bin,415.7 MiB,46.1 GiB 89 | Dexter's Laboratory: Mandark's Lab?,6.2,Red Lemon Studios,Bam Entertainment,Dexter's Laboratory - Mandark's Lab (USA) (Track 1).bin,245.6 MiB,46.3 GiB 90 | Gundam: Battle Assault,6.1,Natsume,Bandai,Gundam Battle Assault (USA) (Track 01).bin,14.3 MiB,46.3 GiB 91 | Digimon World 2,6.1,Bec,Bandai,Digimon World 2 (USA).bin,440.6 MiB,46.8 GiB 92 | Disney's Lilo & Stitch,6.1,Blitz Games,SCEA,Disney's Lilo & Stitch (USA).bin,497.1 MiB,47.2 GiB 93 | Speedball 2100,6.0,The Bitmap Brothers,Take-Two Interactive,Speedball 2100 (USA) (Track 01).bin,68.3 MiB,47.3 GiB 94 | Men in Black - The Series: Crashdown,5.9,Runecraft,Infogrames,Men in Black - The Series - Crashdown (USA).bin,633.9 MiB,47.9 GiB 95 | Twisted Metal: Small Brawl,5.8,Incognito Inc.,SCEA,Twisted Metal - Small Brawl (USA).bin,312.9 MiB,48.2 GiB 96 | Gunfighter: The Legend of Jesse James,5.5,Rebellion,Ubisoft,Gunfighter - The Legend of Jesse James (USA).bin,181.8 MiB,48.4 GiB 97 | Spec Ops: Ranger Elite,5.4,Runecraft,Take-Two Interactive,Spec Ops - Ranger Elite (USA).bin,185.5 MiB,48.6 GiB 98 | Inuyasha: A Feudal Fairy Tale,5.4,Dimps Corporation,Bandai,Inuyasha - A Feudal Fairy Tale (USA) (Rev 1).bin,635.7 MiB,49.2 GiB 99 | Clock Tower II: The Struggle Within,5.3,Human Entertainment,Agetec,Clock Tower II - The Struggle Within (USA).bin,409.1 MiB,49.6 GiB 100 | Rayman Rush,5.3,Ubisoft Shanghai,Ubisoft,Rayman Rush (USA).bin,483.5 MiB,50.1 GiB 101 | The Dukes of Hazzard II: Daisy Dukes It Out,5.3,Sinister Games,SouthPeak Games,"Dukes of Hazzard II, The - Daisy Dukes It Out (USA).bin",667.5 MiB,50.7 GiB 102 | NBA ShootOut 2002,5.3,Killer Game,SCEA,NBA ShootOut 2002 (USA) (Track 1).bin,282.6 MiB,51.0 GiB 103 | Hot Wheels Extreme Racing,5.3,Atod,THQ,Hot Wheels - Extreme Racing (USA) (Track 01).bin,68.8 MiB,51.1 GiB 104 | Smurf Racer!,5.2,Artificial Mind and Movement,Infogrames,"Smurf Racer! (USA) (En,Fr,Es).bin",238.9 MiB,51.3 GiB 105 | Countdown Vampires,5.2,K2 LLC,Bandai,Countdown Vampires (USA) (Disc 2).bin,1.1 GiB,52.4 GiB 106 | Action Bass,5.1,Vingt-et-un Systems,Take-Two Interactive,Action Bass (USA).bin,163.9 MiB,52.6 GiB 107 | Duke Nukem: Land of the Babes,5.0,n-Space,Infogrames,Duke Nukem - Land of the Babes (USA).bin,675.0 MiB,53.2 GiB 108 | 007 Racing,5.0,Eutechnyx,Electronic Arts,007 Racing (USA).bin,538.8 MiB,53.7 GiB 109 | Hoshigami: Ruining Blue Earth,5.0,Max Five,Atlus,Hoshigami - Ruining Blue Earth (USA) (Track 1).bin,529.8 MiB,54.3 GiB 110 | Runabout 2,4.9,Climax Entertainment,Hot-B,Runabout 2 (USA) (Track 1).bin,308.9 MiB,54.6 GiB 111 | Disney's The Lion King: Simba's Mighty Adventure,4.9,Paradox Development,Activision,Disney's The Lion King - Simba's Mighty Adventure (USA) (Track 1).bin,568.4 MiB,55.1 GiB 112 | Freestyle Motocross: McGrath Vs. Pastrana,4.8,"Z-Axis, Ltd.",Acclaim,Freestyle Motocross - McGrath vs. Pastrana (USA) (Track 1).bin,157.8 MiB,55.3 GiB 113 | MTV Sports: T.J. Lavin's Ultimate BMX,4.7,Blue Shift,THQ,MTV Sports - T.J. Lavin's Ultimate BMX (USA).bin,568.0 MiB,55.8 GiB 114 | Danger Girl,4.3,n-Space,THQ,Danger Girl (USA).bin,650.8 MiB,56.5 GiB 115 | Creatures,4.3,Creature Labs,Conspiracy Entertainment,Creatures (USA).bin,462.4 MiB,56.9 GiB 116 | The Simpsons Wrestling,4.2,Big Ape Productions,Activision,"Simpsons Wrestling, The (USA).bin",483.4 MiB,57.4 GiB 117 | All-Star Slammin' D-Ball,4.2,Access,Agetec,All-Star Slammin' D-Ball (USA).bin,204.6 MiB,57.6 GiB 118 | Dragon Ball Z: Ultimate Battle 22,3.8,TOSE,Infogrames,Dragon Ball Z - Ultimate Battle 22 (USA).bin,320.8 MiB,57.9 GiB 119 | "Army Men: World War - Land, Sea, Air",3.5,3DO,3DO,"Army Men - World War - Land, Sea, Air (USA).bin",265.0 MiB,58.2 GiB 120 | Animorphs: Shattered Reality,2.7,SingleTrac,Infogrames,Animorphs - Shattered Reality (USA) (Track 1).bin,255.2 MiB,58.4 GiB 121 | HBO Boxing,2.6,Osiris Studios,Acclaim,HBO Boxing (USA) (Track 1).bin,395.6 MiB,58.8 GiB 122 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Microsoft - Xbox.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Ninja Gaiden Black,9.4,Team Ninja,Tecmo,"Ninja Gaiden Black (USA) (En,Ja).iso",7.3 GiB,7.3 GiB 3 | Forza Motorsport (2005),9.2,Microsoft Game Studios,Microsoft Game Studios,"Forza Motorsport (World) (En,Ja,Fr,De,Es,It,Zh,Ko).iso",7.3 GiB,14.6 GiB 4 | Ninja Gaiden (2004),9.1,Team Ninja,Tecmo,"Ninja Gaiden (USA, Japan) (En,Ja).iso",7.3 GiB,21.9 GiB 5 | Project Gotham Racing 2,9.0,Bizarre Creations,Microsoft Game Studios,"Project Gotham Racing 2 (USA, Japan) (En,Ja,Fr,De,Es,It,Zh,Ko).iso",7.3 GiB,29.2 GiB 6 | Panzer Dragoon Orta,9.0,Smilebit,Sega,Panzer Dragoon Orta (USA).iso,7.3 GiB,36.4 GiB 7 | Halo 2 Multiplayer Map Pack,8.9,Bungie,Microsoft Game Studios,"Halo 2 Multiplayer Map Pack (World) (En,Ja,Fr,De,Es,It,Zh,Ko).iso",7.3 GiB,43.7 GiB 8 | JSRF: Jet Set Radio Future,8.8,Smilebit,Sega,JSRF - Jet Set Radio Future (USA).iso,7.3 GiB,51.0 GiB 9 | Crimson Skies: High Road to Revenge,8.8,FASA Studio,Microsoft Game Studios,"Crimson Skies - High Road to Revenge (USA) (En,Fr,De,Zh,Ko).iso",7.3 GiB,58.3 GiB 10 | RalliSport Challenge 2,8.7,Digital Illusions,Microsoft Game Studios,"RalliSport Challenge 2 (World) (En,Ja,Fr,De,Es,It).iso",7.3 GiB,65.6 GiB 11 | MechAssault,8.7,Day 1 Studios,Microsoft Game Studios,"MechAssault (USA) (En,Fr,De) (Rev 1).iso",7.3 GiB,72.9 GiB 12 | Dead or Alive 3,8.7,Team Ninja,Tecmo,"Dead or Alive 3 (USA) (En,Ja).iso",7.3 GiB,80.2 GiB 13 | World Series Baseball,8.5,Blueshift,Sega,World Series Baseball (USA).iso,7.3 GiB,87.5 GiB 14 | Project Gotham Racing,8.5,Bizarre Creations,Microsoft Game Studios,Project Gotham Racing (USA).iso,7.3 GiB,94.7 GiB 15 | Fable (2004),8.5,Big Blue Box,Microsoft Game Studios,"Fable (USA, Europe).iso",7.3 GiB,102.0 GiB 16 | Tom Clancy's Rainbow Six 3: Black Arrow,8.4,Ubisoft Montreal,Ubisoft,"Tom Clancy's Rainbow Six 3 - Black Arrow (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,109.3 GiB 17 | Tom Clancy's Ghost Recon 2: Summit Strike,8.4,Red Storm Entertainment,Ubisoft,"Tom Clancy's Ghost Recon 2 - Summit Strike (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,116.6 GiB 18 | Silent Hill 2: Restless Dreams,8.4,KCET,Konami,"Silent Hill 2 - Restless Dreams (USA) (En,Ja).iso",7.3 GiB,123.9 GiB 19 | Fatal Frame II: Crimson Butterfly - Director's Cut,8.4,Tecmo,Tecmo,Fatal Frame II - Crimson Butterfly - Director's Cut (USA).iso,7.3 GiB,131.2 GiB 20 | Unreal Championship,8.3,Digital Extremes,Atari SA,"Unreal Championship (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,138.5 GiB 21 | Steel Battalion,8.3,Capcom,Capcom,Steel Battalion (USA).iso,7.3 GiB,145.8 GiB 22 | Genma Onimusha,8.3,Capcom,Capcom,"Genma Onimusha (USA) (En,Ja).iso",7.3 GiB,153.0 GiB 23 | Dead or Alive Ultimate,8.3,Team Ninja,Tecmo,"Dead or Alive 2 Ultimate (USA, Japan) (En,Ja).iso",7.3 GiB,160.3 GiB 24 | Sega GT 2002,8.2,Wow Entertainment,Sega,"Sega GT 2002 (USA) (En,Ja).iso",7.3 GiB,167.6 GiB 25 | Dance Dance Revolution Ultramix,8.2,Konami Computer Entertainment Hawaii,Konami,Dance Dance Revolution Ultramix (USA).iso,7.3 GiB,174.9 GiB 26 | Phantom Dust (2005),8.1,Microsoft Game Studios Japan,Majesco,Phantom Dust (USA).iso,7.3 GiB,182.2 GiB 27 | MechAssault 2: Lone Wolf,8.1,Day 1 Studios,Microsoft Game Studios,"MechAssault 2 - Lone Wolf (World) (En,Ja,Fr,De,Es,It).iso",7.3 GiB,189.5 GiB 28 | Otogi: Myth of Demons,8.0,From Software,Sega,Otogi - Myth of Demons (USA).iso,7.3 GiB,196.8 GiB 29 | Links 2004,8.0,Indie Built,Microsoft Game Studios,Links 2004 (USA).iso,7.3 GiB,204.1 GiB 30 | Amped 2,8.0,Indie Built,Microsoft Game Studios,Amped 2 (USA).iso,7.3 GiB,211.3 GiB 31 | OutRun2,7.9,Sumo Digital,Microsoft Game Studios,OutRun 2 (USA).iso,7.3 GiB,218.6 GiB 32 | Otogi 2: Immortal Warriors,7.9,From Software,Sega,Otogi 2 - Immortal Warriors (USA).iso,7.3 GiB,225.9 GiB 33 | NFL Fever 2002,7.9,Microsoft Game Studios,Microsoft Game Studios,NFL Fever 2002 (USA).iso,7.3 GiB,233.2 GiB 34 | Deathrow,7.9,Southend Interactive,Ubisoft,Deathrow (USA).iso,7.3 GiB,240.5 GiB 35 | Tony Hawk's Pro Skater 2x,7.8,Treyarch,Activision,Tony Hawk's Pro Skater 2x (USA).iso,7.3 GiB,247.8 GiB 36 | Dance Dance Revolution Ultramix 2,7.8,Konami Computer Entertainment Hawaii,Konami,"Dance Dance Revolution Ultramix 2 (USA) (En,Fr,De,Es,It).iso",7.3 GiB,255.1 GiB 37 | Crimson Sea,7.8,Koei,Koei,Crimson Sea (USA).iso,7.3 GiB,262.4 GiB 38 | Conker: Live & Reloaded,7.8,Rare Ltd.,Microsoft Game Studios,"Conker - Live & Reloaded (USA) (En,Ja,Fr,De,Es,It).iso",7.3 GiB,269.6 GiB 39 | Amped: Freestyle Snowboarding,7.8,Indie Built,Microsoft Game Studios,Amped - Freestyle Snowboarding (USA).iso,7.3 GiB,276.9 GiB 40 | Outlaw Volleyball,7.7,Hypnotix,Simon & Schuster,Outlaw Volleyball (USA).iso,7.3 GiB,284.2 GiB 41 | Fatal Frame: Special Edition,7.7,Tecmo,Tecmo,Fatal Frame - Zero Special Edition (Japan).iso,7.3 GiB,291.5 GiB 42 | Brute Force,7.7,Digital Anvil,Microsoft Game Studios,"Brute Force (USA) (En,Fr,De,Es,It).iso",7.3 GiB,298.8 GiB 43 | Star Wars Starfighter: Special Edition,7.6,Secret Level,LucasArts,Star Wars - Starfighter Special Edition (USA).iso,7.3 GiB,306.1 GiB 44 | NBA Inside Drive 2002,7.6,High Voltage Software,Microsoft Game Studios,NBA Inside Drive 2002 (USA).iso,7.3 GiB,313.4 GiB 45 | Midtown Madness 3,7.6,Digital Illusions,Microsoft Game Studios,Midtown Madness 3 (USA).iso,7.3 GiB,320.7 GiB 46 | Dance Dance Revolution Ultramix 4,7.6,Konami,Konami,"Dance Dance Revolution Ultramix 4 (USA) (En,Fr,Es).iso",7.3 GiB,327.9 GiB 47 | Dance Dance Revolution Ultramix 3,7.5,Konami,Konami,Dance Dance Revolution Ultramix 3 (USA).iso,7.3 GiB,335.2 GiB 48 | Ultra Bust-A-Move,7.4,Taito Corporation,Majesco,Ultra Bust-A-Move (USA).iso,7.3 GiB,342.5 GiB 49 | TransWorld Snowboarding,7.4,Housemarque,Infogrames,TransWorld Snowboarding (USA).iso,7.3 GiB,349.8 GiB 50 | Phantom Crash,7.4,Genki,Phantagram,Phantom Crash (USA).iso,7.3 GiB,357.1 GiB 51 | NFL Fever 2004,7.4,Microsoft Game Studios,Microsoft Game Studios,NFL Fever 2004 (USA).iso,7.3 GiB,364.4 GiB 52 | Greg Hastings' Tournament Paintball,7.4,WXP,Activision,"Greg Hastings' Tournament Paintball (USA, Europe).iso",7.3 GiB,371.7 GiB 53 | Dai Senryaku VII: Modern Military Tactics,7.4,SystemSoft,Kemco,Dai Senryaku VII - Modern Military Tactics (USA).iso,7.3 GiB,379.0 GiB 54 | Apex (2003),7.4,Milestone S.r.l,Atari SA,"Apex (USA) (En,Fr,Es).iso",7.3 GiB,386.3 GiB 55 | Voodoo Vince,7.3,Beep Industries,Microsoft Game Studios,Voodoo Vince (USA).iso,7.3 GiB,393.5 GiB 56 | Dead or Alive: Xtreme Beach Volleyball,7.3,Team Ninja,Tecmo,"Dead or Alive Xtreme Beach Volleyball (USA) (En,Ja).iso",7.3 GiB,400.8 GiB 57 | Sega GT Online,7.2,Wow Entertainment,Sega,"Sega GT Online (USA) (En,Ja).iso",7.3 GiB,408.1 GiB 58 | NFL Fever 2003,7.2,Microsoft Game Studios,Microsoft Game Studios,NFL Fever 2003 (USA) (Rev 1).iso,7.3 GiB,415.4 GiB 59 | NBA Inside Drive 2003,7.2,High Voltage Software,Microsoft Game Studios,NBA Inside Drive 2003 (USA).iso,7.3 GiB,422.7 GiB 60 | Hunter: The Reckoning Redeemer,7.2,High Voltage Software,VU Games,Hunter - The Reckoning - Redeemer (USA).iso,7.3 GiB,430.0 GiB 61 | Raze's Hell,7.1,Artech Studios,Majesco,Raze's Hell (USA).iso,7.3 GiB,437.3 GiB 62 | NBA Inside Drive 2004,7.1,High Voltage Software,Microsoft Game Studios,"NBA Inside Drive 2004 (USA, Asia).iso",7.3 GiB,444.6 GiB 63 | Breakdown,7.1,Namco,Namco,Breakdown (USA).iso,7.3 GiB,451.8 GiB 64 | Blood Wake,7.1,Stormfront Studios,Microsoft Game Studios,Blood Wake (USA).iso,7.3 GiB,459.1 GiB 65 | Blinx: The Time Sweeper,7.1,Artoon,Microsoft Game Studios,"Blinx - The Time Sweeper (USA) (En,Ja) (Rev 1).iso",7.3 GiB,466.4 GiB 66 | Tenchu: Return From Darkness,7.0,K2 LLC,Activision,"Tenchu - Return from Darkness (USA, Asia).iso",7.3 GiB,473.7 GiB 67 | Steel Battalion: Line of Contact,7.0,Capcom,Capcom,"Tekki Taisen - Steel Battalion - Line of Contact (Japan) (En,Ja) (Pilot Test).iso",7.3 GiB,481.0 GiB 68 | Quantum Redshift,7.0,Curly Monsters,Microsoft Game Studios,Quantum Redshift (USA).iso,7.3 GiB,488.3 GiB 69 | Fuzion Frenzy,7.0,Blitz Games,Microsoft Game Studios,Fuzion Frenzy (USA).iso,7.3 GiB,495.6 GiB 70 | Silent Scope Complete,6.9,Konami,Konami,Silent Scope Complete (USA).iso,7.3 GiB,502.9 GiB 71 | Kung Fu Chaos,6.8,Just Add Monsters,Microsoft Game Studios,"Kung Fu Chaos (USA, Asia) (En,Fr,De).iso",7.3 GiB,510.1 GiB 72 | Blinx 2: Masters of Time & Space,6.8,Artoon,Microsoft Game Studios,"Blinx 2 - Masters of Time & Space ~ Blinx 2 - Battle of Time & Space (World) (En,Ja,Fr,De,Es,It).iso",7.3 GiB,517.4 GiB 73 | UFC: Tapout 2,6.6,DreamFactory,TDK Mediactive,,, 74 | Grabbed by the Ghoulies,6.6,Rare Ltd.,Microsoft Game Studios,"Grabbed by the Ghoulies (USA) (En,Fr,De,Es,It).iso",7.3 GiB,524.7 GiB 75 | Tao Feng: Fist of the Lotus,6.5,Studio Gigante,Microsoft Game Studios,"Tao Feng - Fist of the Lotus (USA, Japan).iso",7.3 GiB,532.0 GiB 76 | NHL Rivals 2004,6.5,Microsoft Game Studios,Microsoft Game Studios,NHL Rivals 2004 (USA).iso,7.3 GiB,539.3 GiB 77 | Mad Dash Racing,6.5,Crystal Dynamics,Eidos Interactive,Mad Dash Racing (USA).iso,7.3 GiB,546.6 GiB 78 | Carve,6.4,Argonaut Games,Global Star Software,"Carve (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,553.9 GiB 79 | Furious Karting,6.3,Babylon Software,Atari SA,Furious Karting (USA).iso,7.3 GiB,561.2 GiB 80 | Tork: Prehistoric Punk,6.2,Tiwak,Ubisoft,Tork - Prehistoric Punk (USA).iso,7.3 GiB,568.4 GiB 81 | Tetris Worlds: Online Edition,6.2,Radical Entertainment,THQ,Tetris Worlds (USA) (Online Enabled).iso,7.3 GiB,575.7 GiB 82 | Pro Fishing Challenge,6.2,Opus,Atlus,Pro Fishing Challenge (USA).iso,7.3 GiB,583.0 GiB 83 | NightCaster: Defeat the Darkness,6.1,VR1 Entertainment,Microsoft Game Studios,Night Caster - Defeat the Darkness (USA).iso,7.3 GiB,590.3 GiB 84 | Chase: Hollywood Stunt Driver,6.0,I-Imagine,Bam Entertainment,Chase - Hollywood Stunt Driver (USA).iso,7.3 GiB,597.6 GiB 85 | Whacked!,5.9,Presto Studios,Microsoft Game Studios,"Whacked! (USA, Europe).iso",7.3 GiB,604.9 GiB 86 | Star Wars: Obi-Wan,5.8,LucasArts,LucasArts,Star Wars - Obi-Wan (USA).iso,7.3 GiB,612.2 GiB 87 | Iron Phoenix,5.8,InterServ International,Sega,Iron Phoenix (USA).iso,7.3 GiB,619.5 GiB 88 | Inside Pitch 2003,5.8,Microsoft Game Studios,Microsoft Game Studios,Inside Pitch 2003 (USA).iso,7.3 GiB,626.7 GiB 89 | Group S Challenge,5.7,Capcom,Capcom,Group S Challenge (USA).iso,7.3 GiB,634.0 GiB 90 | WWE WrestleMania 21,5.6,Studio Gigante,THQ,WWE WrestleMania 21 (USA) (Rev 2).iso,7.3 GiB,641.3 GiB 91 | New Legends,5.6,Infinite Machine,THQ,New Legends (USA).iso,7.3 GiB,648.6 GiB 92 | Maximum Chase,5.6,Genki,Majesco,Maximum Chase (USA).iso,7.3 GiB,655.9 GiB 93 | Tecmo Classic Arcade,5.5,Tecmo,Tecmo,"Tecmo Classic Arcade (USA, Japan).iso",7.3 GiB,663.2 GiB 94 | GunGriffon: Allied Strike,5.5,Game Arts,Tecmo,"Gungriffon - Allied Strike (USA, Japan) (En,Ja,Ko).iso",7.3 GiB,670.5 GiB 95 | Spikeout: Battle Street,5.4,Dimps Corporation,Sega,"Spikeout - Battle Street (USA) (En,Ja,Fr,De,Es,It).iso",7.3 GiB,677.8 GiB 96 | Yu-Gi-Oh! The Dawn of Destiny,5.3,KCEJ,Konami,Yu-Gi-Oh! The Dawn of Destiny (USA).iso,7.3 GiB,685.0 GiB 97 | "Knight's Apprentice, Memorick's Adventures",5.3,Microids,XS Games,"Knight's Apprentice - Memorick's Adventures ~ Memorick - The Apprentice Knight (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,692.3 GiB 98 | Azurik: Rise of Perathia,5.2,Adrenium,Microsoft Game Studios,Azurik - Rise of Perathia (USA).iso,7.3 GiB,699.6 GiB 99 | Dino Crisis 3,5.1,Capcom,Capcom,"Dino Crisis 3 (USA, Asia).iso",7.3 GiB,706.9 GiB 100 | Xbox Music Mixer,4.9,WildTangent,Microsoft Game Studios,Xbox Music Mixer (USA).iso,7.3 GiB,714.2 GiB 101 | Shrek (2001),4.9,Digital Illusions,TDK Mediactive,"Shrek 2 (USA, Japan).iso",7.3 GiB,721.5 GiB 102 | Pro Cast Sports Fishing,4.9,Capcom,Capcom,Pro Cast - Sports Fishing Game (USA).iso,7.3 GiB,728.8 GiB 103 | Bicycle Casino,4.9,Leaping Lizard Software Inc.,Activision Value,High Rollers Casino (USA).iso,7.3 GiB,736.1 GiB 104 | SeaBlade,4.8,Vision Scape,Simon & Schuster,SeaBlade (USA).iso,7.3 GiB,743.4 GiB 105 | Murakumo: Renegade Mech Pursuit,4.8,From Software,Ubisoft,Murakumo - Renegade Mech Pursuit (USA).iso,7.3 GiB,750.6 GiB 106 | AMF Bowling 2004,4.8,,Mud Duck Productions,AMF Bowling 2004 (USA).iso,7.3 GiB,757.9 GiB 107 | Loons: The Fight for Fame,4.7,Warthog,Infogrames,Loons - The Fight for Fame (USA).iso,7.3 GiB,765.2 GiB 108 | Nightcaster II: Equinox,4.6,Jaleco Entertainment,Jaleco Entertainment,Night Caster II - Equinox (USA).iso,7.3 GiB,772.5 GiB 109 | Kakuto Chojin,4.6,DreamFactory,Microsoft Game Studios,Kakuto Chojin (USA).iso,7.3 GiB,779.8 GiB 110 | Superman: The Man of Steel,4.4,Circus Freak,Atari SA,Superman - The Man of Steel (USA).iso,7.3 GiB,787.1 GiB 111 | Metal Dungeon,4.4,Panther Software,Xicat Interactive,Metal Dungeon (USA).iso,7.3 GiB,794.4 GiB 112 | Black Stone: Magic & Steel,4.4,Xpec,Xicat Interactive,"Black Stone - Magic & Steel (USA, Europe).iso",7.3 GiB,801.7 GiB 113 | Kabuki Warriors,3.2,Light Weight,Crave,Kabuki Warriors (USA).iso,7.3 GiB,808.9 GiB 114 | Bruce Lee: Quest of the Dragon,3.2,Ronin Entertainment,Universal Interactive,Bruce Lee - Quest of the Dragon (USA).iso,7.3 GiB,816.2 GiB 115 | Sneakers,2.8,Media.Vision,Microsoft Game Studios,Sneakers (USA).iso,7.3 GiB,823.5 GiB 116 | Stake: Fortune Fighters,2.6,Gameness Art Software,Metro3D,"Stake - Fortune Fighters (USA, Europe) (En,Fr,De,Es,It).iso",7.3 GiB,830.8 GiB 117 | Pulse Racer,2.4,Jaleco Entertainment,Jaleco Entertainment,Pulse Racer (USA).iso,7.3 GiB,838.1 GiB 118 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Nintendo - GameCube.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: The Wind Waker,9.6,Nintendo,Nintendo,"Legend of Zelda, The - The Wind Waker (USA).iso",1.4 GiB,1.4 GiB 3 | The Legend of Zelda Collector's Edition,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Collector's Edition (USA).iso",1.4 GiB,2.7 GiB 4 | Super Smash Bros. Melee,9.2,HAL Labs,Nintendo,"Super Smash Bros. Melee (USA) (En,Ja) (Rev 2).iso",1.4 GiB,4.1 GiB 5 | Super Mario Sunshine,9.2,Nintendo,Nintendo,Super Mario Sunshine (USA).iso,1.4 GiB,5.4 GiB 6 | Eternal Darkness: Sanity's Requiem,9.2,Silicon Knights,Nintendo,Eternal Darkness - Sanity's Requiem (USA).iso,1.4 GiB,6.8 GiB 7 | The Legend of Zelda: Ocarina of Time / Master Quest,9.1,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time & Master Quest (USA).iso",1.4 GiB,8.2 GiB 8 | Star Wars Rogue Leader: Rogue Squadron II,9.0,Factor 5,LucasArts,Star Wars - Rogue Squadron II - Rogue Leader (USA).iso,1.4 GiB,9.5 GiB 9 | F-Zero GX,8.9,Amusement Vision,Nintendo,F-Zero GX (USA).iso,1.4 GiB,10.9 GiB 10 | Paper Mario: The Thousand-Year Door (2004),8.7,Intelligent Systems,Nintendo,Paper Mario - The Thousand-Year Door (USA).iso,1.4 GiB,12.2 GiB 11 | Mario Kart: Double Dash!!,8.7,Nintendo,Nintendo,Mario Kart - Double Dash!! (USA).iso,1.4 GiB,13.6 GiB 12 | Animal Crossing,8.7,Nintendo,Nintendo,Animal Crossing (USA).iso,1.4 GiB,15.0 GiB 13 | The Legend of Zelda: Four Swords Adventures,8.6,Nintendo,Nintendo,"Legend of Zelda, The - Four Swords Adventures (USA).iso",1.4 GiB,16.3 GiB 14 | Metal Gear Solid: The Twin Snakes,8.5,Silicon Knights,Konami,Metal Gear Solid - The Twin Snakes (USA) (Disc 2).iso,2.7 GiB,19.0 GiB 15 | Fire Emblem: Path of Radiance,8.5,Intelligent Systems,Nintendo,Fire Emblem - Path of Radiance (USA).iso,1.4 GiB,20.4 GiB 16 | Star Fox Adventures,8.2,Rare Ltd.,Nintendo,Star Fox Adventures (USA) (Rev 1).iso,1.4 GiB,21.8 GiB 17 | Mario Golf: Toadstool Tour,8.1,Camelot Software Planning,Nintendo,Mario Golf - Toadstool Tour (USA).iso,1.4 GiB,23.1 GiB 18 | Bomberman Generation,8.1,Hudson,Majesco,Bomberman Generation (USA) (Rev 1).iso,1.4 GiB,24.5 GiB 19 | Wave Race: Blue Storm,8.0,Nintendo Software Technology,Nintendo,Wave Race - Blue Storm (USA).iso,1.4 GiB,25.8 GiB 20 | Final Fantasy Crystal Chronicles,8.0,Square Enix,Nintendo,Final Fantasy Crystal Chronicles (USA).iso,1.4 GiB,27.2 GiB 21 | Baten Kaitos: Eternal Wings and the Lost Ocean,8.0,Monolith Soft,Namco,Baten Kaitos - Eternal Wings and the Lost Ocean (USA) (Disc 2).iso,2.7 GiB,29.9 GiB 22 | WWE Day of Reckoning,7.9,Yuke's,THQ,WWE Day of Reckoning (USA) (Rev 1).iso,1.4 GiB,31.3 GiB 23 | Smuggler's Run: Warzones,7.9,Angel Studios,Rockstar Games,Smuggler's Run - Warzones (USA).iso,1.4 GiB,32.6 GiB 24 | Pac-Man vs.,7.8,Namco,Namco,Pac-Man Vs. (USA).iso,1.4 GiB,34.0 GiB 25 | Knockout Kings 2003,7.8,EA Sports,Electronic Arts,Knockout Kings 2003 (USA).iso,1.4 GiB,35.4 GiB 26 | Ultimate Muscle: Legends vs New Generation,7.7,Aki Corp.,Bandai,Ultimate Muscle - Legends vs. New Generation (USA).iso,1.4 GiB,36.7 GiB 27 | WWE WrestleMania XIX,7.6,Yuke's,THQ,WWE WrestleMania XIX (USA).iso,1.4 GiB,38.1 GiB 28 | WWE Day of Reckoning 2,7.6,Yuke's,THQ,WWE Day of Reckoning 2 (USA).iso,1.4 GiB,39.4 GiB 29 | "WarioWare, Inc.: Mega Party Game$!",7.6,Nintendo,Nintendo,"WarioWare, Inc. - Mega Party Game$! (USA).iso",1.4 GiB,40.8 GiB 30 | Super Mario Strikers,7.6,Next Level Games,Nintendo,Super Mario Strikers (USA).iso,1.4 GiB,42.2 GiB 31 | Mario Superstar Baseball,7.6,Namco,Nintendo,Mario Superstar Baseball (USA).iso,1.4 GiB,43.5 GiB 32 | Donkey Konga,7.6,Namco,Nintendo,Donkey Konga (USA).iso,1.4 GiB,44.9 GiB 33 | Beach Spikers: Virtua Beach Volleyball,7.6,Sega AM2,Sega,Beach Spikers - Virtua Beach Volleyball (USA).iso,1.4 GiB,46.2 GiB 34 | Battalion Wars,7.6,Kuju Entertainment,Nintendo,Battalion Wars (USA).iso,1.4 GiB,47.6 GiB 35 | Star Wars Rogue Squadron III: Rebel Strike,7.5,Factor 5,LucasArts,"Star Wars - Rogue Squadron III - Rebel Strike (USA) (En,Fr,De,Es,It).iso",1.4 GiB,48.9 GiB 36 | Sonic Mega Collection (2002),7.5,Sonic Team,Sega,Sonic Mega Collection (USA).iso,1.4 GiB,50.3 GiB 37 | Naruto: Clash of Ninja 2,7.4,Eighting,Tomy Corporation,Naruto - Clash of Ninja 2 (USA).iso,1.4 GiB,51.7 GiB 38 | Pokemon Colosseum,7.3,Genius Sonority Inc.,Nintendo,Pokemon Colosseum (USA).iso,1.4 GiB,53.0 GiB 39 | 1080: Avalanche,7.3,Nintendo,Nintendo,1080 Avalanche (USA).iso,1.4 GiB,54.4 GiB 40 | Swingerz Golf,7.2,Telenet,Eidos Interactive,Swingerz Golf (USA).iso,1.4 GiB,55.7 GiB 41 | Summoner: A Goddess Reborn,7.2,Cranky Pants Games,THQ,Summoner - A Goddess Reborn (USA).iso,1.4 GiB,57.1 GiB 42 | Naruto: Clash of Ninja,7.2,Eighting,Tomy Corporation,Naruto - Clash of Ninja (USA).iso,1.4 GiB,58.5 GiB 43 | Lost Kingdoms,7.2,From Software,Activision,Lost Kingdoms (USA).iso,1.4 GiB,59.8 GiB 44 | Wario World,7.1,Treasure,Nintendo,Wario World (USA).iso,1.4 GiB,61.2 GiB 45 | Phantasy Star Online Episode III: C.A.R.D. Revolution,7.1,Sonic Team,Sega,"Phantasy Star Online Episode III - C.A.R.D. Revolution (USA) (En,Ja).iso",1.4 GiB,62.5 GiB 46 | NBA Courtside 2002,7.1,Left Field Productions,Nintendo,NBA Courtside 2002 (USA).iso,1.4 GiB,63.9 GiB 47 | Mario Party 6,7.1,Hudson Soft,Nintendo,Mario Party 6 (USA).iso,1.4 GiB,65.3 GiB 48 | Mario Party 4,7.0,Hudson,Nintendo,Mario Party 4 (USA) (Rev 1).iso,1.4 GiB,66.6 GiB 49 | Harvest Moon: Another Wonderful Life,7.0,TOSE,Natsume,Harvest Moon - Another Wonderful Life (USA).iso,1.4 GiB,68.0 GiB 50 | Mario Party 5,6.9,Hudson,Nintendo,Mario Party 5 (USA).iso,1.4 GiB,69.3 GiB 51 | Donkey Konga 2,6.9,Namco,Nintendo,Donkey Konga 2 (USA).iso,1.4 GiB,70.7 GiB 52 | Dance Dance Revolution: Mario Mix,6.9,Konami,Nintendo,Dance Dance Revolution - Mario Mix (USA) (Rev 1).iso,1.4 GiB,72.1 GiB 53 | TransWorld Surf: Next Wave,6.8,Angel Studios,Atari SA,TransWorld Surf - Next Wave (USA).iso,1.4 GiB,73.4 GiB 54 | Lost Kingdoms II,6.8,From Software,Activision,Lost Kingdoms II (USA).iso,1.4 GiB,74.8 GiB 55 | Star Fox: Assault,6.7,Namco,Nintendo,Star Fox - Assault (USA).iso,1.4 GiB,76.1 GiB 56 | Go! Go! Hypergrind,6.7,Poponchi,Atlus,Go! Go! Hypergrind (USA).iso,1.4 GiB,77.5 GiB 57 | Home Run King,6.6,Wow Entertainment,Sega,Home Run King (USA).iso,1.4 GiB,78.9 GiB 58 | Geist (2005),6.6,n-Space,Nintendo,Geist (USA).iso,1.4 GiB,80.2 GiB 59 | Mega Man Network Transmission,6.5,Arika,Capcom,Mega Man Network Transmission (USA).iso,1.4 GiB,81.6 GiB 60 | Custom Robo,6.5,Noise Inc.,Nintendo,Custom Robo (USA).iso,1.4 GiB,82.9 GiB 61 | WWE WrestleMania X8,6.4,Yuke's,THQ,WWE WrestleMania X8 (USA).iso,1.4 GiB,84.3 GiB 62 | Pro Rally,6.4,Ubisoft,Ubisoft,"Pro Rally 2002 (USA) (En,Fr,Es).iso",1.4 GiB,85.7 GiB 63 | Pokemon XD: Gale of Darkness,6.4,Genius Sonority Inc.,Nintendo,Pokemon XD - Gale of Darkness (USA).iso,1.4 GiB,87.0 GiB 64 | Mario Party 7,6.4,Hudson,Nintendo,Mario Party 7 (USA) (Rev 1).iso,1.4 GiB,88.4 GiB 65 | P.N. 03,6.3,Capcom,Capcom,P.N. 03 (USA).iso,1.4 GiB,89.7 GiB 66 | Evolution Worlds,6.3,Sting,Ubisoft,Evolution Worlds (USA).iso,1.4 GiB,91.1 GiB 67 | Tube Slider,6.2,Nd Cube,NEC Interchannel,,, 68 | Odama,6.2,Vivarium,Nintendo,Odama (USA) (Rev 1).iso,1.4 GiB,92.5 GiB 69 | Kirby Air Ride,6.1,HAL Labs,Nintendo,Kirby Air Ride (USA).iso,1.4 GiB,93.8 GiB 70 | Rave Master,6.0,Konami,Konami,Rave Master (USA).iso,1.4 GiB,95.2 GiB 71 | Amazing Island,5.9,Hitmaker,Sega,Amazing Island (USA).iso,1.4 GiB,96.5 GiB 72 | Virtua Striker 2002,5.8,Amusement Vision,Sega,Virtua Striker 2002 (USA).iso,1.4 GiB,97.9 GiB 73 | Gotcha Force,5.6,Capcom,Capcom,Gotcha Force (USA).iso,1.4 GiB,99.3 GiB 74 | Big Air Freestyle,5.6,Paradigm Entertainment,Infogrames,Big Air Freestyle (USA).iso,1.4 GiB,100.6 GiB 75 | Pokemon Channel,5.5,Ambrella,Nintendo,Pokemon Channel (USA).iso,1.4 GiB,102.0 GiB 76 | Bust-A-Move 3000,5.3,Taito Corporation,Ubisoft,Bust-A-Move 3000 (USA).iso,1.4 GiB,103.3 GiB 77 | Medabots: Infinity,5.1,Natsume,Natsume,Medabots Infinity (USA) (Rev 1).iso,1.4 GiB,104.7 GiB 78 | Disney's Magical Mirror Starring Mickey Mouse,5.0,Capcom,Nintendo,Disney's Magical Mirror Starring Mickey Mouse (USA).iso,1.4 GiB,106.1 GiB 79 | Disney's Hide & Sneak,4.8,Capcom,Capcom,Disney's Hide & Sneak (USA) (Rev 1).iso,1.4 GiB,107.4 GiB 80 | Yu-Gi-Oh! The Falsebound Kingdom,4.4,Konami,Konami,Yu-Gi-Oh! The Falsebound Kingdom (USA).iso,1.4 GiB,108.8 GiB 81 | MC Groovz Dance Craze,4.2,Mad Catz,Mad Catz,MC Groovz Dance Craze (USA).iso,1.4 GiB,110.1 GiB 82 | Universal Studios Theme Parks Adventure,3.9,Nai'a Digital Works,Kemco,Universal Studios Theme Park Adventure (USA).iso,1.4 GiB,111.5 GiB 83 | "Disney/Pixar Monsters, Inc. Scream Arena",3.9,Radical Entertainment,THQ,"Disney-Pixar Monsters, Inc. - Scream Arena (USA).iso",1.4 GiB,112.9 GiB 84 | Shrek Extra Large,3.6,Digital Illusions,TDK Mediactive,Shrek Extra Large (USA).iso,1.4 GiB,114.2 GiB 85 | BeyBlade VForce: Super Tournament Battle,3.3,AI,Atari SA,Beyblade VForce - Super Tournament Battle (USA).iso,1.4 GiB,115.6 GiB 86 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.9,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | The Legend of Zelda: Majora's Mask,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,64.0 MiB 4 | Paper Mario,9.3,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,104.0 MiB 5 | Wave Race 64,9.2,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,116.0 MiB 6 | Conker's Bad Fur Day,9.2,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,180.0 MiB 7 | Mario Tennis,9.1,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,196.0 MiB 8 | Mario Golf,9.1,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,228.0 MiB 9 | International Superstar Soccer '98,9.1,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,240.0 MiB 10 | Donkey Kong 64,9.0,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,272.0 MiB 11 | Blast Corps,9.0,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,280.0 MiB 12 | Beetle Adventure Racing,9.0,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,296.0 MiB 13 | WWF No Mercy,8.9,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,328.0 MiB 14 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,340.0 MiB 15 | Excitebike 64,8.8,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,356.0 MiB 16 | Diddy Kong Racing,8.8,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,368.0 MiB 17 | F-Zero X,8.5,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,384.0 MiB 18 | Wipeout 64,8.4,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,392.0 MiB 19 | Mario Kart 64,8.3,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,404.0 MiB 20 | Ridge Racer 64,8.2,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,436.0 MiB 21 | Ogre Battle 64: Person of Lordly Caliber,8.2,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,476.0 MiB 22 | Extreme-G,8.2,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,484.0 MiB 23 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,516.0 MiB 24 | StarCraft 64,8.0,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,548.0 MiB 25 | Pilotwings 64,8.0,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,556.0 MiB 26 | Jet Force Gemini,8.0,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,588.0 MiB 27 | Super Smash Bros.,7.9,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,604.0 MiB 28 | Mario Party,7.9,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,636.0 MiB 29 | Pokemon Stadium 2,7.8,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,700.0 MiB 30 | Harvest Moon 64,7.8,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,716.0 MiB 31 | Castlevania (1998),7.8,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,728.0 MiB 32 | Turok 3: Shadow of Oblivion (2000),7.7,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,760.0 MiB 33 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,776.0 MiB 34 | Kirby 64: The Crystal Shards,7.7,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,808.0 MiB 35 | World Driver Championship,7.5,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,824.0 MiB 36 | Mario Party 3,7.4,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,856.0 MiB 37 | Body Harvest,7.3,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,868.0 MiB 38 | Mickey's Speedway USA,7.1,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,900.0 MiB 39 | Dr. Mario 64,7.1,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,904.0 MiB 40 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,920.0 MiB 41 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,936.0 MiB 42 | Mystical Ninja starring Goemon,6.7,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,952.0 MiB 43 | Yoshi's Story,6.5,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,968.0 MiB 44 | "Hey You, Pikachu!",5.7,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,984.0 MiB 45 | Hercules: The Legendary Journeys,5.5,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,1000.0 MiB 46 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1016.0 MiB 47 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.0 GiB 48 | Aidyn Chronicles: The First Mage,5.3,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.0 GiB 49 | Cruis'n Exotica,4.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.1 GiB 50 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.1 GiB 51 | Blues Brothers 2000,3.2,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.1 GiB 52 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Sega - Dreamcast.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | NFL 2K1,9.7,Visual Concepts,Sega,NFL 2K1 (USA) (Track 5).bin,1.1 GiB,1.1 GiB 3 | Resident Evil Code: Veronica,9.4,NexTech,Capcom,Resident Evil - Code - Veronica (USA) (Disc 2) (Track 3).bin,2.2 GiB,3.3 GiB 4 | NBA 2K1,9.3,Visual Concepts,Sega,NBA 2K1 (USA) (Track 5).bin,832.8 MiB,4.1 GiB 5 | Phantasy Star Online,8.9,Sonic Team,Sega,Phantasy Star Online (Japan) (Tentou-you Demo Movie) (Track 3).bin,828.9 MiB,4.9 GiB 6 | Shenmue,8.8,Sega AM2,Sega,Shenmue (USA) (Disc 3) (Track 6).bin,2.3 GiB,7.2 GiB 7 | Power Stone 2,8.7,Capcom,Capcom,Power Stone 2 (USA) (Track 3).bin,1.1 GiB,8.3 GiB 8 | Metropolis Street Racer,8.7,Bizarre Creations,Sega,MSR - Metropolis Street Racer (USA) (Rev A) (Track 3).bin,1.1 GiB,9.4 GiB 9 | Test Drive V-Rally,8.6,Eden Studios,Infogrames,"Test Drive V-Rally (USA) (En,Fr,De) (Track 10).bin",702.2 MiB,10.1 GiB 10 | F355 Challenge: Passione Rossa,8.5,Sega,Acclaim,F355 Challenge - Passione Rossa (USA) (Track 3).bin,1.1 GiB,11.2 GiB 11 | Street Fighter III: Double Impact,8.4,Capcom,Capcom,Street Fighter III - Double Impact (USA) (Track 3).bin,1.1 GiB,12.3 GiB 12 | Crazy Taxi 2,8.2,Hitmaker,Sega,Crazy Taxi 2 (USA) (Track 3).bin,1.1 GiB,13.4 GiB 13 | Ooga Booga,8.1,Visual Concepts,Sega,Ooga Booga (USA) (Track 3).bin,1.0 GiB,14.4 GiB 14 | Project Justice,8.0,Capcom,Capcom,Project Justice (USA) (Track 3).bin,1.1 GiB,15.5 GiB 15 | NHL 2K2,8.0,Treyarch,Sega,NHL 2K2 (USA) (Track 5).bin,850.9 MiB,16.3 GiB 16 | Capcom vs. SNK,8.0,Capcom,Capcom,Capcom vs. SNK (USA) (Track 3).bin,1.1 GiB,17.4 GiB 17 | Bomberman Online,8.0,h.a.n.d. Inc.,Sega,Bomberman Online (USA) (Track 3).bin,1.1 GiB,18.5 GiB 18 | Tokyo Xtreme Racer 2,7.9,Genki,Crave,Tokyo Xtreme Racer 2 (USA) (Track 3).bin,1.1 GiB,19.6 GiB 19 | NCAA College Football 2K2: Road to the Rose Bowl,7.8,Visual Concepts,Sega,NCAA College Football 2K2 - Road to the Rose Bowl (USA) (Track 5).bin,906.4 MiB,20.5 GiB 20 | Mars Matrix,7.8,Takumi Corporation,Capcom,Mars Matrix (USA) (Track 3).bin,1.1 GiB,21.6 GiB 21 | Speed Devils Online Racing,7.6,Ubisoft Montreal,Ubisoft,Speed Devils - Online Racing (USA) (Track 13).bin,431.4 MiB,22.0 GiB 22 | Sega Smash Pack Volume 1,7.6,Sega,Sega,Sega Smash Pack - Volume 1 (USA) (Track 03).bin,628.8 MiB,22.7 GiB 23 | Sega Bass Fishing 2,7.6,Wow Entertainment,Sega,Sega Bass Fishing 2 (USA) (Track 3).bin,1.1 GiB,23.8 GiB 24 | Record of Lodoss War,7.6,Neverland,Conspiracy Entertainment,Record of Lodoss War (USA) (Track 5).bin,642.8 MiB,24.4 GiB 25 | Alien Front Online,7.6,Sega,Sega,Alien Front Online (USA) (Track 3).bin,960.0 MiB,25.3 GiB 26 | AeroWings 2: Air Strike,7.4,CRI,Crave,AeroWings 2 - Airstrike (USA) (Track 3).bin,1.1 GiB,26.4 GiB 27 | Red Dog: Superior Firepower,7.3,Argonaut Games,Crave,Red Dog - Superior Firepower (USA) (Track 3).bin,1.1 GiB,27.5 GiB 28 | Outtrigger,7.3,Sega AM2,Sega,Outtrigger (USA) (Track 3).bin,1.1 GiB,28.6 GiB 29 | Cannon Spike,7.3,Psikyo,Capcom,Cannon Spike (USA) (Track 3).bin,1.1 GiB,29.7 GiB 30 | Giga Wing 2,7.0,Takumi Corporation,Capcom,GigaWing 2 (USA) (Track 3).bin,1.1 GiB,30.8 GiB 31 | Confidential Mission,7.0,Hitmaker,Sega,Confidential Mission (USA) (Track 3).bin,1.1 GiB,32.0 GiB 32 | Coaster Works,7.0,Bimboosoft,Xicat Interactive,Coaster Works (USA) (Track 03).bin,973.4 MiB,32.9 GiB 33 | World Series Baseball 2K2,6.9,Visual Concepts,Sega,World Series Baseball 2K2 (USA) (Track 5).bin,806.9 MiB,33.7 GiB 34 | D2,6.9,WARP,Sega,D2 (USA) (Disc 4) (Track 3).bin,4.4 GiB,38.1 GiB 35 | Charge 'N Blast,6.8,SIMS,Xicat Interactive,Charge 'N Blast (USA) (Track 3).bin,1.1 GiB,39.2 GiB 36 | The Next Tetris: On-line Edition,6.7,Blue Planet Software,Crave,"Next Tetris, The - On-Line Edition (USA) (Track 03).bin",728.9 MiB,39.9 GiB 37 | Iron Aces,6.7,Marionette,Xicat Interactive,Iron Aces (USA) (Track 3).bin,1.1 GiB,41.0 GiB 38 | WWF Royal Rumble,6.6,Yuke's,THQ,WWF Royal Rumble (USA) (Track 3).bin,1.1 GiB,42.1 GiB 39 | Super Runabout: San Francisco Edition,6.5,Climax Entertainment,Interplay,Super Runabout - San Francisco Edition (USA) (Track 23).bin,345.3 MiB,42.5 GiB 40 | Sports Jam,6.4,Wow Entertainment,Agetec,Sports Jam (USA) (Track 3).bin,1.1 GiB,43.6 GiB 41 | Floigan Bros. Episode 1,6.4,Visual Concepts,Sega,Floigan Bros. - Episode 1 (USA) (Track 3).bin,603.2 MiB,44.2 GiB 42 | Spawn: In the Demon's Hand,6.2,Capcom,Capcom,Spawn - In the Demon's Hand (USA) (Track 3).bin,1.1 GiB,45.3 GiB 43 | Virtua Athlete 2000,6.1,Hitmaker,Agetec,"Virtua Athlete 2000 (USA) (En,Fr,De,Es) (Track 3).bin",1.1 GiB,46.4 GiB 44 | Zombie Revenge,6.0,Sega,Sega,Zombie Revenge (USA) (Track 3).bin,1.1 GiB,47.5 GiB 45 | Heavy Metal: Geomatrix,5.8,Capcom,Capcom,Heavy Metal - Geomatrix (USA) (Track 3).bin,1.1 GiB,48.6 GiB 46 | Surf Rocket Racers,5.5,CRI,Crave,Surf Rocket Racers (USA) (Track 3).bin,1.1 GiB,49.7 GiB 47 | Sonic Shuffle,5.4,Sega,Sega,Sonic Shuffle (USA) (Track 3).bin,1.1 GiB,50.8 GiB 48 | Spec Ops II: Omega Squad,5.0,Runecraft,Ripcord Games,Spec Ops II - Omega Squad (USA) (Track 03).bin,365.2 MiB,51.1 GiB 49 | World Series Baseball 2K1,4.8,Wow Entertainment,Sega,World Series Baseball 2K1 (USA) (Track 3).bin,1.1 GiB,52.2 GiB 50 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Sony - PlayStation Vita.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | LittleBigPlanet PS Vita,8.8,Tarsier Studios,SCEA,"LittleBigPlanet PS Vita (Europe) (En,Fr,De,Es,It,Nl,Pt,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,1.6 GiB 3 | Tearaway,8.7,Media Molecule,SCEA,Tearaway (USA).vpk,907.6 MiB,2.5 GiB 4 | TxK,8.4,Llamasoft,Llamasoft,,, 5 | Lumines: Electronic Symphony,8.3,Q Entertainment,Ubisoft,Lumines - Electronic Symphony (USA).vpk,720.4 MiB,3.2 GiB 6 | Gravity Rush,8.3,SCE Japan Studio,SCEA,Gravity Rush (Europe).vpk,1.4 GiB,4.6 GiB 7 | Super Stardust Delta,8.2,Housemarque,Sony Interactive Entertainment,,, 8 | Fuel Tiracas,8.2,FuturLab,FuturLab,,, 9 | DJMax Technika Tune,8.1,Pentavision Entertainment,Pentavision Entertainment,DJMax Technika Tune (USA).vpk,3.1 GiB,7.7 GiB 10 | Uncharted: Golden Abyss,8.0,Sony Bend,SCEA,"Uncharted - Golden Abyss (Europe) (En-GB,Es,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",3.3 GiB,11.0 GiB 11 | WipEout 2048,7.9,Studio Liverpool,SCEA,"WipEout 2048 (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,12.5 GiB 12 | Switch Galaxy,7.9,Atomicom,Atomicom,,, 13 | Surge (2012),7.9,FuturLab,FuturLab,,, 14 | FIFA Soccer (2012),7.9,Electronic Arts,EA Sports,FIFA Soccer 13 (USA).vpk,2.8 GiB,15.3 GiB 15 | Oreshika: Tainted Bloodlines,7.8,Alfa System,SCEA,,, 16 | OMG HD Zombies!,7.8,Laughing Jackal,Laughing Jackal,,, 17 | Killzone: Mercenary,7.8,Guerilla Cambridge,SCEA,"Killzone - Mercenary (Europe) (En,Fr,De,Es,It,Nl,Pt).vpk",3.3 GiB,18.7 GiB 18 | Bad Apple Wars,7.8,Otomate,Aksys Games,Bad Apple Wars (USA).vpk,1.5 GiB,20.1 GiB 19 | Virtua Tennis 4: World Tour Edition,7.7,Sega,Sega,"Virtua Tennis 4 - World Tour Edition (USA) (En,Fr,Es).vpk",1.0 GiB,21.2 GiB 20 | Tokyo Jungle Mobile,7.7,SCEI,SCEA,,, 21 | Surge Deluxe,7.7,FuturLab,FuturLab,,, 22 | Soul Sacrifice,7.7,SCE Japan Studio,SCEA,Soul Sacrifice (USA).vpk,1.7 GiB,22.9 GiB 23 | PulzAR,7.7,XDEV,SCEA,,, 24 | Floating Cloud God Saves the Pilgrims in HD!,7.7,Dakko Dakko,Dakko Dakko,,, 25 | Gravity Crash Ultra,7.5,Just Add Water,Just Add Water,Gravity Rush (Europe).vpk,1.4 GiB,24.3 GiB 26 | Tokyo Xanadu,7.4,Falcom,Aksys Games,Tokyo Xanadu (USA).vpk,2.2 GiB,26.5 GiB 27 | Frobisher Says!,7.4,Honeyslug Ltd,SCEA,,, 28 | Freedom Wars,7.3,SCE Japan Studio,SCEA,Freedom Wars (USA).vpk,1.3 GiB,27.8 GiB 29 | Smart as...,7.2,XDEV,SCEA,"Smart as... (Europe) (En,Fr,De,It,Nl).vpk",1.5 GiB,29.3 GiB 30 | Open Me!,7.2,SCEI,SCEA,,, 31 | Unit 13,7.1,Zipper Interactive,SCEA,"Unit 13 (USA) (En,Fr,Es,Pt).vpk",1.2 GiB,30.5 GiB 32 | New Little King's Story,7.0,Konami,Konami,"New Little King's Story (Europe) (En,Fr,De,Es,It).vpk",659.5 MiB,31.1 GiB 33 | Demon Gaze,7.0,Experience Inc.,NIS America,"Demon Gaze (Europe) (En,Ja).vpk",512.4 MiB,31.6 GiB 34 | Assassin's Creed III: Liberation,7.0,Ubisoft Sofia,Ubisoft,"Assassin's Creed III - Liberation (Europe) (En,Fr,De,Es,It,Nl,Ru).vpk",2.9 GiB,34.5 GiB 35 | Touch My Katamari,6.9,Bandai Namco Games,Namco Bandai Games,Touch My Katamari (USA).vpk,590.0 MiB,35.1 GiB 36 | Murasaki Baby,6.9,Ovosonico,SCEA,,, 37 | Invizimals: The Alliance,6.9,Novarama,SCEA,,, 38 | Reel Fishing: Master's Challenge,6.8,"Tachyon Inc.,",Natsume,,, 39 | Metrico,6.8,Digital Dreams,Digital Dreams,,, 40 | Earth Defense Force 2017 Portable,6.8,Sandlot,D3Publisher,Earth Defense Force 2 - Invaders From Planet Space (USA).vpk,280.3 MiB,35.4 GiB 41 | Uncharted: Fight for Fortune,6.7,Sony Bend,SCEA,,, 42 | Sword Art Online: Hollow Fragment,6.7,Aquria,Bandai Namco Games,"Sword Art Online - Hollow Realization (Europe) (En,Fr,De,Es,It).vpk",2.8 GiB,38.2 GiB 43 | Invizimals: The Resistance,6.7,Novarama,SCEA,,, 44 | Football Manager Classic 2014,6.7,Sports Interactive,Sega,,, 45 | Dynasty Warriors Next,6.7,Omega Force,Tecmo Koei Games,Dynasty Warriors Next (Europe).vpk,1.4 GiB,39.6 GiB 46 | Criminal Girls 2: Party Favors,6.7,Nippon Ichi Software,NIS America,Criminal Girls 2 - Party Favors (Europe).vpk,1.1 GiB,40.7 GiB 47 | The HD Adventures of Rotating Octopus Character,6.6,Dakko Dakko,Dakko Dakko,,, 48 | Super Monkey Ball: Banana Splitz,6.6,Marvelous AQL,Sega,Super Monkey Ball - Banana Splitz (USA).vpk,811.6 MiB,41.5 GiB 49 | Ragnarok Odyssey,6.6,Game Arts,XSEED Games,Ragnarok Odyssey (USA).vpk,1.0 GiB,42.6 GiB 50 | Period: Cube - Shackles of Amadeus,6.6,Otomate,Idea Factory,Period - Cube - Shackles of Amadeus (USA).vpk,2.6 GiB,45.1 GiB 51 | MonsterBag,6.6,IguanaBee,SCEA,,, 52 | Destiny of Spirits,6.6,Q Entertainment,SCEA,,, 53 | Sketchcross,6.5,Spiky Fish Games,Spiky Fish Games,,, 54 | NekoBuro: Cats Block,6.5,Arc System Works,Arc System Works,,, 55 | UFO Dad,6.3,Edit Mode,Edit Mode,,, 56 | PlayStation Vita Pets,6.3,Spiral House,SCEA,"PlayStation Vita Pets (Europe) (En,Fr,De,Es).vpk",1.6 GiB,46.7 GiB 57 | Lemmings Touch,6.3,D3T,SCEA,,, 58 | Orgarhythm,6.2,Neilo,XSEED Games,,, 59 | ModNation Racers: Road Trip,6.2,SCEA,SCEA,ModNation Racers - Road Trip (USA).vpk,1.5 GiB,48.2 GiB 60 | The Hungry Horde,6.1,Nosebleed Interactive,SCEA,,, 61 | Senran Kagura: Bon Appetit!,6.1,Meteorise,XSEED Games,Senran Kagura Shinovi Versus (USA).vpk,1.9 GiB,50.1 GiB 62 | Ecolibrium,6.1,SCEE,SCEA,,, 63 | Resistance: Burning Skies,6.0,Nihilistic,SCEA,"Resistance - Burning Skies (France) (Fr,De,It).vpk",2.9 GiB,53.0 GiB 64 | Phineas and Ferb: Day of Doofenshmirtz,6.0,Virtual Toys,SCEA,"Phineas and Ferb - Day of Doofenshmirtz (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",861.4 MiB,53.9 GiB 65 | Silent Hill: Book of Memories,5.8,WayForward,Konami,"Silent Hill - Book of Memories (Europe) (En,Fr,De,Es,It).vpk",1.5 GiB,55.4 GiB 66 | Sumioni: Demon Arts,5.7,Acquire,XSEED Games,,, 67 | Mobile Suit Gundam: Extreme VS-Force,5.7,Bandai Namco Games,Bandai Namco Games,,, 68 | Little Deviants,5.7,Bigbig Studios,SCEA,Little Deviants (USA).vpk,898.4 MiB,56.3 GiB 69 | Army Corps of Hell,5.7,"Entersphere, Inc.",Square Enix,"Army Corps of Hell (Europe) (En,Fr,De,Es,It).vpk",646.4 MiB,56.9 GiB 70 | Table Top Tanks,5.6,Devils Details,SCEA,,, 71 | Table Mini Golf,5.6,Four Door Lemon,SCEA,,, 72 | MeiQ: Labyrinth of Death,5.6,Compile Heart,Idea Factory,MeiQ - Labyrinth of Death (USA).vpk,1.4 GiB,58.3 GiB 73 | Boss!,5.6,Fair Play Labs,Fair Play Labs,,, 74 | Shinobido 2: Revenge of Zen,5.5,Acquire,Namco Bandai Games,Shinobido 2 - Revenge of Zen (USA).vpk,1.1 GiB,59.4 GiB 75 | A.W.: Phoenix Festa,5.5,Bandai Namco Games,Bandai Namco Games,,, 76 | Reality Fighters,5.4,Novarama,SCEA,,, 77 | Hyperdimension Neptunia PP: Producing Perfection,5.4,Tamsoft,NIS America,Hyperdimension Neptunia PP - Producing Perfection (Europe).vpk,1.2 GiB,60.6 GiB 78 | Asphalt: Injection,4.9,Ubisoft,Ubisoft,"Asphalt - Injection (Europe) (En,Fr,De,Es,It).vpk",537.9 MiB,61.1 GiB 79 | Valhalla Knights 3,4.8,K2,XSEED Games,Valhalla Knights 3 (USA).vpk,899.1 MiB,62.0 GiB 80 | The Muppets: Movie Adventures,4.8,Virtual Toys,SCEA,"Muppets Movie, The - Adventures (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",870.8 MiB,62.9 GiB 81 | Ridge Racer (2012),4.4,Namco Bandai Games,Namco Bandai Games,Ridge Racer (Europe).vpk,797.0 MiB,63.6 GiB 82 | Chronovolt,4.4,Playerthree,Playerthree,,, 83 | Lets Fish! Hooked On,4.1,SIMS,Wired Productions,,, 84 | Drive Girls,3.9,Tamsoft,Aksys Games,Drive Girls (USA).vpk,279.7 MiB,63.9 GiB 85 | Z-Run,3.6,Beatshapers,Beatshapers,,, 86 | Call of Duty: Black Ops Declassified,3.3,Nihilistic,Activision,Call of Duty - Black Ops - Declassified (Europe).vpk,2.2 GiB,66.1 GiB 87 | Die!Die!Die!,3.1,iFun4all,iFun4all,,, 88 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4/Sony - PlayStation.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Gran Turismo,9.6,Polyphony Digital,SCEA,Gran Turismo (USA) (Rev 1).bin,661.5 MiB,661.5 MiB 3 | ISS Pro Evolution,9.4,KCET,Konami,ISS Pro Evolution (USA) (Track 01).bin,206.7 MiB,868.2 MiB 4 | Chrono Cross,9.4,SquareSoft,Square EA,Chrono Cross (USA) (Disc 2).bin,1.4 GiB,2.2 GiB 5 | Vagrant Story,9.2,SquareSoft,Square EA,Vagrant Story (USA).bin,715.9 MiB,2.9 GiB 6 | Medal of Honor (1999),9.2,Dreamworks Interactive,Electronic Arts,Medal of Honor (USA).bin,708.2 MiB,3.6 GiB 7 | Spyro: Year of the Dragon,9.1,Insomniac Games,SCEA,Spyro - Year of the Dragon (USA) (Rev 1).bin,634.0 MiB,4.2 GiB 8 | Crash Bandicoot: Warped,9.1,Naughty Dog,SCEA,Crash Bandicoot - Warped (USA).bin,271.9 MiB,4.5 GiB 9 | Colony Wars,9.1,Psygnosis,Psygnosis,Colony Wars (USA) (Disc 2) (Track 1).bin,1.1 GiB,5.6 GiB 10 | WWF SmackDown! 2: Know Your Role,9.0,Yuke's,THQ,WWF SmackDown! 2 - Know Your Role (USA).bin,711.7 MiB,6.3 GiB 11 | Wipeout 3,8.9,Psygnosis,Psygnosis,WipEout 3 (USA) (Track 01).bin,51.5 MiB,6.3 GiB 12 | Soul Edge,8.9,Namco,Namco,Soul Edge (Japan) (Rev 1).bin,477.2 MiB,6.8 GiB 13 | Final Fantasy Chronicles,8.9,TOSE,Square EA,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,7.3 GiB 14 | Einhander,8.9,SquareSoft,SCEA,Einhaender (USA).bin,623.2 MiB,8.0 GiB 15 | CTR: Crash Team Racing,8.8,Naughty Dog,SCEA,CTR - Crash Team Racing (USA).bin,577.6 MiB,8.5 GiB 16 | Tenchu: Stealth Assassins,8.7,Acquire,Activision,Tenchu - Stealth Assassins (USA) (Rev 1).bin,660.9 MiB,9.2 GiB 17 | Silent Hill,8.6,KCET,Konami,Silent Hill (USA).bin,587.9 MiB,9.7 GiB 18 | Lunar 2: Eternal Blue,8.6,Game Arts,Working Designs,Lunar 2 - Eternal Blue (Japan) (Disc 3).bin,2.0 GiB,11.7 GiB 19 | Alundra,8.6,Matrix Software,Working Designs,Alundra (USA) (Rev 1).bin,572.5 MiB,12.3 GiB 20 | Xenogears,8.4,SquareSoft,Square EA,Xenogears (USA) (Disc 2).bin,1.3 GiB,13.6 GiB 21 | Fear Effect 2: Retro Helix,8.4,Kronos Digital Entertainment,Eidos Interactive,Fear Effect 2 - Retro Helix (USA) (Disc 4) (Rev 1).bin,2.6 GiB,16.2 GiB 22 | Dead or Alive,8.4,Team Ninja,Tecmo,"Dead or Alive (Japan, Asia) (Track 01).bin",146.0 MiB,16.4 GiB 23 | Dance Dance Revolution Konamix,8.4,Konami,Konami,Dance Dance Revolution Konamix (USA).bin,431.5 MiB,16.8 GiB 24 | Bushido Blade,8.3,Light Weight,SCEA,Bushido Blade (USA).bin,555.3 MiB,17.3 GiB 25 | Ace Combat 2,8.3,Namco,Namco,Ace Combat 2 (USA).bin,553.9 MiB,17.9 GiB 26 | You Don't Know Jack: Mock 2,8.2,Jellyvision,Sierra Entertainment,You Don't Know Jack - Mock 2 (USA).bin,615.5 MiB,18.5 GiB 27 | Suikoden II,8.2,Konami,Konami,Suikoden II (USA).bin,490.1 MiB,19.0 GiB 28 | Parasite Eve,8.1,SquareSoft,Square EA,Parasite Eve (USA) (Disc 2).bin,1.1 GiB,20.0 GiB 29 | Brave Fencer Musashi,8.1,SquareSoft,Square EA,Brave Fencer Musashi (USA) (Track 1).bin,347.9 MiB,20.4 GiB 30 | Star Ocean: The Second Story,8.0,Tri-Ace,SCEA,Star Ocean - The Second Story (USA) (Disc 2).bin,1.2 GiB,21.5 GiB 31 | RC de GO!,8.0,Taito Corporation,Acclaim,RC de Go! (USA) (Track 1).bin,291.8 MiB,21.8 GiB 32 | Incredible Crisis,8.0,Polygon Magic,Titus Software,Incredible Crisis (USA).bin,688.0 MiB,22.5 GiB 33 | Gundam: Battle Assault 2,8.0,Natsume,Bandai,Gundam Battle Assault 2 (USA) (Track 1).bin,232.5 MiB,22.7 GiB 34 | Final Fantasy Anthology,8.0,SquareSoft,Square EA,"Final Fantasy V (Japan, Asia).bin",282.4 MiB,23.0 GiB 35 | Parasite Eve II,7.9,SquareSoft,Square EA,"Parasite Eve II (USA, Canada) (Disc 2).bin",1.1 GiB,24.1 GiB 36 | Final Fantasy Origins,7.9,TOSE,Square Enix,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,24.7 GiB 37 | Bomberman Party Edition,7.9,Metro,Vatical Entertainment,Bomberman - Party Edition (USA).bin,630.2 MiB,25.3 GiB 38 | Point Blank 3,7.8,TOSE,Namco,Point Blank 3 (USA).bin,120.2 MiB,25.4 GiB 39 | MLB 2003,7.8,989 Sports,SCEA,MLB 2003 (USA).bin,523.8 MiB,25.9 GiB 40 | Arc the Lad Collection,7.8,ARC Entertainment,Working Designs,Arc the Lad Collection - Arc the Lad (USA).bin,598.7 MiB,26.5 GiB 41 | Tenchu 2: Birth of the Stealth Assassins,7.7,Acquire,Activision,Tenchu 2 - Birth of the Stealth Assassins (USA).bin,709.6 MiB,27.2 GiB 42 | Star Trek: Invasion,7.6,Warthog,Activision,Star Trek - Invasion (USA).bin,648.2 MiB,27.8 GiB 43 | MLB 2002,7.6,989 Sports,SCEA,MLB 2002 (USA).bin,605.1 MiB,28.4 GiB 44 | Elemental Gearbolt,7.6,Alfa System,Working Designs,Elemental Gearbolt (USA).bin,508.3 MiB,28.9 GiB 45 | Disney/Pixar Toy Story Racer,7.6,Traveller's Tales,Activision,Disney-Pixar Toy Story Racer (USA).bin,247.2 MiB,29.2 GiB 46 | Spider-Man 2: Enter: Electro,7.4,Vicarious Visions,Activision,Spider-Man 2 - Enter - Electro (USA) (Rev 1).bin,684.2 MiB,29.8 GiB 47 | Dance Dance Revolution Disney Mix,7.4,Konami,Konami,Dance Dance Revolution - Disney Mix (USA).bin,239.7 MiB,30.1 GiB 48 | Saiyuki: Journey West,7.3,Koei,Koei,Saiyuki - Journey West (USA).bin,498.0 MiB,30.5 GiB 49 | Disney's Atlantis: The Lost Empire (2001),7.3,Eurocom,SCEA,Disney's Atlantis - The Lost Empire (USA) (Track 1).bin,325.2 MiB,30.9 GiB 50 | X-Men: Mutant Academy 2,7.2,Paradox Development,Activision,X-Men - Mutant Academy 2 (USA) (Track 01).bin,419.5 MiB,31.3 GiB 51 | RC Revenge,7.2,Acclaim Studios Cheltenham,Acclaim,RC Revenge (USA) (Track 1).bin,461.6 MiB,31.7 GiB 52 | Time Crisis: Project Titan,7.1,Flying Tiger Development,Namco,Time Crisis - Project Titan (USA) (Track 01).bin,37.9 MiB,31.8 GiB 53 | NCAA March Madness 2001,7.1,Black Ops Entertainment,EA Sports,NCAA March Madness 2001 (USA).bin,597.8 MiB,32.3 GiB 54 | Looney Tunes Racing,7.1,Circus Freak,Infogrames,"Looney Tunes Racing (USA) (En,Fr,Es).bin",433.8 MiB,32.8 GiB 55 | Thunder Force V,7.0,TechnoSoft,Working Designs,Thunderstrike 2 (USA) (Track 01).bin,72.4 MiB,32.8 GiB 56 | Super Shot Soccer,7.0,Tecmo,Tecmo,Super Shot Soccer (USA) (Track 1).bin,317.9 MiB,33.1 GiB 57 | MTV Sports: Pure Ride,7.0,Radical Entertainment,THQ,MTV Sports - Pure Ride (USA) (Track 1).bin,388.0 MiB,33.5 GiB 58 | ESPN MLS GameNight,7.0,Saffire,Konami,ESPN MLS Gamenight (USA) (Track 01).bin,184.0 MiB,33.7 GiB 59 | Delta Force: Urban Warfare,7.0,Rebellion,NovaLogic,"Delta Force Urban Warfare (USA) (En,Fr,Es).bin",261.8 MiB,34.0 GiB 60 | Championship Motocross 2001 Featuring Ricky Carmichael,7.0,Funcom,THQ,Championship Motocross 2001 featuring Ricky Carmichael (USA).bin,388.1 MiB,34.3 GiB 61 | Strider 2,6.9,Use,Capcom,Strider 2 (USA).bin,437.8 MiB,34.8 GiB 62 | Silhouette Mirage: Reprogrammed Hope,6.9,Treasure,Working Designs,Silhouette Mirage - Reprogrammed Hope (Japan) (Track 01).bin,171.0 MiB,34.9 GiB 63 | Inuyasha: A Feudal Fairy Tale,6.9,Dimps Corporation,Bandai,Inuyasha - A Feudal Fairy Tale (USA) (Rev 1).bin,635.7 MiB,35.6 GiB 64 | Destruction Derby Raw,6.9,Studio 33,Midway,Destruction Derby Raw (USA) (Track 01).bin,262.4 MiB,35.8 GiB 65 | Castlevania Chronicles,6.9,Konami,Konami,Castlevania Chronicles (USA).bin,503.8 MiB,36.3 GiB 66 | Crash Bash,6.8,Eurocom,SCEA,Crash Bash (USA).bin,170.0 MiB,36.5 GiB 67 | Dave Mirra Freestyle BMX: Maximum Remix,6.7,"Z-Axis, Ltd.",Acclaim,Dave Mirra Freestyle BMX - Maximum Remix (USA) (Track 1).bin,285.8 MiB,36.7 GiB 68 | Torneko: The Last Hope,6.6,Matrix Software,Enix Corporation,World of Dragon Warrior - Torneko - The Last Hope (USA) (Track 1).bin,556.4 MiB,37.3 GiB 69 | Bust A Groove 2,6.6,Metro,Enix Corporation,Bust A Groove 2 (USA).bin,584.0 MiB,37.9 GiB 70 | Surf Riders,6.4,ACOT,Ubisoft,Surf Riders (USA) (Track 01).bin,106.9 MiB,38.0 GiB 71 | Digimon Rumble Arena,6.4,Bandai,Bandai,Digimon Rumble Arena (USA).bin,254.5 MiB,38.2 GiB 72 | C-12: Final Resistance,6.3,SCE Studio Cambridge,SCEA,C-12 - Final Resistance (USA) (Track 1).bin,432.4 MiB,38.6 GiB 73 | Vanguard Bandits,6.2,S-Neo,Working Designs,Vanguard Bandits (USA).bin,544.5 MiB,39.2 GiB 74 | Rayman Rush,6.2,Ubisoft Shanghai,Ubisoft,Rayman Rush (USA).bin,483.5 MiB,39.6 GiB 75 | One Piece Mansion,6.2,Capcom,Capcom,One Piece Mansion (USA).bin,415.7 MiB,40.0 GiB 76 | Hoshigami: Ruining Blue Earth,6.2,Max Five,Atlus,Hoshigami - Ruining Blue Earth (USA) (Track 1).bin,529.8 MiB,40.6 GiB 77 | Driver 2,6.2,Reflections Interactive,Infogrames,Driver 2 (USA) (Disc 2) (Rev 1).bin,1.2 GiB,41.7 GiB 78 | Dexter's Laboratory: Mandark's Lab?,6.2,Red Lemon Studios,Bam Entertainment,Dexter's Laboratory - Mandark's Lab (USA) (Track 1).bin,245.6 MiB,42.0 GiB 79 | Gundam: Battle Assault,6.1,Natsume,Bandai,Gundam Battle Assault (USA) (Track 01).bin,14.3 MiB,42.0 GiB 80 | Alien Resurrection,6.1,Argonaut Games,Fox Interactive,Alien Resurrection (USA) (Track 1).bin,257.5 MiB,42.2 GiB 81 | Speedball 2100,6.0,The Bitmap Brothers,Take-Two Interactive,Speedball 2100 (USA) (Track 01).bin,68.3 MiB,42.3 GiB 82 | Men in Black - The Series: Crashdown,5.9,Runecraft,Infogrames,Men in Black - The Series - Crashdown (USA).bin,633.9 MiB,42.9 GiB 83 | Yu-Gi-Oh! Forbidden Memories,5.7,KCEJ,Konami,Yu-Gi-Oh! Forbidden Memories (USA).bin,493.9 MiB,43.4 GiB 84 | Dragon Valor,5.7,Namco,Namco,Dragon Valor (USA) (Disc 2) (Track 1).bin,1.2 GiB,44.6 GiB 85 | Gunfighter: The Legend of Jesse James,5.5,Rebellion,Ubisoft,Gunfighter - The Legend of Jesse James (USA).bin,181.8 MiB,44.7 GiB 86 | Disney's Lilo & Stitch,5.4,Blitz Games,SCEA,Disney's Lilo & Stitch (USA).bin,497.1 MiB,45.2 GiB 87 | The Dukes of Hazzard II: Daisy Dukes It Out,5.3,Sinister Games,SouthPeak Games,"Dukes of Hazzard II, The - Daisy Dukes It Out (USA).bin",667.5 MiB,45.9 GiB 88 | NBA ShootOut 2002,5.3,Killer Game,SCEA,NBA ShootOut 2002 (USA) (Track 1).bin,282.6 MiB,46.2 GiB 89 | Hot Wheels Extreme Racing,5.3,Atod,THQ,Hot Wheels - Extreme Racing (USA) (Track 01).bin,68.8 MiB,46.2 GiB 90 | Smurf Racer!,5.2,Artificial Mind and Movement,Infogrames,"Smurf Racer! (USA) (En,Fr,Es).bin",238.9 MiB,46.5 GiB 91 | Twisted Metal: Small Brawl,5.1,Incognito Inc.,SCEA,Twisted Metal - Small Brawl (USA).bin,312.9 MiB,46.8 GiB 92 | Digimon Digital Card Battle,5.1,Bec,Bandai,Digimon Digital Card Battle (Europe).bin,205.8 MiB,47.0 GiB 93 | Blade (2000),5.1,Hammerhead,Activision,Blade (USA).bin,596.0 MiB,47.5 GiB 94 | Action Bass,5.1,Vingt-et-un Systems,Take-Two Interactive,Action Bass (USA).bin,163.9 MiB,47.7 GiB 95 | 007 Racing,5.1,Eutechnyx,Electronic Arts,007 Racing (USA).bin,538.8 MiB,48.2 GiB 96 | Runabout 2,4.9,Climax Entertainment,Hot-B,Runabout 2 (USA) (Track 1).bin,308.9 MiB,48.5 GiB 97 | Clock Tower II: The Struggle Within,4.9,Human Entertainment,Agetec,Clock Tower II - The Struggle Within (USA).bin,409.1 MiB,48.9 GiB 98 | Spec Ops: Ranger Elite,4.8,Runecraft,Take-Two Interactive,Spec Ops - Ranger Elite (USA).bin,185.5 MiB,49.1 GiB 99 | Freestyle Motocross: McGrath Vs. Pastrana,4.8,"Z-Axis, Ltd.",Acclaim,Freestyle Motocross - McGrath vs. Pastrana (USA) (Track 1).bin,157.8 MiB,49.3 GiB 100 | MTV Sports: T.J. Lavin's Ultimate BMX,4.7,Blue Shift,THQ,MTV Sports - T.J. Lavin's Ultimate BMX (USA).bin,568.0 MiB,49.8 GiB 101 | Digimon World 3,4.7,Boom,Bandai,Digimon World 3 (USA).bin,617.5 MiB,50.4 GiB 102 | Danger Girl,4.3,n-Space,THQ,Danger Girl (USA).bin,650.8 MiB,51.1 GiB 103 | Creatures,4.3,Creature Labs,Conspiracy Entertainment,Creatures (USA).bin,462.4 MiB,51.5 GiB 104 | Digimon World 2,4.2,Bec,Bandai,Digimon World 2 (USA).bin,440.6 MiB,51.9 GiB 105 | All-Star Slammin' D-Ball,4.2,Access,Agetec,All-Star Slammin' D-Ball (USA).bin,204.6 MiB,52.1 GiB 106 | Countdown Vampires,4.1,K2 LLC,Bandai,Countdown Vampires (USA) (Disc 2).bin,1.1 GiB,53.2 GiB 107 | Duke Nukem: Land of the Babes,3.7,n-Space,Infogrames,Duke Nukem - Land of the Babes (USA).bin,675.0 MiB,53.9 GiB 108 | "Army Men: World War - Land, Sea, Air",3.5,3DO,3DO,"Army Men - World War - Land, Sea, Air (USA).bin",265.0 MiB,54.1 GiB 109 | The Simpsons Wrestling,3.2,Big Ape Productions,Activision,"Simpsons Wrestling, The (USA).bin",483.4 MiB,54.6 GiB 110 | Disney's The Lion King: Simba's Mighty Adventure,3.0,Paradox Development,Activision,Disney's The Lion King - Simba's Mighty Adventure (USA) (Track 1).bin,568.4 MiB,55.2 GiB 111 | Animorphs: Shattered Reality,2.7,SingleTrac,Infogrames,Animorphs - Shattered Reality (USA) (Track 1).bin,255.2 MiB,55.4 GiB 112 | HBO Boxing,2.6,Osiris Studios,Acclaim,HBO Boxing (USA) (Track 1).bin,395.6 MiB,55.8 GiB 113 | Dragon Ball Z: Ultimate Battle 22,2.5,TOSE,Infogrames,Dragon Ball Z - Ultimate Battle 22 (USA).bin,320.8 MiB,56.1 GiB 114 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4_user_10/Nintendo - GameCube.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: The Wind Waker,9.6,Nintendo,Nintendo,"Legend of Zelda, The - The Wind Waker (USA).iso",1.4 GiB,1.4 GiB 3 | The Legend of Zelda Collector's Edition,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Collector's Edition (USA).iso",1.4 GiB,2.7 GiB 4 | P.N. 03,9.3,Capcom,Capcom,P.N. 03 (USA).iso,1.4 GiB,4.1 GiB 5 | Super Smash Bros. Melee,9.2,HAL Labs,Nintendo,"Super Smash Bros. Melee (USA) (En,Ja) (Rev 2).iso",1.4 GiB,5.4 GiB 6 | Super Mario Sunshine,9.2,Nintendo,Nintendo,Super Mario Sunshine (USA).iso,1.4 GiB,6.8 GiB 7 | Eternal Darkness: Sanity's Requiem,9.2,Silicon Knights,Nintendo,Eternal Darkness - Sanity's Requiem (USA).iso,1.4 GiB,8.2 GiB 8 | The Legend of Zelda: Ocarina of Time / Master Quest,9.1,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time & Master Quest (USA).iso",1.4 GiB,9.5 GiB 9 | Fire Emblem: Path of Radiance,9.1,Intelligent Systems,Nintendo,Fire Emblem - Path of Radiance (USA).iso,1.4 GiB,10.9 GiB 10 | Star Wars Rogue Leader: Rogue Squadron II,9.0,Factor 5,LucasArts,Star Wars - Rogue Squadron II - Rogue Leader (USA).iso,1.4 GiB,12.2 GiB 11 | Paper Mario: The Thousand-Year Door (2004),9.0,Intelligent Systems,Nintendo,Paper Mario - The Thousand-Year Door (USA).iso,1.4 GiB,13.6 GiB 12 | Final Fantasy Crystal Chronicles,8.9,Square Enix,Nintendo,Final Fantasy Crystal Chronicles (USA).iso,1.4 GiB,15.0 GiB 13 | F-Zero GX,8.9,Amusement Vision,Nintendo,F-Zero GX (USA).iso,1.4 GiB,16.3 GiB 14 | Metal Gear Solid: The Twin Snakes,8.8,Silicon Knights,Konami,Metal Gear Solid - The Twin Snakes (USA) (Disc 2).iso,2.7 GiB,19.0 GiB 15 | Mario Kart: Double Dash!!,8.7,Nintendo,Nintendo,Mario Kart - Double Dash!! (USA).iso,1.4 GiB,20.4 GiB 16 | Animal Crossing,8.7,Nintendo,Nintendo,Animal Crossing (USA).iso,1.4 GiB,21.8 GiB 17 | The Legend of Zelda: Four Swords Adventures,8.6,Nintendo,Nintendo,"Legend of Zelda, The - Four Swords Adventures (USA).iso",1.4 GiB,23.1 GiB 18 | Super Mario Strikers,8.6,Next Level Games,Nintendo,Super Mario Strikers (USA).iso,1.4 GiB,24.5 GiB 19 | Gotcha Force,8.6,Capcom,Capcom,Gotcha Force (USA).iso,1.4 GiB,25.8 GiB 20 | Bomberman Generation,8.5,Hudson,Majesco,Bomberman Generation (USA) (Rev 1).iso,1.4 GiB,27.2 GiB 21 | Sonic Mega Collection (2002),8.3,Sonic Team,Sega,Sonic Mega Collection (USA).iso,1.4 GiB,28.6 GiB 22 | Mario Superstar Baseball,8.3,Namco,Nintendo,Mario Superstar Baseball (USA).iso,1.4 GiB,29.9 GiB 23 | WWE WrestleMania XIX,8.2,Yuke's,THQ,WWE WrestleMania XIX (USA).iso,1.4 GiB,31.3 GiB 24 | Star Fox Adventures,8.2,Rare Ltd.,Nintendo,Star Fox Adventures (USA) (Rev 1).iso,1.4 GiB,32.6 GiB 25 | Shrek Extra Large,8.2,Digital Illusions,TDK Mediactive,Shrek Extra Large (USA).iso,1.4 GiB,34.0 GiB 26 | Mario Golf: Toadstool Tour,8.2,Camelot Software Planning,Nintendo,Mario Golf - Toadstool Tour (USA).iso,1.4 GiB,35.4 GiB 27 | Lost Kingdoms,8.2,From Software,Activision,Lost Kingdoms (USA).iso,1.4 GiB,36.7 GiB 28 | Baten Kaitos: Eternal Wings and the Lost Ocean,8.2,Monolith Soft,Namco,Baten Kaitos - Eternal Wings and the Lost Ocean (USA) (Disc 2).iso,2.7 GiB,39.4 GiB 29 | Star Fox: Assault,8.1,Namco,Nintendo,Star Fox - Assault (USA).iso,1.4 GiB,40.8 GiB 30 | Pokemon XD: Gale of Darkness,8.1,Genius Sonority Inc.,Nintendo,Pokemon XD - Gale of Darkness (USA).iso,1.4 GiB,42.2 GiB 31 | Pokemon Colosseum,8.1,Genius Sonority Inc.,Nintendo,Pokemon Colosseum (USA).iso,1.4 GiB,43.5 GiB 32 | Lost Kingdoms II,8.1,From Software,Activision,Lost Kingdoms II (USA).iso,1.4 GiB,44.9 GiB 33 | Kirby Air Ride,8.1,HAL Labs,Nintendo,Kirby Air Ride (USA).iso,1.4 GiB,46.2 GiB 34 | Wave Race: Blue Storm,8.0,Nintendo Software Technology,Nintendo,Wave Race - Blue Storm (USA).iso,1.4 GiB,47.6 GiB 35 | Mario Party 6,8.0,Hudson Soft,Nintendo,Mario Party 6 (USA).iso,1.4 GiB,48.9 GiB 36 | WWE Day of Reckoning 2,7.9,Yuke's,THQ,WWE Day of Reckoning 2 (USA).iso,1.4 GiB,50.3 GiB 37 | WWE Day of Reckoning,7.9,Yuke's,THQ,WWE Day of Reckoning (USA) (Rev 1).iso,1.4 GiB,51.7 GiB 38 | Wario World,7.9,Treasure,Nintendo,Wario World (USA).iso,1.4 GiB,53.0 GiB 39 | Smuggler's Run: Warzones,7.9,Angel Studios,Rockstar Games,Smuggler's Run - Warzones (USA).iso,1.4 GiB,54.4 GiB 40 | Battalion Wars,7.9,Kuju Entertainment,Nintendo,Battalion Wars (USA).iso,1.4 GiB,55.7 GiB 41 | Pac-Man vs.,7.8,Namco,Namco,Pac-Man Vs. (USA).iso,1.4 GiB,57.1 GiB 42 | Mario Party 7,7.8,Hudson,Nintendo,Mario Party 7 (USA) (Rev 1).iso,1.4 GiB,58.5 GiB 43 | Knockout Kings 2003,7.8,EA Sports,Electronic Arts,Knockout Kings 2003 (USA).iso,1.4 GiB,59.8 GiB 44 | Beach Spikers: Virtua Beach Volleyball,7.8,Sega AM2,Sega,Beach Spikers - Virtua Beach Volleyball (USA).iso,1.4 GiB,61.2 GiB 45 | Ultimate Muscle: Legends vs New Generation,7.7,Aki Corp.,Bandai,Ultimate Muscle - Legends vs. New Generation (USA).iso,1.4 GiB,62.5 GiB 46 | Star Wars Rogue Squadron III: Rebel Strike,7.7,Factor 5,LucasArts,"Star Wars - Rogue Squadron III - Rebel Strike (USA) (En,Fr,De,Es,It).iso",1.4 GiB,63.9 GiB 47 | Mario Party 5,7.7,Hudson,Nintendo,Mario Party 5 (USA).iso,1.4 GiB,65.3 GiB 48 | Mario Party 4,7.7,Hudson,Nintendo,Mario Party 4 (USA) (Rev 1).iso,1.4 GiB,66.6 GiB 49 | Custom Robo,7.7,Noise Inc.,Nintendo,Custom Robo (USA).iso,1.4 GiB,68.0 GiB 50 | 1080: Avalanche,7.7,Nintendo,Nintendo,1080 Avalanche (USA).iso,1.4 GiB,69.3 GiB 51 | "WarioWare, Inc.: Mega Party Game$!",7.6,Nintendo,Nintendo,"WarioWare, Inc. - Mega Party Game$! (USA).iso",1.4 GiB,70.7 GiB 52 | Naruto: Clash of Ninja 2,7.6,Eighting,Tomy Corporation,Naruto - Clash of Ninja 2 (USA).iso,1.4 GiB,72.1 GiB 53 | Donkey Konga,7.6,Namco,Nintendo,Donkey Konga (USA).iso,1.4 GiB,73.4 GiB 54 | Dance Dance Revolution: Mario Mix,7.6,Konami,Nintendo,Dance Dance Revolution - Mario Mix (USA) (Rev 1).iso,1.4 GiB,74.8 GiB 55 | Phantasy Star Online Episode III: C.A.R.D. Revolution,7.5,Sonic Team,Sega,"Phantasy Star Online Episode III - C.A.R.D. Revolution (USA) (En,Ja).iso",1.4 GiB,76.1 GiB 56 | Geist (2005),7.4,n-Space,Nintendo,Geist (USA).iso,1.4 GiB,77.5 GiB 57 | Swingerz Golf,7.2,Telenet,Eidos Interactive,Swingerz Golf (USA).iso,1.4 GiB,78.9 GiB 58 | Summoner: A Goddess Reborn,7.2,Cranky Pants Games,THQ,Summoner - A Goddess Reborn (USA).iso,1.4 GiB,80.2 GiB 59 | Naruto: Clash of Ninja,7.2,Eighting,Tomy Corporation,Naruto - Clash of Ninja (USA).iso,1.4 GiB,81.6 GiB 60 | NBA Courtside 2002,7.1,Left Field Productions,Nintendo,NBA Courtside 2002 (USA).iso,1.4 GiB,82.9 GiB 61 | Disney's Magical Mirror Starring Mickey Mouse,7.1,Capcom,Nintendo,Disney's Magical Mirror Starring Mickey Mouse (USA).iso,1.4 GiB,84.3 GiB 62 | Yu-Gi-Oh! The Falsebound Kingdom,7.0,Konami,Konami,Yu-Gi-Oh! The Falsebound Kingdom (USA).iso,1.4 GiB,85.7 GiB 63 | Harvest Moon: Another Wonderful Life,7.0,TOSE,Natsume,Harvest Moon - Another Wonderful Life (USA).iso,1.4 GiB,87.0 GiB 64 | Donkey Konga 2,6.9,Namco,Nintendo,Donkey Konga 2 (USA).iso,1.4 GiB,88.4 GiB 65 | TransWorld Surf: Next Wave,6.8,Angel Studios,Atari SA,TransWorld Surf - Next Wave (USA).iso,1.4 GiB,89.7 GiB 66 | Phantasy Star Online Episode I & II Plus,6.7,Sonic Team,Sega,"Phantasy Star Online Episode I & II Plus (Japan) (En,Ja,Fr,De,Es) (Rev 5).iso",1.4 GiB,91.1 GiB 67 | Go! Go! Hypergrind,6.7,Poponchi,Atlus,Go! Go! Hypergrind (USA).iso,1.4 GiB,92.5 GiB 68 | Home Run King,6.6,Wow Entertainment,Sega,Home Run King (USA).iso,1.4 GiB,93.8 GiB 69 | Mega Man Network Transmission,6.5,Arika,Capcom,Mega Man Network Transmission (USA).iso,1.4 GiB,95.2 GiB 70 | WWE WrestleMania X8,6.4,Yuke's,THQ,WWE WrestleMania X8 (USA).iso,1.4 GiB,96.5 GiB 71 | Pro Rally,6.4,Ubisoft,Ubisoft,"Pro Rally 2002 (USA) (En,Fr,Es).iso",1.4 GiB,97.9 GiB 72 | Evolution Worlds,6.3,Sting,Ubisoft,Evolution Worlds (USA).iso,1.4 GiB,99.3 GiB 73 | "Disney/Pixar Monsters, Inc. Scream Arena",6.3,Radical Entertainment,THQ,"Disney-Pixar Monsters, Inc. - Scream Arena (USA).iso",1.4 GiB,100.6 GiB 74 | Tube Slider,6.2,Nd Cube,NEC Interchannel,,, 75 | Odama,6.2,Vivarium,Nintendo,Odama (USA) (Rev 1).iso,1.4 GiB,102.0 GiB 76 | Pokemon Channel,6.1,Ambrella,Nintendo,Pokemon Channel (USA).iso,1.4 GiB,103.3 GiB 77 | Rave Master,6.0,Konami,Konami,Rave Master (USA).iso,1.4 GiB,104.7 GiB 78 | Amazing Island,5.9,Hitmaker,Sega,Amazing Island (USA).iso,1.4 GiB,106.1 GiB 79 | Virtua Striker 2002,5.8,Amusement Vision,Sega,Virtua Striker 2002 (USA).iso,1.4 GiB,107.4 GiB 80 | Big Air Freestyle,5.6,Paradigm Entertainment,Infogrames,Big Air Freestyle (USA).iso,1.4 GiB,108.8 GiB 81 | Bust-A-Move 3000,5.3,Taito Corporation,Ubisoft,Bust-A-Move 3000 (USA).iso,1.4 GiB,110.1 GiB 82 | Medabots: Infinity,5.1,Natsume,Natsume,Medabots Infinity (USA) (Rev 1).iso,1.4 GiB,111.5 GiB 83 | Disney's Hide & Sneak,4.8,Capcom,Capcom,Disney's Hide & Sneak (USA) (Rev 1).iso,1.4 GiB,112.9 GiB 84 | MC Groovz Dance Craze,4.2,Mad Catz,Mad Catz,MC Groovz Dance Craze (USA).iso,1.4 GiB,114.2 GiB 85 | Universal Studios Theme Parks Adventure,3.9,Nai'a Digital Works,Kemco,Universal Studios Theme Park Adventure (USA).iso,1.4 GiB,115.6 GiB 86 | BeyBlade VForce: Super Tournament Battle,3.3,AI,Atari SA,Beyblade VForce - Super Tournament Battle (USA).iso,1.4 GiB,116.9 GiB 87 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4_user_10/Nintendo - Nintendo 64.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | The Legend of Zelda: Ocarina of Time,9.9,Nintendo,Nintendo,"Legend of Zelda, The - Ocarina of Time (USA) (Rev 2).z64",32.0 MiB,32.0 MiB 3 | The Legend of Zelda: Majora's Mask,9.5,Nintendo,Nintendo,"Legend of Zelda, The - Majora's Mask (USA) (GameCube Edition).z64",32.0 MiB,64.0 MiB 4 | Paper Mario,9.3,Intelligent Systems,Nintendo,Paper Mario (USA).z64,40.0 MiB,104.0 MiB 5 | Buck Bumble,9.3,Argonaut Games,Ubisoft,Buck Bumble (USA).z64,12.0 MiB,116.0 MiB 6 | Wave Race 64,9.2,Nintendo,Nintendo,Stunt Racer 64 (USA).z64,12.0 MiB,128.0 MiB 7 | Conker's Bad Fur Day,9.2,Rare Ltd.,Rare Ltd.,Conker's Bad Fur Day (USA).z64,64.0 MiB,192.0 MiB 8 | Mario Tennis,9.1,Camelot Software Planning,Nintendo,Mario Tennis (USA).z64,16.0 MiB,208.0 MiB 9 | Mario Golf,9.1,Camelot Software Planning,Nintendo,Mario Golf (USA).z64,32.0 MiB,240.0 MiB 10 | International Superstar Soccer '98,9.1,KCEO,Konami,International Superstar Soccer '98 (USA).z64,12.0 MiB,252.0 MiB 11 | Donkey Kong 64,9.0,Rare Ltd.,Nintendo,Donkey Kong 64 (USA).z64,32.0 MiB,284.0 MiB 12 | Blast Corps,9.0,Rare Ltd.,Nintendo,Blast Corps (USA) (Rev 1).z64,8.0 MiB,292.0 MiB 13 | Beetle Adventure Racing,9.0,Paradigm Entertainment,EA Sports,"Beetle Adventure Racing! (USA) (En,Fr,De).z64",16.0 MiB,308.0 MiB 14 | WWF No Mercy,8.9,Aki Corp.,THQ,WWF No Mercy (USA) (Rev 1).z64,32.0 MiB,340.0 MiB 15 | Star Fox 64,8.8,Nintendo,Nintendo,Star Fox 64 (USA) (Rev 1).z64,12.0 MiB,352.0 MiB 16 | Excitebike 64,8.8,Left Field Productions,Nintendo,Excitebike 64 (USA) (Rev 1).z64,16.0 MiB,368.0 MiB 17 | Diddy Kong Racing,8.8,Rare Ltd.,Rare Ltd.,"Diddy Kong Racing (USA) (En,Fr) (Rev 1).z64",12.0 MiB,380.0 MiB 18 | Jet Force Gemini,8.7,Rare Ltd.,Rare Ltd.,Jet Force Gemini (USA).z64,32.0 MiB,412.0 MiB 19 | F-Zero X,8.7,Nintendo,Nintendo,F-Zero X (USA).z64,16.0 MiB,428.0 MiB 20 | Super Smash Bros.,8.6,HAL Labs,Nintendo,Super Smash Bros. (USA).z64,16.0 MiB,444.0 MiB 21 | Mario Party 2,8.6,Hudson,Nintendo,Mario Party 2 (USA).z64,32.0 MiB,476.0 MiB 22 | World Driver Championship,8.5,Boss Game Studios,Midway,World Driver Championship (USA).z64,16.0 MiB,492.0 MiB 23 | Mario Kart 64,8.5,Nintendo,Nintendo,Mario Kart 64 (USA).z64,12.0 MiB,504.0 MiB 24 | Wipeout 64,8.4,Psygnosis,Midway,Wipeout 64 (USA).z64,8.0 MiB,512.0 MiB 25 | Mystical Ninja starring Goemon,8.3,KCEO,Konami,Mystical Ninja Starring Goemon (USA).z64,16.0 MiB,528.0 MiB 26 | Harvest Moon 64,8.3,Victor Interactive Software,Natsume,Harvest Moon 64 (USA).z64,16.0 MiB,544.0 MiB 27 | Ridge Racer 64,8.2,Nintendo Software Technology,Nintendo,RR64 - Ridge Racer 64 (USA).z64,32.0 MiB,576.0 MiB 28 | Pokemon Stadium 2,8.2,HAL Labs,Nintendo,Pokemon Stadium 2 (USA).z64,64.0 MiB,640.0 MiB 29 | Ogre Battle 64: Person of Lordly Caliber,8.2,Quest,Atlus,Ogre Battle 64 - Person of Lordly Caliber (USA) (Rev 1).z64,40.0 MiB,680.0 MiB 30 | Mario Party 3,8.2,Hudson,Nintendo,Mario Party 3 (USA).z64,32.0 MiB,712.0 MiB 31 | Kirby 64: The Crystal Shards,8.2,HAL Labs,Nintendo,Kirby 64 - The Crystal Shards (USA).z64,32.0 MiB,744.0 MiB 32 | Extreme-G,8.2,Probe Entertainment Limited,Acclaim,Extreme-G (USA).z64,8.0 MiB,752.0 MiB 33 | Pokemon Puzzle League,8.1,Nintendo Software Technology,Nintendo,Pokemon Puzzle League (USA).z64,32.0 MiB,784.0 MiB 34 | Body Harvest,8.1,DMA Design,Midway,Body Harvest (USA).z64,12.0 MiB,796.0 MiB 35 | StarCraft 64,8.0,Mass Media,Nintendo,StarCraft 64 (USA).z64,32.0 MiB,828.0 MiB 36 | Pilotwings 64,8.0,Nintendo,Nintendo,Pilotwings 64 (USA).z64,8.0 MiB,836.0 MiB 37 | Mario Party,8.0,Hudson,Nintendo,Mario Party (USA).z64,32.0 MiB,868.0 MiB 38 | Castlevania (1998),7.8,KCEK,Konami,Castlevania (USA) (Rev 2).z64,12.0 MiB,880.0 MiB 39 | Turok 3: Shadow of Oblivion (2000),7.7,Acclaim Studios Austin,Acclaim,Turok 3 - Shadow of Oblivion (USA).z64,32.0 MiB,912.0 MiB 40 | Pokemon Snap,7.7,HAL Labs,Nintendo,Pokemon Snap (USA).z64,16.0 MiB,928.0 MiB 41 | Mickey's Speedway USA,7.5,Rare Ltd.,Nintendo,Mickey's Speedway USA (USA).z64,32.0 MiB,960.0 MiB 42 | Hercules: The Legendary Journeys,7.3,Player 1,Titus Software,Hercules - The Legendary Journeys (USA).z64,16.0 MiB,976.0 MiB 43 | Yoshi's Story,7.2,Nintendo,Nintendo,"Yoshi's Story (USA) (En,Ja).z64",16.0 MiB,992.0 MiB 44 | Aidyn Chronicles: The First Mage,7.2,H2O Interactive,THQ,Aidyn Chronicles - The First Mage (USA) (Rev 1).z64,32.0 MiB,1.0 GiB 45 | Dr. Mario 64,7.1,Newcom,Nintendo,Dr. Mario 64 (USA).z64,4.0 MiB,1.0 GiB 46 | 1080: TenEighty Snowboarding,7.0,Nintendo,Nintendo,"1080 Snowboarding (Japan, USA) (En,Ja).z64",16.0 MiB,1.0 GiB 47 | Looney Tunes Duck Dodgers Starring Daffy Duck,6.9,Paradigm Entertainment,Infogrames,"Duck Dodgers Starring Daffy Duck (USA) (En,Fr,Es).z64",16.0 MiB,1.0 GiB 48 | Cruis'n Exotica,6.3,Gratuitous Games,Midway,Cruis'n Exotica (USA).z64,16.0 MiB,1.1 GiB 49 | "Hey You, Pikachu!",5.7,Ambrella,Nintendo,"Hey You, Pikachu! (USA).z64",16.0 MiB,1.1 GiB 50 | Fighter Destiny 2,5.4,Opus,SouthPeak Games,Fighter Destiny 2 (USA).z64,16.0 MiB,1.1 GiB 51 | Scooby-Doo! Classic Creep Capers,5.3,Terraglyph Interactive Studios,THQ,Scooby-Doo! - Classic Creep Capers (USA) (Rev 1).z64,16.0 MiB,1.1 GiB 52 | Rally Challenge 2000,4.1,Genki,SouthPeak Games,Rally Challenge 2000 (USA).z64,12.0 MiB,1.1 GiB 53 | Blues Brothers 2000,3.7,Player 1,Titus Software,Blues Brothers 2000 (USA).z64,16.0 MiB,1.1 GiB 54 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4_user_10/Sega - Dreamcast.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | NFL 2K1,9.7,Visual Concepts,Sega,NFL 2K1 (USA) (Track 5).bin,1.1 GiB,1.1 GiB 3 | Resident Evil Code: Veronica,9.4,NexTech,Capcom,Resident Evil - Code - Veronica (USA) (Disc 2) (Track 3).bin,2.2 GiB,3.3 GiB 4 | NBA 2K1,9.3,Visual Concepts,Sega,NBA 2K1 (USA) (Track 5).bin,832.8 MiB,4.1 GiB 5 | Shenmue,9.0,Sega AM2,Sega,Shenmue (USA) (Disc 3) (Track 6).bin,2.3 GiB,6.4 GiB 6 | Phantasy Star Online,8.9,Sonic Team,Sega,Phantasy Star Online (Japan) (Tentou-you Demo Movie) (Track 3).bin,828.9 MiB,7.2 GiB 7 | Power Stone 2,8.7,Capcom,Capcom,Power Stone 2 (USA) (Track 3).bin,1.1 GiB,8.3 GiB 8 | Metropolis Street Racer,8.7,Bizarre Creations,Sega,MSR - Metropolis Street Racer (USA) (Rev A) (Track 3).bin,1.1 GiB,9.4 GiB 9 | Test Drive V-Rally,8.6,Eden Studios,Infogrames,"Test Drive V-Rally (USA) (En,Fr,De) (Track 10).bin",702.2 MiB,10.1 GiB 10 | Sonic Adventure,8.5,Sonic Team,Sega,"Sonic Adventure (USA) (En,Ja,Fr,De,Es) (Rev A) (Track 3).bin",1.1 GiB,11.2 GiB 11 | F355 Challenge: Passione Rossa,8.5,Sega,Acclaim,F355 Challenge - Passione Rossa (USA) (Track 3).bin,1.1 GiB,12.3 GiB 12 | Street Fighter III: Double Impact,8.4,Capcom,Capcom,Street Fighter III - Double Impact (USA) (Track 3).bin,1.1 GiB,13.4 GiB 13 | Crazy Taxi 2,8.3,Hitmaker,Sega,Crazy Taxi 2 (USA) (Track 3).bin,1.1 GiB,14.5 GiB 14 | Record of Lodoss War,8.1,Neverland,Conspiracy Entertainment,Record of Lodoss War (USA) (Track 5).bin,642.8 MiB,15.1 GiB 15 | Ooga Booga,8.1,Visual Concepts,Sega,Ooga Booga (USA) (Track 3).bin,1.0 GiB,16.1 GiB 16 | Capcom vs. SNK,8.1,Capcom,Capcom,Capcom vs. SNK (USA) (Track 3).bin,1.1 GiB,17.2 GiB 17 | Project Justice,8.0,Capcom,Capcom,Project Justice (USA) (Track 3).bin,1.1 GiB,18.3 GiB 18 | NHL 2K2,8.0,Treyarch,Sega,NHL 2K2 (USA) (Track 5).bin,850.9 MiB,19.2 GiB 19 | Bomberman Online,8.0,h.a.n.d. Inc.,Sega,Bomberman Online (USA) (Track 3).bin,1.1 GiB,20.3 GiB 20 | Tokyo Xtreme Racer 2,7.9,Genki,Crave,Tokyo Xtreme Racer 2 (USA) (Track 3).bin,1.1 GiB,21.4 GiB 21 | Spawn: In the Demon's Hand,7.8,Capcom,Capcom,Spawn - In the Demon's Hand (USA) (Track 3).bin,1.1 GiB,22.5 GiB 22 | NCAA College Football 2K2: Road to the Rose Bowl,7.8,Visual Concepts,Sega,NCAA College Football 2K2 - Road to the Rose Bowl (USA) (Track 5).bin,906.4 MiB,23.4 GiB 23 | Mars Matrix,7.8,Takumi Corporation,Capcom,Mars Matrix (USA) (Track 3).bin,1.1 GiB,24.5 GiB 24 | Speed Devils Online Racing,7.6,Ubisoft Montreal,Ubisoft,Speed Devils - Online Racing (USA) (Track 13).bin,431.4 MiB,24.9 GiB 25 | Sega Smash Pack Volume 1,7.6,Sega,Sega,Sega Smash Pack - Volume 1 (USA) (Track 03).bin,628.8 MiB,25.5 GiB 26 | Sega Bass Fishing 2,7.6,Wow Entertainment,Sega,Sega Bass Fishing 2 (USA) (Track 3).bin,1.1 GiB,26.6 GiB 27 | Alien Front Online,7.6,Sega,Sega,Alien Front Online (USA) (Track 3).bin,960.0 MiB,27.5 GiB 28 | AeroWings 2: Air Strike,7.4,CRI,Crave,AeroWings 2 - Airstrike (USA) (Track 3).bin,1.1 GiB,28.6 GiB 29 | Red Dog: Superior Firepower,7.3,Argonaut Games,Crave,Red Dog - Superior Firepower (USA) (Track 3).bin,1.1 GiB,29.7 GiB 30 | Outtrigger,7.3,Sega AM2,Sega,Outtrigger (USA) (Track 3).bin,1.1 GiB,30.8 GiB 31 | Cannon Spike,7.3,Psikyo,Capcom,Cannon Spike (USA) (Track 3).bin,1.1 GiB,32.0 GiB 32 | Sonic Shuffle,7.1,Sega,Sega,Sonic Shuffle (USA) (Track 3).bin,1.1 GiB,33.1 GiB 33 | Giga Wing 2,7.0,Takumi Corporation,Capcom,GigaWing 2 (USA) (Track 3).bin,1.1 GiB,34.2 GiB 34 | Confidential Mission,7.0,Hitmaker,Sega,Confidential Mission (USA) (Track 3).bin,1.1 GiB,35.3 GiB 35 | Coaster Works,7.0,Bimboosoft,Xicat Interactive,Coaster Works (USA) (Track 03).bin,973.4 MiB,36.2 GiB 36 | World Series Baseball 2K2,6.9,Visual Concepts,Sega,World Series Baseball 2K2 (USA) (Track 5).bin,806.9 MiB,37.0 GiB 37 | D2,6.9,WARP,Sega,D2 (USA) (Disc 4) (Track 3).bin,4.4 GiB,41.4 GiB 38 | Charge 'N Blast,6.8,SIMS,Xicat Interactive,Charge 'N Blast (USA) (Track 3).bin,1.1 GiB,42.5 GiB 39 | The Next Tetris: On-line Edition,6.7,Blue Planet Software,Crave,"Next Tetris, The - On-Line Edition (USA) (Track 03).bin",728.9 MiB,43.2 GiB 40 | Iron Aces,6.7,Marionette,Xicat Interactive,Iron Aces (USA) (Track 3).bin,1.1 GiB,44.3 GiB 41 | WWF Royal Rumble,6.6,Yuke's,THQ,WWF Royal Rumble (USA) (Track 3).bin,1.1 GiB,45.4 GiB 42 | Super Runabout: San Francisco Edition,6.5,Climax Entertainment,Interplay,Super Runabout - San Francisco Edition (USA) (Track 23).bin,345.3 MiB,45.8 GiB 43 | Sports Jam,6.4,Wow Entertainment,Agetec,Sports Jam (USA) (Track 3).bin,1.1 GiB,46.9 GiB 44 | Floigan Bros. Episode 1,6.4,Visual Concepts,Sega,Floigan Bros. - Episode 1 (USA) (Track 3).bin,603.2 MiB,47.5 GiB 45 | Virtua Athlete 2000,6.1,Hitmaker,Agetec,"Virtua Athlete 2000 (USA) (En,Fr,De,Es) (Track 3).bin",1.1 GiB,48.6 GiB 46 | Zombie Revenge,6.0,Sega,Sega,Zombie Revenge (USA) (Track 3).bin,1.1 GiB,49.7 GiB 47 | Heavy Metal: Geomatrix,5.8,Capcom,Capcom,Heavy Metal - Geomatrix (USA) (Track 3).bin,1.1 GiB,50.8 GiB 48 | Surf Rocket Racers,5.5,CRI,Crave,Surf Rocket Racers (USA) (Track 3).bin,1.1 GiB,51.9 GiB 49 | Spec Ops II: Omega Squad,5.0,Runecraft,Ripcord Games,Spec Ops II - Omega Squad (USA) (Track 03).bin,365.2 MiB,52.2 GiB 50 | World Series Baseball 2K1,4.8,Wow Entertainment,Sega,World Series Baseball 2K1 (USA) (Track 3).bin,1.1 GiB,53.3 GiB 51 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4_user_10/Sony - PlayStation Vita.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Tearaway,8.9,Media Molecule,SCEA,Tearaway (USA).vpk,907.6 MiB,907.6 MiB 3 | LittleBigPlanet PS Vita,8.8,Tarsier Studios,SCEA,"LittleBigPlanet PS Vita (Europe) (En,Fr,De,Es,It,Nl,Pt,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,2.5 GiB 4 | Killzone: Mercenary,8.8,Guerilla Cambridge,SCEA,"Killzone - Mercenary (Europe) (En,Fr,De,Es,It,Nl,Pt).vpk",3.3 GiB,5.8 GiB 5 | Gravity Rush,8.6,SCE Japan Studio,SCEA,Gravity Rush (Europe).vpk,1.4 GiB,7.2 GiB 6 | Demon Gaze,8.6,Experience Inc.,NIS America,"Demon Gaze (Europe) (En,Ja).vpk",512.4 MiB,7.7 GiB 7 | TxK,8.4,Llamasoft,Llamasoft,,, 8 | Lumines: Electronic Symphony,8.3,Q Entertainment,Ubisoft,Lumines - Electronic Symphony (USA).vpk,720.4 MiB,8.4 GiB 9 | Freedom Wars,8.3,SCE Japan Studio,SCEA,Freedom Wars (USA).vpk,1.3 GiB,9.7 GiB 10 | WipEout 2048,8.2,Studio Liverpool,SCEA,"WipEout 2048 (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",1.6 GiB,11.3 GiB 11 | Tokyo Jungle Mobile,8.2,SCEI,SCEA,,, 12 | Surge (2012),8.2,FuturLab,FuturLab,,, 13 | Super Stardust Delta,8.2,Housemarque,Sony Interactive Entertainment,,, 14 | Soul Sacrifice,8.2,SCE Japan Studio,SCEA,Soul Sacrifice (USA).vpk,1.7 GiB,13.0 GiB 15 | Muramasa Rebirth: Fishy Tales of the Nekomata,8.2,Vanillaware,Aksys Games,,, 16 | Fuel Tiracas,8.2,FuturLab,FuturLab,,, 17 | Tokyo Xanadu,8.1,Falcom,Aksys Games,Tokyo Xanadu (USA).vpk,2.2 GiB,15.2 GiB 18 | Muramasa Rebirth: A Cause to Daikon for,8.1,Vanillaware,Aksys Games,,, 19 | DJMax Technika Tune,8.1,Pentavision Entertainment,Pentavision Entertainment,DJMax Technika Tune (USA).vpk,3.1 GiB,18.3 GiB 20 | Criminal Girls 2: Party Favors,8.1,Nippon Ichi Software,NIS America,Criminal Girls 2 - Party Favors (Europe).vpk,1.1 GiB,19.4 GiB 21 | Uncharted: Golden Abyss,8.0,Sony Bend,SCEA,"Uncharted - Golden Abyss (Europe) (En-GB,Es,Pt,Sv,No,Da,Fi,Pl,Ru).vpk",3.3 GiB,22.7 GiB 22 | Oreshika: Tainted Bloodlines,8.0,Alfa System,SCEA,,, 23 | Open Me!,8.0,SCEI,SCEA,,, 24 | Virtua Tennis 4: World Tour Edition,7.9,Sega,Sega,"Virtua Tennis 4 - World Tour Edition (USA) (En,Fr,Es).vpk",1.0 GiB,23.7 GiB 25 | Switch Galaxy,7.9,Atomicom,Atomicom,,, 26 | Invizimals: The Resistance,7.9,Novarama,SCEA,,, 27 | FIFA Soccer (2012),7.9,Electronic Arts,EA Sports,FIFA Soccer 13 (USA).vpk,2.8 GiB,26.5 GiB 28 | Ragnarok Odyssey,7.8,Game Arts,XSEED Games,Ragnarok Odyssey (USA).vpk,1.0 GiB,27.6 GiB 29 | OMG HD Zombies!,7.8,Laughing Jackal,Laughing Jackal,,, 30 | Malicious Rebirth,7.8,Alvion,SCEA,"Muramasa Rebirth (USA) (En,Ja).vpk",455.4 MiB,28.0 GiB 31 | Bad Apple Wars,7.8,Otomate,Aksys Games,Bad Apple Wars (USA).vpk,1.5 GiB,29.5 GiB 32 | Surge Deluxe,7.7,FuturLab,FuturLab,,, 33 | PulzAR,7.7,XDEV,SCEA,,, 34 | Floating Cloud God Saves the Pilgrims in HD!,7.7,Dakko Dakko,Dakko Dakko,,, 35 | Sword Art Online: Hollow Fragment,7.6,Aquria,Bandai Namco Games,"Sword Art Online - Hollow Realization (Europe) (En,Fr,De,Es,It).vpk",2.8 GiB,32.3 GiB 36 | New Little King's Story,7.6,Konami,Konami,"New Little King's Story (Europe) (En,Fr,De,Es,It).vpk",659.5 MiB,33.0 GiB 37 | Earth Defense Force 2017 Portable,7.6,Sandlot,D3Publisher,Earth Defense Force 2 - Invaders From Planet Space (USA).vpk,280.3 MiB,33.3 GiB 38 | Dynasty Warriors Next,7.6,Omega Force,Tecmo Koei Games,Dynasty Warriors Next (Europe).vpk,1.4 GiB,34.7 GiB 39 | PlayStation Vita Pets,7.5,Spiral House,SCEA,"PlayStation Vita Pets (Europe) (En,Fr,De,Es).vpk",1.6 GiB,36.3 GiB 40 | Gravity Crash Ultra,7.5,Just Add Water,Just Add Water,Gravity Rush (Europe).vpk,1.4 GiB,37.7 GiB 41 | Touch My Katamari,7.4,Bandai Namco Games,Namco Bandai Games,Touch My Katamari (USA).vpk,590.0 MiB,38.2 GiB 42 | The Hungry Horde,7.4,Nosebleed Interactive,SCEA,,, 43 | Frobisher Says!,7.4,Honeyslug Ltd,SCEA,,, 44 | Super Monkey Ball: Banana Splitz,7.3,Marvelous AQL,Sega,Super Monkey Ball - Banana Splitz (USA).vpk,811.6 MiB,39.0 GiB 45 | MonsterBag,7.3,IguanaBee,SCEA,,, 46 | Invizimals: The Alliance,7.3,Novarama,SCEA,,, 47 | Football Manager Classic 2014,7.3,Sports Interactive,Sega,,, 48 | Smart as...,7.2,XDEV,SCEA,"Smart as... (Europe) (En,Fr,De,It,Nl).vpk",1.5 GiB,40.5 GiB 49 | Senran Kagura: Bon Appetit!,7.2,Meteorise,XSEED Games,Senran Kagura Shinovi Versus (USA).vpk,1.9 GiB,42.4 GiB 50 | Gravity Rush: Military Pack,7.2,SCE Japan Studio,SCEA,Gravity Rush (Europe).vpk,1.4 GiB,43.9 GiB 51 | Unit 13,7.1,Zipper Interactive,SCEA,"Unit 13 (USA) (En,Fr,Es,Pt).vpk",1.2 GiB,45.0 GiB 52 | Murasaki Baby,7.0,Ovosonico,SCEA,,, 53 | Destiny of Spirits,7.0,Q Entertainment,SCEA,,, 54 | Assassin's Creed III: Liberation,7.0,Ubisoft Sofia,Ubisoft,"Assassin's Creed III - Liberation (Europe) (En,Fr,De,Es,It,Nl,Ru).vpk",2.9 GiB,47.9 GiB 55 | Valhalla Knights 3,6.9,K2,XSEED Games,Valhalla Knights 3 (USA).vpk,899.1 MiB,48.8 GiB 56 | Resistance: Burning Skies,6.9,Nihilistic,SCEA,"Resistance - Burning Skies (France) (Fr,De,It).vpk",2.9 GiB,51.7 GiB 57 | Reel Fishing: Master's Challenge,6.8,"Tachyon Inc.,",Natsume,,, 58 | Orgarhythm,6.8,Neilo,XSEED Games,,, 59 | Metrico,6.8,Digital Dreams,Digital Dreams,,, 60 | Uncharted: Fight for Fortune,6.7,Sony Bend,SCEA,,, 61 | The Muppets: Movie Adventures,6.7,Virtual Toys,SCEA,"Muppets Movie, The - Adventures (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",870.8 MiB,52.6 GiB 62 | Flying Hamster HD (2010),6.7,The Game Atelier,The Game Atelier,,, 63 | The HD Adventures of Rotating Octopus Character,6.6,Dakko Dakko,Dakko Dakko,,, 64 | Shinobido 2: Revenge of Zen,6.6,Acquire,Namco Bandai Games,Shinobido 2 - Revenge of Zen (USA).vpk,1.1 GiB,53.6 GiB 65 | Period: Cube - Shackles of Amadeus,6.6,Otomate,Idea Factory,Period - Cube - Shackles of Amadeus (USA).vpk,2.6 GiB,56.2 GiB 66 | Army Corps of Hell,6.6,"Entersphere, Inc.",Square Enix,"Army Corps of Hell (Europe) (En,Fr,De,Es,It).vpk",646.4 MiB,56.8 GiB 67 | Sketchcross,6.5,Spiky Fish Games,Spiky Fish Games,,, 68 | NekoBuro: Cats Block,6.5,Arc System Works,Arc System Works,,, 69 | Mobile Suit Gundam: Extreme VS-Force,6.5,Bandai Namco Games,Bandai Namco Games,,, 70 | Lets Fish! Hooked On,6.5,SIMS,Wired Productions,,, 71 | UFO Dad,6.3,Edit Mode,Edit Mode,,, 72 | ModNation Racers: Road Trip,6.3,SCEA,SCEA,ModNation Racers - Road Trip (USA).vpk,1.5 GiB,58.3 GiB 73 | Lemmings Touch,6.3,D3T,SCEA,,, 74 | Hyperdimension Neptunia PP: Producing Perfection,6.3,Tamsoft,NIS America,Hyperdimension Neptunia PP - Producing Perfection (Europe).vpk,1.2 GiB,59.5 GiB 75 | Treasures of Montezuma Blitz,6.1,Alawar Entertainment,Alawar Entertainment,,, 76 | Sumioni: Demon Arts,6.1,Acquire,XSEED Games,,, 77 | Ecolibrium,6.1,SCEE,SCEA,,, 78 | Phineas and Ferb: Day of Doofenshmirtz,6.0,Virtual Toys,SCEA,"Phineas and Ferb - Day of Doofenshmirtz (Europe) (En,Fr,De,Es,It,Nl,Pt,El).vpk",861.4 MiB,60.4 GiB 79 | Silent Hill: Book of Memories,5.8,WayForward,Konami,"Silent Hill - Book of Memories (Europe) (En,Fr,De,Es,It).vpk",1.5 GiB,61.9 GiB 80 | Little Deviants,5.7,Bigbig Studios,SCEA,Little Deviants (USA).vpk,898.4 MiB,62.8 GiB 81 | Drive Girls,5.7,Tamsoft,Aksys Games,Drive Girls (USA).vpk,279.7 MiB,63.0 GiB 82 | Table Top Tanks,5.6,Devils Details,SCEA,,, 83 | Table Mini Golf,5.6,Four Door Lemon,SCEA,,, 84 | MeiQ: Labyrinth of Death,5.6,Compile Heart,Idea Factory,MeiQ - Labyrinth of Death (USA).vpk,1.4 GiB,64.5 GiB 85 | Boss!,5.6,Fair Play Labs,Fair Play Labs,,, 86 | A.W.: Phoenix Festa,5.5,Bandai Namco Games,Bandai Namco Games,,, 87 | Reality Fighters,5.4,Novarama,SCEA,,, 88 | Asphalt: Injection,5.2,Ubisoft,Ubisoft,"Asphalt - Injection (Europe) (En,Fr,De,Es,It).vpk",537.9 MiB,65.0 GiB 89 | Call of Duty: Black Ops Declassified,5.0,Nihilistic,Activision,Call of Duty - Black Ops - Declassified (Europe).vpk,2.2 GiB,67.2 GiB 90 | Ridge Racer (2012),4.4,Namco Bandai Games,Namco Bandai Games,Ridge Racer (Europe).vpk,797.0 MiB,68.0 GiB 91 | Chronovolt,4.4,Playerthree,Playerthree,,, 92 | Z-Run,4.3,Beatshapers,Beatshapers,,, 93 | Fireworks,4.1,Studio Liverpool,SCEA,,, 94 | Table Soccer,3.6,Studio Liverpool,SCEA,,, 95 | Cliff Diving,3.6,Studio Liverpool,SCEA,,, 96 | Die!Die!Die!,3.1,iFun4all,iFun4all,,, 97 | -------------------------------------------------------------------------------- /game_lists/platform_exclusives/best_critic_4_user_10/Sony - PlayStation.csv: -------------------------------------------------------------------------------- 1 | title,score,developer,publisher,rom_name,size,running_total 2 | Gran Turismo,9.6,Polyphony Digital,SCEA,Gran Turismo (USA) (Rev 1).bin,661.5 MiB,661.5 MiB 3 | ISS Pro Evolution,9.4,KCET,Konami,ISS Pro Evolution (USA) (Track 01).bin,206.7 MiB,868.2 MiB 4 | Chrono Cross,9.4,SquareSoft,Square EA,Chrono Cross (USA) (Disc 2).bin,1.4 GiB,2.2 GiB 5 | Vagrant Story,9.2,SquareSoft,Square EA,Vagrant Story (USA).bin,715.9 MiB,2.9 GiB 6 | Medal of Honor (1999),9.2,Dreamworks Interactive,Electronic Arts,Medal of Honor (USA).bin,708.2 MiB,3.6 GiB 7 | Xenogears,9.1,SquareSoft,Square EA,Xenogears (USA) (Disc 2).bin,1.3 GiB,4.9 GiB 8 | Suikoden II,9.1,Konami,Konami,Suikoden II (USA).bin,490.1 MiB,5.4 GiB 9 | Spyro: Year of the Dragon,9.1,Insomniac Games,SCEA,Spyro - Year of the Dragon (USA) (Rev 1).bin,634.0 MiB,6.0 GiB 10 | Crash Bandicoot: Warped,9.1,Naughty Dog,SCEA,Crash Bandicoot - Warped (USA).bin,271.9 MiB,6.3 GiB 11 | Colony Wars,9.1,Psygnosis,Psygnosis,Colony Wars (USA) (Disc 2) (Track 1).bin,1.1 GiB,7.4 GiB 12 | WWF SmackDown! 2: Know Your Role,9.0,Yuke's,THQ,WWF SmackDown! 2 - Know Your Role (USA).bin,711.7 MiB,8.1 GiB 13 | Wipeout 3,8.9,Psygnosis,Psygnosis,WipEout 3 (USA) (Track 01).bin,51.5 MiB,8.1 GiB 14 | Spyro 2: Ripto's Rage!,8.9,Insomniac Games,SCEA,Spyro 2 - Ripto's Rage! (USA).bin,539.2 MiB,8.6 GiB 15 | Soul Edge,8.9,Namco,Namco,Soul Edge (Japan) (Rev 1).bin,477.2 MiB,9.1 GiB 16 | Final Fantasy Chronicles,8.9,TOSE,Square EA,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,9.7 GiB 17 | Einhander,8.9,SquareSoft,SCEA,Einhaender (USA).bin,623.2 MiB,10.3 GiB 18 | Silent Hill,8.8,KCET,Konami,Silent Hill (USA).bin,587.9 MiB,10.8 GiB 19 | Parasite Eve,8.8,SquareSoft,Square EA,Parasite Eve (USA) (Disc 2).bin,1.1 GiB,11.9 GiB 20 | CTR: Crash Team Racing,8.8,Naughty Dog,SCEA,CTR - Crash Team Racing (USA).bin,577.6 MiB,12.5 GiB 21 | Crash Bandicoot 2: Cortex Strikes Back,8.8,Naughty Dog,SCEA,Crash Bandicoot 2 - Cortex Strikes Back (USA).bin,183.9 MiB,12.7 GiB 22 | Tenchu: Stealth Assassins,8.7,Acquire,Activision,Tenchu - Stealth Assassins (USA) (Rev 1).bin,660.9 MiB,13.3 GiB 23 | Spyro the Dragon,8.7,Insomniac Games,SCEA,Spyro the Dragon (USA).bin,630.9 MiB,13.9 GiB 24 | Ace Combat 2,8.7,Namco,Namco,Ace Combat 2 (USA).bin,553.9 MiB,14.5 GiB 25 | Vanguard Bandits,8.6,S-Neo,Working Designs,Vanguard Bandits (USA).bin,544.5 MiB,15.0 GiB 26 | Tenchu 2: Birth of the Stealth Assassins,8.6,Acquire,Activision,Tenchu 2 - Birth of the Stealth Assassins (USA).bin,709.6 MiB,15.7 GiB 27 | Lunar 2: Eternal Blue,8.6,Game Arts,Working Designs,Lunar 2 - Eternal Blue (Japan) (Disc 3).bin,2.0 GiB,17.7 GiB 28 | Final Fantasy Anthology,8.6,SquareSoft,Square EA,"Final Fantasy V (Japan, Asia).bin",282.4 MiB,18.0 GiB 29 | Dragon Valor,8.6,Namco,Namco,Dragon Valor (USA) (Disc 2) (Track 1).bin,1.2 GiB,19.1 GiB 30 | Alundra,8.6,Matrix Software,Working Designs,Alundra (USA) (Rev 1).bin,572.5 MiB,19.7 GiB 31 | Saiyuki: Journey West,8.5,Koei,Koei,Saiyuki - Journey West (USA).bin,498.0 MiB,20.2 GiB 32 | Pepsiman,8.5,Kid,Kid,Pepsiman (Japan) (Track 1).bin,118.4 MiB,20.3 GiB 33 | Parasite Eve II,8.5,SquareSoft,Square EA,"Parasite Eve II (USA, Canada) (Disc 2).bin",1.1 GiB,21.4 GiB 34 | Yu-Gi-Oh! Forbidden Memories,8.4,KCEJ,Konami,Yu-Gi-Oh! Forbidden Memories (USA).bin,493.9 MiB,21.9 GiB 35 | Star Ocean: The Second Story,8.4,Tri-Ace,SCEA,Star Ocean - The Second Story (USA) (Disc 2).bin,1.2 GiB,23.1 GiB 36 | Fear Effect 2: Retro Helix,8.4,Kronos Digital Entertainment,Eidos Interactive,Fear Effect 2 - Retro Helix (USA) (Disc 4) (Rev 1).bin,2.6 GiB,25.7 GiB 37 | Digimon World 3,8.4,Boom,Bandai,Digimon World 3 (USA).bin,617.5 MiB,26.3 GiB 38 | Digimon Digital Card Battle,8.4,Bec,Bandai,Digimon Digital Card Battle (Europe).bin,205.8 MiB,26.5 GiB 39 | Dead or Alive,8.4,Team Ninja,Tecmo,"Dead or Alive (Japan, Asia) (Track 01).bin",146.0 MiB,26.6 GiB 40 | Dance Dance Revolution Konamix,8.4,Konami,Konami,Dance Dance Revolution Konamix (USA).bin,431.5 MiB,27.1 GiB 41 | Digimon Rumble Arena,8.3,Bandai,Bandai,Digimon Rumble Arena (USA).bin,254.5 MiB,27.3 GiB 42 | Crash Bandicoot,8.3,Naughty Dog,SCEA,Crash Bandicoot (USA).bin,602.8 MiB,27.9 GiB 43 | Bushido Blade,8.3,Light Weight,SCEA,Bushido Blade (USA).bin,555.3 MiB,28.4 GiB 44 | Brave Fencer Musashi,8.3,SquareSoft,Square EA,Brave Fencer Musashi (USA) (Track 1).bin,347.9 MiB,28.8 GiB 45 | You Don't Know Jack: Mock 2,8.2,Jellyvision,Sierra Entertainment,You Don't Know Jack - Mock 2 (USA).bin,615.5 MiB,29.4 GiB 46 | Spider-Man 2: Enter: Electro,8.2,Vicarious Visions,Activision,Spider-Man 2 - Enter - Electro (USA) (Rev 1).bin,684.2 MiB,30.0 GiB 47 | Strider 2,8.1,Use,Capcom,Strider 2 (USA).bin,437.8 MiB,30.5 GiB 48 | Blade (2000),8.1,Hammerhead,Activision,Blade (USA).bin,596.0 MiB,31.1 GiB 49 | RC de GO!,8.0,Taito Corporation,Acclaim,RC de Go! (USA) (Track 1).bin,291.8 MiB,31.3 GiB 50 | Incredible Crisis,8.0,Polygon Magic,Titus Software,Incredible Crisis (USA).bin,688.0 MiB,32.0 GiB 51 | Gundam: Battle Assault 2,8.0,Natsume,Bandai,Gundam Battle Assault 2 (USA) (Track 1).bin,232.5 MiB,32.2 GiB 52 | Disney/Pixar Toy Story Racer,8.0,Traveller's Tales,Activision,Disney-Pixar Toy Story Racer (USA).bin,247.2 MiB,32.5 GiB 53 | Digimon World 2,8.0,Bec,Bandai,Digimon World 2 (USA).bin,440.6 MiB,32.9 GiB 54 | C-12: Final Resistance,8.0,SCE Studio Cambridge,SCEA,C-12 - Final Resistance (USA) (Track 1).bin,432.4 MiB,33.3 GiB 55 | Barbie: Gotta Have Games,8.0,Digital Illusions,VU Games,Barbie - Gotta Have Games (USA) (Track 01).bin,25.9 MiB,33.4 GiB 56 | X-Men: Mutant Academy 2,7.9,Paradox Development,Activision,X-Men - Mutant Academy 2 (USA) (Track 01).bin,419.5 MiB,33.8 GiB 57 | Final Fantasy Origins,7.9,TOSE,Square Enix,Final Fantasy Origins (USA) (Rev 1).bin,562.2 MiB,34.3 GiB 58 | Crash Bash,7.9,Eurocom,SCEA,Crash Bash (USA).bin,170.0 MiB,34.5 GiB 59 | Bomberman Party Edition,7.9,Metro,Vatical Entertainment,Bomberman - Party Edition (USA).bin,630.2 MiB,35.1 GiB 60 | Point Blank 3,7.8,TOSE,Namco,Point Blank 3 (USA).bin,120.2 MiB,35.2 GiB 61 | MLB 2003,7.8,989 Sports,SCEA,MLB 2003 (USA).bin,523.8 MiB,35.7 GiB 62 | Looney Tunes Racing,7.8,Circus Freak,Infogrames,"Looney Tunes Racing (USA) (En,Fr,Es).bin",433.8 MiB,36.1 GiB 63 | Disney's Atlantis: The Lost Empire (2001),7.8,Eurocom,SCEA,Disney's Atlantis - The Lost Empire (USA) (Track 1).bin,325.2 MiB,36.5 GiB 64 | Arc the Lad Collection,7.8,ARC Entertainment,Working Designs,Arc the Lad Collection - Arc the Lad (USA).bin,598.7 MiB,37.0 GiB 65 | Bust A Groove 2,7.7,Metro,Enix Corporation,Bust A Groove 2 (USA).bin,584.0 MiB,37.6 GiB 66 | Star Trek: Invasion,7.6,Warthog,Activision,Star Trek - Invasion (USA).bin,648.2 MiB,38.3 GiB 67 | MLB 2002,7.6,989 Sports,SCEA,MLB 2002 (USA).bin,605.1 MiB,38.8 GiB 68 | Elemental Gearbolt,7.6,Alfa System,Working Designs,Elemental Gearbolt (USA).bin,508.3 MiB,39.3 GiB 69 | Driver 2,7.4,Reflections Interactive,Infogrames,Driver 2 (USA) (Disc 2) (Rev 1).bin,1.2 GiB,40.5 GiB 70 | Dance Dance Revolution Disney Mix,7.4,Konami,Konami,Dance Dance Revolution - Disney Mix (USA).bin,239.7 MiB,40.7 GiB 71 | RC Revenge,7.2,Acclaim Studios Cheltenham,Acclaim,RC Revenge (USA) (Track 1).bin,461.6 MiB,41.2 GiB 72 | Destruction Derby Raw,7.2,Studio 33,Midway,Destruction Derby Raw (USA) (Track 01).bin,262.4 MiB,41.4 GiB 73 | Time Crisis: Project Titan,7.1,Flying Tiger Development,Namco,Time Crisis - Project Titan (USA) (Track 01).bin,37.9 MiB,41.5 GiB 74 | NCAA March Madness 2001,7.1,Black Ops Entertainment,EA Sports,NCAA March Madness 2001 (USA).bin,597.8 MiB,42.1 GiB 75 | Thunder Force V,7.0,TechnoSoft,Working Designs,Thunderstrike 2 (USA) (Track 01).bin,72.4 MiB,42.1 GiB 76 | Super Shot Soccer,7.0,Tecmo,Tecmo,Super Shot Soccer (USA) (Track 1).bin,317.9 MiB,42.4 GiB 77 | MTV Sports: Pure Ride,7.0,Radical Entertainment,THQ,MTV Sports - Pure Ride (USA) (Track 1).bin,388.0 MiB,42.8 GiB 78 | ESPN MLS GameNight,7.0,Saffire,Konami,ESPN MLS Gamenight (USA) (Track 01).bin,184.0 MiB,43.0 GiB 79 | Delta Force: Urban Warfare,7.0,Rebellion,NovaLogic,"Delta Force Urban Warfare (USA) (En,Fr,Es).bin",261.8 MiB,43.3 GiB 80 | Championship Motocross 2001 Featuring Ricky Carmichael,7.0,Funcom,THQ,Championship Motocross 2001 featuring Ricky Carmichael (USA).bin,388.1 MiB,43.6 GiB 81 | Castlevania Chronicles,7.0,Konami,Konami,Castlevania Chronicles (USA).bin,503.8 MiB,44.1 GiB 82 | Alien Resurrection,7.0,Argonaut Games,Fox Interactive,Alien Resurrection (USA) (Track 1).bin,257.5 MiB,44.4 GiB 83 | Silhouette Mirage: Reprogrammed Hope,6.9,Treasure,Working Designs,Silhouette Mirage - Reprogrammed Hope (Japan) (Track 01).bin,171.0 MiB,44.6 GiB 84 | Inuyasha: A Feudal Fairy Tale,6.9,Dimps Corporation,Bandai,Inuyasha - A Feudal Fairy Tale (USA) (Rev 1).bin,635.7 MiB,45.2 GiB 85 | Disney's The Lion King: Simba's Mighty Adventure,6.8,Paradox Development,Activision,Disney's The Lion King - Simba's Mighty Adventure (USA) (Track 1).bin,568.4 MiB,45.7 GiB 86 | Scooby-Doo and the Cyber Chase,6.7,Art,THQ,Scooby-Doo and the Cyber Chase (USA).bin,179.9 MiB,45.9 GiB 87 | Disney's Lilo & Stitch,6.7,Blitz Games,SCEA,Disney's Lilo & Stitch (USA).bin,497.1 MiB,46.4 GiB 88 | Dave Mirra Freestyle BMX: Maximum Remix,6.7,"Z-Axis, Ltd.",Acclaim,Dave Mirra Freestyle BMX - Maximum Remix (USA) (Track 1).bin,285.8 MiB,46.7 GiB 89 | Vampire Hunter D,6.6,Jaleco Entertainment,Jaleco Entertainment,Vampire Hunter D (USA).bin,457.8 MiB,47.1 GiB 90 | Torneko: The Last Hope,6.6,Matrix Software,Enix Corporation,World of Dragon Warrior - Torneko - The Last Hope (USA) (Track 1).bin,556.4 MiB,47.7 GiB 91 | Twisted Metal: Small Brawl,6.5,Incognito Inc.,SCEA,Twisted Metal - Small Brawl (USA).bin,312.9 MiB,48.0 GiB 92 | Surf Riders,6.4,ACOT,Ubisoft,Surf Riders (USA) (Track 01).bin,106.9 MiB,48.1 GiB 93 | Duke Nukem: Land of the Babes,6.3,n-Space,Infogrames,Duke Nukem - Land of the Babes (USA).bin,675.0 MiB,48.7 GiB 94 | Rayman Rush,6.2,Ubisoft Shanghai,Ubisoft,Rayman Rush (USA).bin,483.5 MiB,49.2 GiB 95 | One Piece Mansion,6.2,Capcom,Capcom,One Piece Mansion (USA).bin,415.7 MiB,49.6 GiB 96 | Hoshigami: Ruining Blue Earth,6.2,Max Five,Atlus,Hoshigami - Ruining Blue Earth (USA) (Track 1).bin,529.8 MiB,50.1 GiB 97 | Dexter's Laboratory: Mandark's Lab?,6.2,Red Lemon Studios,Bam Entertainment,Dexter's Laboratory - Mandark's Lab (USA) (Track 1).bin,245.6 MiB,50.4 GiB 98 | Countdown Vampires,6.2,K2 LLC,Bandai,Countdown Vampires (USA) (Disc 2).bin,1.1 GiB,51.4 GiB 99 | Spec Ops: Ranger Elite,6.1,Runecraft,Take-Two Interactive,Spec Ops - Ranger Elite (USA).bin,185.5 MiB,51.6 GiB 100 | Gundam: Battle Assault,6.1,Natsume,Bandai,Gundam Battle Assault (USA) (Track 01).bin,14.3 MiB,51.6 GiB 101 | Speedball 2100,6.0,The Bitmap Brothers,Take-Two Interactive,Speedball 2100 (USA) (Track 01).bin,68.3 MiB,51.7 GiB 102 | Men in Black - The Series: Crashdown,5.9,Runecraft,Infogrames,Men in Black - The Series - Crashdown (USA).bin,633.9 MiB,52.3 GiB 103 | Clock Tower II: The Struggle Within,5.8,Human Entertainment,Agetec,Clock Tower II - The Struggle Within (USA).bin,409.1 MiB,52.7 GiB 104 | Gunfighter: The Legend of Jesse James,5.5,Rebellion,Ubisoft,Gunfighter - The Legend of Jesse James (USA).bin,181.8 MiB,52.9 GiB 105 | The Simpsons Wrestling,5.3,Big Ape Productions,Activision,"Simpsons Wrestling, The (USA).bin",483.4 MiB,53.4 GiB 106 | The Dukes of Hazzard II: Daisy Dukes It Out,5.3,Sinister Games,SouthPeak Games,"Dukes of Hazzard II, The - Daisy Dukes It Out (USA).bin",667.5 MiB,54.0 GiB 107 | NBA ShootOut 2002,5.3,Killer Game,SCEA,NBA ShootOut 2002 (USA) (Track 1).bin,282.6 MiB,54.3 GiB 108 | Hot Wheels Extreme Racing,5.3,Atod,THQ,Hot Wheels - Extreme Racing (USA) (Track 01).bin,68.8 MiB,54.4 GiB 109 | Smurf Racer!,5.2,Artificial Mind and Movement,Infogrames,"Smurf Racer! (USA) (En,Fr,Es).bin",238.9 MiB,54.6 GiB 110 | Action Bass,5.1,Vingt-et-un Systems,Take-Two Interactive,Action Bass (USA).bin,163.9 MiB,54.8 GiB 111 | 007 Racing,5.1,Eutechnyx,Electronic Arts,007 Racing (USA).bin,538.8 MiB,55.3 GiB 112 | Dragon Ball Z: Ultimate Battle 22,5.0,TOSE,Infogrames,Dragon Ball Z - Ultimate Battle 22 (USA).bin,320.8 MiB,55.6 GiB 113 | Runabout 2,4.9,Climax Entertainment,Hot-B,Runabout 2 (USA) (Track 1).bin,308.9 MiB,55.9 GiB 114 | Freestyle Motocross: McGrath Vs. Pastrana,4.8,"Z-Axis, Ltd.",Acclaim,Freestyle Motocross - McGrath vs. Pastrana (USA) (Track 1).bin,157.8 MiB,56.1 GiB 115 | MTV Sports: T.J. Lavin's Ultimate BMX,4.7,Blue Shift,THQ,MTV Sports - T.J. Lavin's Ultimate BMX (USA).bin,568.0 MiB,56.6 GiB 116 | Danger Girl,4.3,n-Space,THQ,Danger Girl (USA).bin,650.8 MiB,57.2 GiB 117 | Creatures,4.3,Creature Labs,Conspiracy Entertainment,Creatures (USA).bin,462.4 MiB,57.7 GiB 118 | All-Star Slammin' D-Ball,4.2,Access,Agetec,All-Star Slammin' D-Ball (USA).bin,204.6 MiB,57.9 GiB 119 | "Army Men: World War - Land, Sea, Air",3.5,3DO,3DO,"Army Men - World War - Land, Sea, Air (USA).bin",265.0 MiB,58.2 GiB 120 | Animorphs: Shattered Reality,2.7,SingleTrac,Infogrames,Animorphs - Shattered Reality (USA) (Track 1).bin,255.2 MiB,58.4 GiB 121 | HBO Boxing,2.6,Osiris Studios,Acclaim,HBO Boxing (USA) (Track 1).bin,395.6 MiB,58.8 GiB 122 | -------------------------------------------------------------------------------- /metacritic_games.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claabs/top-games-size/3126b8e4c8a9da773e768cfdbc5c6b5b108f7749/metacritic_games.db -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry] 2 | name = "top-games-size" 3 | version = "0.1.0" 4 | description = "Get the storage size required for backups of the top games for various platforms" 5 | authors = ["Your Name "] 6 | license = "MIT" 7 | readme = "README.md" 8 | 9 | [tool.poetry.dependencies] 10 | python = "^3.11" 11 | igdb-api-v4 = "^0.3.2" 12 | rapidfuzz = "^3.7.0" 13 | python-dotenv = "^1.0.1" 14 | humanize = "^4.9.0" 15 | numpy = "^1.26.4" 16 | joblib = "^1.4.0" 17 | 18 | [tool.poetry.group.dev.dependencies] 19 | ruff = "^0.3.4" 20 | 21 | [build-system] 22 | requires = ["poetry-core"] 23 | build-backend = "poetry.core.masonry.api" 24 | -------------------------------------------------------------------------------- /redump_datfiles/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claabs/top-games-size/3126b8e4c8a9da773e768cfdbc5c6b5b108f7749/redump_datfiles/.gitkeep -------------------------------------------------------------------------------- /rom_metacritic_match/__main__.py: -------------------------------------------------------------------------------- 1 | from rom_metacritic_match.generate_top_lists import list_top_games 2 | from rom_metacritic_match.rom_match_platform import RomMatchPlatform 3 | 4 | platforms = [ 5 | RomMatchPlatform(["Sony - PlayStation"], "playstation", 1500000078), 6 | RomMatchPlatform(["Sony - PlayStation 2"], "playstation-2", 1500000094), 7 | RomMatchPlatform( 8 | ["Sony - PlayStation Portable", "Sony - PlayStation Portable (PSN)"], 9 | "psp", 10 | 1500000109, 11 | ), 12 | RomMatchPlatform(["Sony - PlayStation Vita"], "playstation-vita", 1500000117), 13 | RomMatchPlatform( 14 | ["Sony - PlayStation 3", "Sony - PlayStation 3 (PSN)"], 15 | "playstation-3", 16 | 1500000113, 17 | ), 18 | RomMatchPlatform(["Nintendo - Game Boy Advance"], "game-boy-advance", 1500000091), 19 | RomMatchPlatform( 20 | ["Nintendo - Nintendo DS", "Nintendo - Nintendo DSi"], "ds", 1500000108 21 | ), 22 | RomMatchPlatform(["Nintendo - Nintendo 3DS"], "3ds", 1500000116), 23 | RomMatchPlatform( 24 | ["Nintendo - Nintendo 64", "Nintendo - Nintendo 64DD"], 25 | "nintendo-64", 26 | 1500000084, 27 | ), 28 | RomMatchPlatform(["Nintendo - GameCube"], "gamecube", 1500000099), 29 | RomMatchPlatform(["Nintendo - Wii", "Nintendo - Wii (Digital)"], "wii", 1500000114), 30 | RomMatchPlatform(["Sega - Dreamcast"], "dreamcast", 1500000067), 31 | RomMatchPlatform(["Microsoft - Xbox"], "xbox", 1500000098), 32 | ] 33 | 34 | if __name__ == "__main__": 35 | # scrape_metacritic_games(platforms) 36 | # scrape_scores() 37 | list_top_games(platforms) 38 | -------------------------------------------------------------------------------- /rom_metacritic_match/generate_top_lists.py: -------------------------------------------------------------------------------- 1 | import csv 2 | import os 3 | from dataclasses import dataclass 4 | from typing import Callable, List 5 | 6 | import humanize 7 | 8 | from common.parse_rdb import parse_rdb 9 | from rom_metacritic_match.metacritic_db import MetacriticDatabase 10 | from rom_metacritic_match.overrides import overrides 11 | from rom_metacritic_match.rom_match_platform import RomMatchPlatform 12 | from rom_metacritic_match.rom_metacritic_match import ( 13 | fast_title_match, 14 | ) 15 | 16 | 17 | @dataclass 18 | class QuerySetting: 19 | type: str 20 | setting: str 21 | func: Callable 22 | 23 | 24 | def list_top_games(platforms: List[RomMatchPlatform]): 25 | db = MetacriticDatabase() 26 | queries = [ 27 | QuerySetting( 28 | "all", 29 | "best_critic_4_user_10", 30 | lambda platform: db.get_platform_games_best_critic_user(platform), 31 | ), 32 | QuerySetting( 33 | "all", 34 | "avg_critic_4_user_10", 35 | lambda platform: db.get_platform_games_avg_critic_user(platform), 36 | ), 37 | QuerySetting( 38 | "all", 39 | "best_critic_4", 40 | lambda platform: db.get_platform_games_critic(platform, min_critic_score=0), 41 | ), 42 | QuerySetting( 43 | "platform_exclusives", 44 | "best_critic_4_user_10", 45 | lambda platform: db.get_platform_exclusive_games_best_critic_user(platform), 46 | ), 47 | QuerySetting( 48 | "platform_exclusives", 49 | "avg_critic_4_user_10", 50 | lambda platform: db.get_platform_exclusive_games_avg_critic_user(platform), 51 | ), 52 | QuerySetting( 53 | "platform_exclusives", 54 | "best_critic_4", 55 | lambda platform: db.get_platform_exclusive_games_critic( 56 | platform, min_critic_score=0 57 | ), 58 | ), 59 | ] 60 | 61 | for platform in platforms: 62 | rdb_games = parse_rdb(platform) 63 | for query_setting in queries: 64 | games = query_setting.func(platform.platform_slug) 65 | list_dir = os.path.join( 66 | "game_lists", query_setting.type, query_setting.setting 67 | ) 68 | if not os.path.exists(list_dir): 69 | os.makedirs(list_dir) 70 | csv_writer = csv.writer( 71 | open(os.path.join(list_dir, f"{platform.rdb_names[0]}.csv"), "w") 72 | ) 73 | csv_writer.writerow( 74 | [ 75 | "title", 76 | "score", 77 | "developer", 78 | "publisher", 79 | "rom_name", 80 | "size", 81 | "running_total", 82 | ] 83 | ) 84 | running_size_total = 0 85 | for metacritic_game in games: 86 | game_slug, title, developer, publisher, score = metacritic_game 87 | human_size = None 88 | human_size_total = None 89 | override = overrides.get(platform.rdb_names[0], {}).get(title, None) 90 | if override: 91 | override_rom_name, override_size = override 92 | if not override_size: 93 | override_size = next( 94 | filter( 95 | lambda x: x.rom_name == override_rom_name, 96 | rdb_games, 97 | ), 98 | None, 99 | ).size 100 | match = (override_rom_name, override_size) 101 | else: 102 | match = fast_title_match(metacritic_game, rdb_games) 103 | rom_name, size = match if match else (None, None) 104 | if size: 105 | running_size_total += size 106 | human_size = humanize.naturalsize(size, binary=True) 107 | human_size_total = humanize.naturalsize( 108 | running_size_total, binary=True 109 | ) 110 | csv_writer.writerow( 111 | [ 112 | title, 113 | "{:.1f}".format(score), 114 | developer, 115 | publisher, 116 | rom_name, 117 | human_size, 118 | human_size_total, 119 | ] 120 | ) 121 | -------------------------------------------------------------------------------- /rom_metacritic_match/metacritic_db.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | 4 | class MetacriticDatabase: 5 | def __init__(self): 6 | self.conn = sqlite3.connect("metacritic_games.db") 7 | self.cursor = self.conn.cursor() 8 | self.create_tables() 9 | 10 | def create_tables(self): 11 | self.cursor.execute(""" 12 | CREATE TABLE IF NOT EXISTS games ( 13 | game_slug TEXT PRIMARY KEY, 14 | title TEXT, 15 | user_score FLOAT, 16 | user_reviews INT, 17 | critic_score FLOAT, 18 | critic_reviews INT, 19 | developer TEXT, 20 | publisher TEXT 21 | ) 22 | """) 23 | self.cursor.execute(""" 24 | CREATE TABLE IF NOT EXISTS game_platforms ( 25 | platform TEXT, 26 | game_slug TEXT, 27 | user_score FLOAT, 28 | user_reviews INT, 29 | critic_score FLOAT, 30 | critic_reviews INT, 31 | PRIMARY KEY (platform, game_slug), 32 | FOREIGN KEY (game_slug) REFERENCES games(game_slug) 33 | ) 34 | """) 35 | self.cursor.execute(""" 36 | CREATE TABLE IF NOT EXISTS game_platform_roms ( 37 | name TEXT, 38 | platform TEXT, 39 | game_slug TEXT, 40 | size INT, 41 | region TEXT, 42 | PRIMARY KEY (name, platform, game_slug), 43 | FOREIGN KEY (platform, game_slug) REFERENCES game_platforms(platform, game_slug), 44 | FOREIGN KEY (game_slug) REFERENCES games(game_slug) 45 | ) 46 | """) 47 | self.conn.commit() 48 | 49 | def insert_game( 50 | self, 51 | game_slug, 52 | title, 53 | user_score, 54 | user_reviews, 55 | critic_score, 56 | critic_reviews, 57 | developer, 58 | publisher, 59 | ): 60 | self.cursor.execute( 61 | """ 62 | INSERT OR REPLACE INTO games 63 | (game_slug, title, user_score, user_reviews, critic_score, critic_reviews, developer, publisher) 64 | VALUES (?, ?, ?, ?, ?, ?, ?, ?) 65 | """, 66 | ( 67 | game_slug, 68 | title, 69 | user_score, 70 | user_reviews, 71 | critic_score, 72 | critic_reviews, 73 | developer, 74 | publisher, 75 | ), 76 | ) 77 | 78 | def insert_platform_game( 79 | self, 80 | platform, 81 | game_slug, 82 | user_score, 83 | user_reviews, 84 | critic_score, 85 | critic_reviews, 86 | ): 87 | self.cursor.execute( 88 | """ 89 | INSERT OR REPLACE INTO game_platforms 90 | (platform, game_slug, user_score, user_reviews, critic_score, critic_reviews) 91 | VALUES (?, ?, ?, ?, ?, ?) 92 | """, 93 | ( 94 | platform, 95 | game_slug, 96 | user_score, 97 | user_reviews, 98 | critic_score, 99 | critic_reviews, 100 | ), 101 | ) 102 | 103 | def insert_rom(self, name, platform, game_slug, size, region=None): 104 | self.cursor.execute( 105 | """ 106 | INSERT OR REPLACE INTO game_platform_roms (name, platform, game_slug, size, region) 107 | VALUES (?, ?, ?, ?, ?) 108 | """, 109 | (name, platform, game_slug, size, region), 110 | ) 111 | 112 | def game_exists(self, game_slug): 113 | self.cursor.execute( 114 | "SELECT game_slug FROM games WHERE game_slug = ?", (game_slug,) 115 | ) 116 | return self.cursor.fetchone() is not None 117 | 118 | def get_platform_games_best_critic_user( 119 | self, 120 | platform, 121 | min_critic_reviews=4, 122 | min_user_reviews=10, 123 | ): 124 | self.cursor.execute( 125 | """ 126 | SELECT 127 | gp.game_slug, 128 | g.title, 129 | g.developer, 130 | g.publisher, 131 | (CASE 132 | WHEN (gp.critic_reviews >= ? and gp.user_reviews >= ? and gp.critic_score >= gp.user_score) or (gp.critic_reviews >= ? and gp.user_reviews < ?) 133 | THEN gp.critic_score 134 | WHEN (gp.critic_reviews >= ? and gp.user_reviews >= ? and gp.critic_score < gp.user_score) or (gp.critic_reviews < ? and gp.user_reviews >= ?) 135 | THEN gp.user_score 136 | ELSE NULL 137 | END ) AS best_score 138 | FROM 139 | game_platforms gp 140 | JOIN 141 | games g ON gp.game_slug = g.game_slug 142 | WHERE 143 | gp.platform = ? and best_score not null 144 | ORDER BY best_score DESC 145 | """, 146 | ( 147 | min_critic_reviews, 148 | min_user_reviews, 149 | min_critic_reviews, 150 | min_user_reviews, 151 | min_critic_reviews, 152 | min_user_reviews, 153 | min_critic_reviews, 154 | min_user_reviews, 155 | platform, 156 | ), 157 | ) 158 | games = self.cursor.fetchall() 159 | return games 160 | 161 | def get_platform_games_avg_critic_user( 162 | self, 163 | platform, 164 | min_critic_reviews=4, 165 | min_user_reviews=10, 166 | ): 167 | self.cursor.execute( 168 | """ 169 | SELECT 170 | gp.game_slug, 171 | g.title, 172 | g.developer, 173 | g.publisher, 174 | (CASE 175 | WHEN gp.critic_reviews >= ? and gp.user_reviews >= ? 176 | THEN (gp.critic_score + gp.user_score) / 2 177 | WHEN gp.critic_reviews >= ? and gp.user_reviews < ? 178 | THEN gp.critic_score 179 | WHEN gp.critic_reviews < ? and gp.user_reviews >= ? 180 | THEN gp.user_score 181 | ELSE NULL 182 | END ) AS avg_score 183 | FROM 184 | game_platforms gp 185 | JOIN 186 | games g ON gp.game_slug = g.game_slug 187 | WHERE 188 | gp.platform = ? and avg_score not null 189 | ORDER BY avg_score DESC 190 | """, 191 | ( 192 | min_critic_reviews, 193 | min_user_reviews, 194 | min_critic_reviews, 195 | min_user_reviews, 196 | min_critic_reviews, 197 | min_user_reviews, 198 | platform, 199 | ), 200 | ) 201 | games = self.cursor.fetchall() 202 | return games 203 | 204 | def get_platform_games_critic( 205 | self, 206 | platform, 207 | min_critic_score=6, 208 | min_critic_reviews=4, 209 | ): 210 | self.cursor.execute( 211 | """ 212 | SELECT 213 | gp.game_slug, 214 | g.title, 215 | g.developer, 216 | g.publisher, 217 | gp.critic_score 218 | FROM 219 | game_platforms gp 220 | JOIN 221 | games g ON gp.game_slug = g.game_slug 222 | WHERE 223 | gp.platform = ? and 224 | gp.critic_score >= ? and gp.critic_reviews >= ? 225 | ORDER BY gp.critic_score DESC 226 | """, 227 | ( 228 | platform, 229 | min_critic_score, 230 | min_critic_reviews, 231 | ), 232 | ) 233 | games = self.cursor.fetchall() 234 | return games 235 | 236 | def get_platform_exclusive_games_best_critic_user( 237 | self, 238 | platform, 239 | min_critic_reviews=4, 240 | min_user_reviews=10, 241 | ): 242 | self.cursor.execute( 243 | """ 244 | SELECT 245 | gp.game_slug, 246 | g.title, 247 | g.developer, 248 | g.publisher, 249 | (CASE 250 | WHEN (gp.critic_reviews >= ? and gp.user_reviews >= ? and gp.critic_score >= gp.user_score) or (gp.critic_reviews >= ? and gp.user_reviews < ?) 251 | THEN gp.critic_score 252 | WHEN (gp.critic_reviews >= ? and gp.user_reviews >= ? and gp.critic_score < gp.user_score) or (gp.critic_reviews < ? and gp.user_reviews >= ?) 253 | THEN gp.user_score 254 | ELSE NULL 255 | END ) AS best_score 256 | FROM 257 | game_platforms gp 258 | JOIN 259 | games g ON gp.game_slug = g.game_slug 260 | GROUP BY gp.game_slug 261 | HAVING COUNT(platform) = 1 and gp.platform = ? and best_score not null 262 | ORDER BY best_score DESC 263 | """, 264 | ( 265 | min_critic_reviews, 266 | min_user_reviews, 267 | min_critic_reviews, 268 | min_user_reviews, 269 | min_critic_reviews, 270 | min_user_reviews, 271 | min_critic_reviews, 272 | min_user_reviews, 273 | platform, 274 | ), 275 | ) 276 | games = self.cursor.fetchall() 277 | return games 278 | 279 | def get_platform_exclusive_games_avg_critic_user( 280 | self, 281 | platform, 282 | min_critic_reviews=4, 283 | min_user_reviews=10, 284 | ): 285 | self.cursor.execute( 286 | """ 287 | SELECT 288 | gp.game_slug, 289 | g.title, 290 | g.developer, 291 | g.publisher, 292 | (CASE 293 | WHEN gp.critic_reviews >= ? and gp.user_reviews >= ? 294 | THEN (gp.critic_score + gp.user_score) / 2 295 | WHEN gp.critic_reviews >= ? and gp.user_reviews < ? 296 | THEN gp.critic_score 297 | WHEN gp.critic_reviews < ? and gp.user_reviews >= ? 298 | THEN gp.user_score 299 | ELSE NULL 300 | END ) AS avg_score 301 | FROM 302 | game_platforms gp 303 | JOIN 304 | games g ON gp.game_slug = g.game_slug 305 | GROUP BY gp.game_slug 306 | HAVING COUNT(platform) = 1 and gp.platform = ? and avg_score not null 307 | ORDER BY avg_score DESC 308 | """, 309 | ( 310 | min_critic_reviews, 311 | min_user_reviews, 312 | min_critic_reviews, 313 | min_user_reviews, 314 | min_critic_reviews, 315 | min_user_reviews, 316 | platform, 317 | ), 318 | ) 319 | games = self.cursor.fetchall() 320 | return games 321 | 322 | def get_platform_exclusive_games_critic( 323 | self, 324 | platform, 325 | min_critic_score=6, 326 | min_critic_reviews=4, 327 | ): 328 | self.cursor.execute( 329 | """ 330 | SELECT 331 | gp.game_slug, 332 | g.title, 333 | g.developer, 334 | g.publisher, 335 | gp.critic_score 336 | FROM 337 | game_platforms gp 338 | JOIN 339 | games g ON gp.game_slug = g.game_slug 340 | GROUP BY gp.game_slug 341 | HAVING COUNT(platform) = 1 and gp.platform = ? and 342 | gp.critic_score >= ? and gp.critic_reviews >= ? 343 | ORDER BY gp.critic_score DESC 344 | """, 345 | ( 346 | platform, 347 | min_critic_score, 348 | min_critic_reviews, 349 | ), 350 | ) 351 | games = self.cursor.fetchall() 352 | return games 353 | 354 | def close(self): 355 | self.conn.close() 356 | 357 | def commit(self): 358 | self.conn.commit() 359 | -------------------------------------------------------------------------------- /rom_metacritic_match/overrides.py: -------------------------------------------------------------------------------- 1 | # Some matches are too difficult for fuzzy matching, so this manually maps the best ROM to the game. 2 | # The second parameter is size, which is only required for multi-disc overrides. 3 | # It should be the sum of all disc sizes. 4 | overrides: dict[dict[tuple[str, int | None]]] = { 5 | "Nintendo - GameCube": { 6 | "Resident Evil (Remake)": ("Resident Evil (USA) (Disc 2).iso", 2919956480), 7 | "Star Wars Rogue Leader: Rogue Squadron II": ( 8 | "Star Wars - Rogue Squadron II - Rogue Leader (USA).iso", 9 | None, 10 | ), 11 | }, 12 | "Nintendo - Wii": { 13 | "Resident Evil (Remake)": ( 14 | "Resident Evil Archives - Resident Evil (USA).iso", 15 | None, 16 | ), 17 | "The Godfather": ("Godfather, The - Blackhand Edition (USA).iso", None), 18 | "EA Sports Active 2": ( 19 | "EA Sports Active 2 - Personal Trainer (USA) (En,Fr,Es).iso", 20 | None, 21 | ), 22 | "Sam & Max: Save the World": ( 23 | "Sam & Max - Season One (USA) (En,Fr,Es).iso", 24 | None, 25 | ), 26 | }, 27 | "Sega - Dreamcast": { 28 | "Virtua Tennis 2": ( 29 | "Tennis 2K2 (USA) (En,Ja,Fr,De,Es) (Rev A) (Track 3).bin", 30 | None, 31 | ), 32 | "The Last Blade 2": ( 33 | "Last Blade 2, The - Heart of the Samurai (USA) (Track 5).bin", 34 | None, 35 | ), 36 | }, 37 | "Nintendo - Nintendo DS": {}, 38 | "Sony - PlayStation 2": {}, 39 | } 40 | -------------------------------------------------------------------------------- /rom_metacritic_match/rom_match_platform.py: -------------------------------------------------------------------------------- 1 | from dataclasses import dataclass 2 | from typing import List 3 | 4 | 5 | @dataclass 6 | class RomMatchPlatform: 7 | rdb_names: List[str] 8 | platform_slug: str 9 | metacritic_id: int 10 | -------------------------------------------------------------------------------- /rom_metacritic_match/rom_metacritic_match.py: -------------------------------------------------------------------------------- 1 | import bisect 2 | import json 3 | import re 4 | from functools import lru_cache 5 | from typing import List 6 | 7 | from rapidfuzz import fuzz, process 8 | 9 | from common.metacritic import get_all_game_ratings, get_all_game_slugs_metacritic 10 | from common.parse_rdb import RdbEntry 11 | from rom_metacritic_match.metacritic_db import MetacriticDatabase 12 | from top_games_size.platform import Platform 13 | 14 | 15 | def scrape_metacritic_games(platforms: List[Platform]): 16 | game_slugs = get_all_game_slugs_metacritic(platforms) 17 | with open("output/game_slugs.json", "w") as file: 18 | json.dump(game_slugs, file) 19 | 20 | 21 | def scrape_scores(): 22 | with open("output/game_slugs.json", "r") as file: 23 | game_slugs = json.load(file) 24 | 25 | all_game_ratings = [] 26 | count = 0 27 | db = MetacriticDatabase() 28 | 29 | for game_slug in game_slugs: 30 | if count % 10 == 0: 31 | print(f"Fetching scores for game {count}") 32 | try: 33 | # if db.game_exists(game_slug): 34 | # continue 35 | game_rating = get_all_game_ratings(game_slug) 36 | all_game_ratings.append(game_rating) 37 | db.insert_game( 38 | game_rating.game_slug, 39 | game_rating.title, 40 | game_rating.overall_score.user_score.score, 41 | game_rating.overall_score.user_score.review_count, 42 | game_rating.overall_score.critic_score.score, 43 | game_rating.overall_score.critic_score.review_count, 44 | game_rating.developer, 45 | game_rating.publisher, 46 | ) 47 | for platform in game_rating.platform_scores: 48 | db.insert_platform_game( 49 | platform.platform_slug, 50 | game_rating.game_slug, 51 | platform.user_score.score, 52 | platform.user_score.review_count, 53 | platform.critic_score.score, 54 | platform.critic_score.review_count, 55 | ) 56 | db.commit() 57 | except Exception as e: 58 | print(e) 59 | with open("output/failed_game_slugs.txt", "a") as file: 60 | file.write(game_slug + "\n") 61 | count += 1 62 | db.close() 63 | 64 | 65 | @lru_cache(maxsize=None) 66 | def clean_name(rom_name: str) -> str: 67 | # Remove parenthesis groups 68 | clean_name = re.sub(r"\([^()]*\)", "", rom_name) 69 | # Remove file extension 70 | clean_name = re.sub(r"\.[^.]+$", "", clean_name) 71 | clean_name = clean_name.strip() 72 | 73 | # TODO: Handle cases like "Godfather, The - Blackhand Edition (USA).iso" 74 | words = clean_name.split() 75 | if words[-1] in {"The", "A", "An"}: 76 | # Move the article to the beginning of the title 77 | reordered_name = f"{words[-1]} {' '.join(words[:-1])}" 78 | reordered_name = reordered_name.rstrip(",") 79 | else: 80 | # Title doesn't end with an article, keep it unchanged 81 | reordered_name = clean_name 82 | 83 | return reordered_name 84 | 85 | 86 | @lru_cache(maxsize=None) 87 | def scorer(query, choice, **kwargs): 88 | return fuzz.ratio(query, clean_name(choice), **kwargs) 89 | 90 | 91 | def refine_results( 92 | results: list[tuple[str, float, int]], rdb_games: list[RdbEntry] 93 | ) -> list[tuple[str, float, int]]: 94 | highest_score = results[0][1] 95 | highest_score_results = [] 96 | 97 | # Iterate through the list and collect tuples with the highest score 98 | for result in results: 99 | if result[1] == highest_score: 100 | highest_score_results.append(result) 101 | else: 102 | # Since the list is sorted, once we find a score lower than the highest score, we can stop 103 | break 104 | # Apply bonus scores to best matches to break ties 105 | sorted_results = [] 106 | for result in highest_score_results: 107 | match_str, score, index = result 108 | rom_name = rdb_games[index].rom_name 109 | bonus = 0 110 | if "(Demo" in rom_name: 111 | bonus += -50 112 | if "Preview Disc" in rom_name: 113 | bonus += -50 114 | if "Bonus Disc" in rom_name: 115 | bonus += -25 116 | if "(Beta" in rom_name: 117 | bonus += -25 118 | if "(LodgeNet)" in rom_name: 119 | bonus += -25 120 | if "Virtual Console)" in rom_name: 121 | bonus += -25 122 | if "(Japan" in rom_name: 123 | bonus += 10 124 | if "(USA" in rom_name: 125 | bonus += 20 126 | 127 | disc_match = re.search(r"\(Disc (\d+)\)", rom_name) 128 | if disc_match: 129 | disc_number = int(disc_match.group(1)) 130 | bonus += disc_number * 5 # Adjust bonus proportionally to the disc number 131 | 132 | rev_match = re.search(r"\(Rev (\d+)\)", rom_name) 133 | if rev_match: 134 | rev_number = int(rev_match.group(1)) 135 | bonus += rev_number * 5 # Adjust bonus proportionally to the rev number 136 | 137 | bisect.insort( 138 | sorted_results, (rom_name, score + bonus, index), key=lambda x: -1 * x[1] 139 | ) 140 | 141 | return sorted_results 142 | 143 | 144 | def find_all_discs_size( 145 | results: list[tuple[str, float, int]], rdb_games: list[RdbEntry] 146 | ) -> int: 147 | match_str, score, index = results[0] 148 | rdb_game = rdb_games[index] 149 | disc_match = re.search(r"\(Disc (\d+)\)", rdb_game.rom_name) 150 | if not disc_match: 151 | return rdb_game.size 152 | max_disc_number = int(disc_match.group(1)) 153 | 154 | # Generate titles for each disc number 155 | total_size = rdb_game.size 156 | for disc_number in range(1, max_disc_number): 157 | disc_match = next((x for x in results if f"(Disc {disc_number})" in x[0]), None) 158 | if disc_match: 159 | match_str, score, index = disc_match 160 | total_size += rdb_games[index].size 161 | return total_size 162 | 163 | 164 | def fast_title_match( 165 | metacritic_game: tuple[str, str, str, str, float], 166 | rdb_games: List[RdbEntry], 167 | min_score=60, 168 | ) -> tuple[str, int]: 169 | game_slug, meta_title, meta_developer, meta_publisher, score = metacritic_game 170 | 171 | rdb_titles = list(map(lambda x: x.rom_name, rdb_games)) 172 | 173 | meta_title_clean = re.sub(r"\(\d{4}\)$", "", meta_title) 174 | meta_title_clean = re.sub(r"\(Remake\)$", "", meta_title_clean) 175 | results = process.extract( 176 | meta_title_clean, rdb_titles, score_cutoff=min_score, scorer=scorer, limit=None 177 | ) 178 | if not (results and results[0]): 179 | return 180 | refined_results = refine_results(results, rdb_games) 181 | size = find_all_discs_size(refined_results, rdb_games) 182 | rom_name = refined_results[0][0] 183 | return rom_name, size 184 | -------------------------------------------------------------------------------- /top_games_size/__main__.py: -------------------------------------------------------------------------------- 1 | from top_games_size.get_top_sizes import get_top_sizes 2 | from top_games_size.platform import Platform 3 | 4 | IGDB_MIN_RATINGS = 4 5 | TOP_N_GAMES = 200 6 | MINIMUM_RATING = 75 7 | CRITIC_SCORE = True # False for user score 8 | USE_METACRITIC = True # False for IGDB 9 | 10 | platforms = [ 11 | Platform("Sony - PlayStation", 7, 1500000078, TOP_N_GAMES), 12 | Platform("Sony - PlayStation 2", 8, 1500000094, TOP_N_GAMES), 13 | Platform("Sony - PlayStation Portable", 38, 1500000109, TOP_N_GAMES), 14 | Platform("Sony - PlayStation Vita", None, 1500000117, TOP_N_GAMES), 15 | Platform("Nintendo - GameCube", 21, 1500000099, TOP_N_GAMES), 16 | Platform("Nintendo - Wii", 5, 1500000114, TOP_N_GAMES), 17 | # Platform("Sega - Saturn", 32, None, TOP_N_GAMES), 18 | Platform("Sega - Dreamcast", 23, 1500000067, TOP_N_GAMES), 19 | Platform("Microsoft - Xbox", 11, 1500000098, 500, filter_list=True), 20 | # Platform("Microsoft - Xbox 360", 12, 1500000111, TOP_N_GAMES), 21 | ] 22 | 23 | if __name__ == "__main__": 24 | get_top_sizes( 25 | platforms, 26 | min_ratings=IGDB_MIN_RATINGS, 27 | use_critic_ratings=CRITIC_SCORE, 28 | use_metacritic=USE_METACRITIC, 29 | min_rating=MINIMUM_RATING, 30 | ) 31 | -------------------------------------------------------------------------------- /top_games_size/game_size.py: -------------------------------------------------------------------------------- 1 | class GameSize: 2 | def __init__(self, name, size): 3 | self.name = name 4 | self.size = size 5 | -------------------------------------------------------------------------------- /top_games_size/get_top_sizes.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | import humanize 4 | from rapidfuzz import fuzz, process, utils 5 | 6 | from common.metacritic import ( 7 | get_top_rated_games_metacritic, 8 | ) 9 | from top_games_size.igdb import get_top_rated_games 10 | from top_games_size.parse_archive_org_xml import parse_archive_org_xml 11 | from top_games_size.parse_redump_dat import parse_redump_xml 12 | 13 | redump_dat_dir = "redump_datfiles" 14 | archive_org_xml_dir = "archive_org_xml" 15 | filter_list_dir = "filter_list" 16 | 17 | 18 | def get_top_sizes(platforms, **kwargs): 19 | lines = [] 20 | grand_total_bytes = 0 21 | for platform in platforms: 22 | line, total_bytes = get_top_sizes_platform(platform, **kwargs) 23 | lines.append(line) 24 | grand_total_bytes += total_bytes 25 | print("===RESULTS===") 26 | print(*lines, sep="\n") 27 | print("-------------") 28 | print(f"GRAND TOTAL: {humanize.naturalsize(grand_total_bytes, binary=True)}") 29 | 30 | 31 | def get_top_sizes_platform(platform, **kwargs): 32 | use_metacritic = kwargs.get("use_metacritic") 33 | print(f"Processing: {platform.name}") 34 | game_sizes = [] 35 | platform_dat_filename = get_platform_dat(platform) 36 | archive_org_xml_filename = get_archive_org_xml(platform) 37 | if platform_dat_filename: 38 | game_sizes = parse_redump_xml(read_platform_dat(platform_dat_filename)) 39 | elif archive_org_xml_filename: 40 | game_sizes = parse_archive_org_xml( 41 | read_archive_org_xml(archive_org_xml_filename) 42 | ) 43 | else: 44 | raise FileNotFoundError( 45 | f"No file game size file matching the platform name: {platform.name}" 46 | ) 47 | 48 | top_games = [] 49 | if use_metacritic: 50 | if not platform.metacritic_id: 51 | return (f"{platform.name}: None", 0) 52 | top_games = get_top_rated_games_metacritic(platform, **kwargs) 53 | else: 54 | top_games = get_top_rated_games(platform, **kwargs) 55 | 56 | if platform.filter_list: 57 | filter_list = read_filter_list(get_filter_list(platform)).splitlines() 58 | result = process.cdist( 59 | top_games, 60 | filter_list, 61 | scorer=fuzz.ratio, 62 | score_cutoff=70, 63 | processor=utils.default_process, 64 | ) 65 | filtered_top_games = [] 66 | for i, row in enumerate(result): 67 | max_score = max(row) 68 | if max_score >= 70: 69 | filtered_top_games.append(top_games[i]) 70 | 71 | top_games = filtered_top_games 72 | 73 | top_game_sizes = [] 74 | game_size_names = list(map(lambda x: x.name, game_sizes)) 75 | for top_game in top_games: 76 | result = process.extractOne( 77 | top_game, 78 | game_size_names, 79 | scorer=fuzz.WRatio, 80 | score_cutoff=60, 81 | processor=utils.default_process, 82 | ) 83 | if result: 84 | matched_game, score, index = result 85 | # print(score, igdb_game.name, matched_game, sep=" | ") 86 | top_game_sizes.append(game_sizes[index]) 87 | else: 88 | print(f"FAILED TO MATCH: {top_game}") 89 | 90 | if not os.path.exists("output"): 91 | os.makedirs("output") 92 | with open(f"output/{platform.name}.txt", "w") as file: 93 | for string in sorted(top_games, key=sort_ignore_articles): 94 | file.write(string + "\n") 95 | 96 | total_bytes = sum_redump_games(top_game_sizes) 97 | human_size = humanize.naturalsize(total_bytes, binary=True) 98 | return ( 99 | f"{platform.name}: {human_size} ({len(top_game_sizes)} games)", 100 | total_bytes, 101 | ) 102 | 103 | 104 | def get_platform_dat(platform): 105 | files = os.listdir(redump_dat_dir) 106 | 107 | # Find the file that starts with the platform string 108 | matching_files = [ 109 | file 110 | for file in files 111 | if file.startswith(platform.name) and file.endswith(".dat") 112 | ] 113 | return matching_files[0] if matching_files else None 114 | 115 | 116 | def read_platform_dat(file_name): 117 | file_path = os.path.join(redump_dat_dir, file_name) 118 | with open(file_path, "r") as file: 119 | file_contents = file.read() 120 | return file_contents 121 | 122 | 123 | def get_archive_org_xml(platform): 124 | files = os.listdir(archive_org_xml_dir) 125 | 126 | # Find the file that starts with the platform string 127 | matching_files = [ 128 | file 129 | for file in files 130 | if file.startswith(platform.name) and file.endswith(".xml") 131 | ] 132 | return matching_files[0] if matching_files else None 133 | 134 | 135 | def read_archive_org_xml(filename): 136 | file_path = os.path.join(archive_org_xml_dir, filename) 137 | with open(file_path, "r") as file: 138 | file_contents = file.read() 139 | return file_contents 140 | 141 | 142 | def get_filter_list(platform): 143 | files = os.listdir(filter_list_dir) 144 | 145 | # Find the file that starts with the platform string 146 | matching_files = [ 147 | file 148 | for file in files 149 | if file.startswith(platform.name) and file.endswith(".txt") 150 | ] 151 | return matching_files[0] if matching_files else None 152 | 153 | 154 | def read_filter_list(filename): 155 | file_path = os.path.join(filter_list_dir, filename) 156 | with open(file_path, "r") as file: 157 | file_contents = file.read() 158 | return file_contents 159 | 160 | 161 | def sum_redump_games(redump_games): 162 | total_bytes = 0 163 | for redump_game in redump_games: 164 | total_bytes += redump_game.size 165 | # print(humanize.naturalsize(biggest_rom.size, binary=True), redump_game.name, sep=" | ") 166 | return total_bytes 167 | 168 | 169 | def sort_ignore_articles(string): 170 | articles = ["a", "an", "the"] 171 | words = string.split() 172 | if words[0].lower() in articles: 173 | return " ".join(words[1:]) 174 | return string 175 | -------------------------------------------------------------------------------- /top_games_size/igdb.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | import requests 4 | from dotenv import load_dotenv 5 | from igdb.igdbapi_pb2 import GameResult, PlatformResult 6 | from igdb.wrapper import IGDBWrapper 7 | 8 | load_dotenv() 9 | 10 | wrapper = None 11 | 12 | 13 | def get_wrapper(): 14 | params = { 15 | "client_id": os.getenv("IGDB_CLIENT_ID"), 16 | "client_secret": os.getenv("IGDB_CLIENT_SECRET"), 17 | "grant_type": "client_credentials", 18 | } 19 | 20 | # Send POST request to the API endpoint 21 | response = requests.post("https://id.twitch.tv/oauth2/token", params=params) 22 | 23 | # Check if request was successful 24 | if response.status_code == 200: 25 | # Parse response JSON 26 | data = response.json() 27 | access_token = data.get("access_token") 28 | wrapper = IGDBWrapper(os.getenv("IGDB_CLIENT_ID"), access_token) 29 | return wrapper 30 | 31 | else: 32 | print("Error:", response.text) 33 | 34 | 35 | def get_top_rated_games(platform, **kwargs): 36 | limit = platform.limit 37 | min_ratings = kwargs.get("min_ratings") 38 | use_critic_ratings = kwargs.get("use_critic_ratings") 39 | 40 | global wrapper 41 | if not wrapper: 42 | wrapper = get_wrapper() 43 | 44 | # Protobuf API request 45 | 46 | rating_query = ( 47 | f"aggregated_rating_count >= {min_ratings} ; sort aggregated_rating desc;" 48 | if use_critic_ratings 49 | else f"rating_count >= {min_ratings} ; sort rating desc;" 50 | ) 51 | byte_array = wrapper.api_request( 52 | "games.pb", # Note the '.pb' suffix at the endpoint 53 | f"fields name; offset 0; where platforms={platform.igdb_id} & {rating_query} limit {limit};", 54 | ) 55 | games_message = GameResult() 56 | games_message.ParseFromString( 57 | byte_array 58 | ) # Fills the protobuf message object with the response 59 | games = games_message.games 60 | 61 | return list(map(lambda x: x.name, games)) 62 | 63 | 64 | def get_platforms(): 65 | global wrapper 66 | if not wrapper: 67 | wrapper = get_wrapper() 68 | 69 | # Protobuf API request 70 | 71 | byte_array = wrapper.api_request( 72 | "platforms.pb", # Note the '.pb' suffix at the endpoint 73 | "fields name, id; offset 0; sort id asc; limit 500;", 74 | ) 75 | platform_message = PlatformResult() 76 | platform_message.ParseFromString( 77 | byte_array 78 | ) # Fills the protobuf message object with the response 79 | platforms = platform_message.platforms 80 | for platform in platforms: 81 | print(f"{platform.id}: {platform.name}") 82 | return platforms 83 | -------------------------------------------------------------------------------- /top_games_size/parse_archive_org_xml.py: -------------------------------------------------------------------------------- 1 | import xml.etree.ElementTree as ET 2 | 3 | from top_games_size.game_size import GameSize 4 | 5 | 6 | class File: 7 | def __init__(self, name, size, format): 8 | self.name = name 9 | self.size = size 10 | self.format = format 11 | 12 | @classmethod 13 | def from_xml(cls, xml_element): 14 | name = xml_element.get("name") 15 | size_element = xml_element.find("size") 16 | size = int(size_element.text) if size_element is not None else None 17 | format_element = xml_element.find("format") 18 | format = format_element.text if format_element is not None else None 19 | return cls(name, size, format) 20 | 21 | 22 | def parse_archive_org_xml(xml_string): 23 | root = ET.fromstring(xml_string) 24 | 25 | game_sizes = [] 26 | 27 | for file_element in root.findall("file"): 28 | file_obj = File.from_xml(file_element) 29 | if file_obj.format == "ZIP": 30 | game_sizes.append(GameSize(file_obj.name, file_obj.size)) 31 | 32 | return game_sizes 33 | -------------------------------------------------------------------------------- /top_games_size/parse_redump_dat.py: -------------------------------------------------------------------------------- 1 | import xml.etree.ElementTree as ET 2 | 3 | from top_games_size.game_size import GameSize 4 | 5 | 6 | class Game: 7 | def __init__(self, name, category, description, roms): 8 | self.name = name 9 | self.category = category 10 | self.description = description 11 | self.roms = roms 12 | 13 | 14 | class Rom: 15 | def __init__(self, name, size, crc, md5, sha1): 16 | self.name = name 17 | self.size = size 18 | self.crc = crc 19 | self.md5 = md5 20 | self.sha1 = sha1 21 | 22 | 23 | def parse_redump_xml(xml_string): 24 | root = ET.fromstring(xml_string) 25 | 26 | game_sizes = [] 27 | 28 | for game_element in root.findall("game"): 29 | name = game_element.attrib["name"] 30 | category = game_element.find("category").text 31 | description = game_element.find("description").text 32 | 33 | roms = [] 34 | for rom_element in game_element.findall("rom"): 35 | rom = Rom( 36 | rom_element.attrib["name"], 37 | int(rom_element.attrib["size"]), 38 | rom_element.attrib.get("crc", ""), 39 | rom_element.attrib.get("md5", ""), 40 | rom_element.attrib.get("sha1", ""), 41 | ) 42 | roms.append(rom) 43 | 44 | game = Game(name, category, description, roms) 45 | 46 | ## Filter out junk 47 | if category == "Games": 48 | biggest_rom = None 49 | for rom in game.roms: 50 | if not biggest_rom or rom.size > biggest_rom.size: 51 | biggest_rom = rom 52 | 53 | game_sizes.append(GameSize(name, biggest_rom.size)) 54 | 55 | return game_sizes 56 | -------------------------------------------------------------------------------- /top_games_size/platform.py: -------------------------------------------------------------------------------- 1 | class Platform: 2 | def __init__(self, name, igdb_id, metacritic_id, limit, filter_list=False): 3 | self.name = name 4 | self.igdb_id = igdb_id 5 | self.metacritic_id = metacritic_id 6 | self.limit = limit 7 | self.filter_list = filter_list 8 | --------------------------------------------------------------------------------