Last active
November 2, 2023 14:13
-
-
Save craigerskine/0b79d4fead282adca3a919e27e41c68b to your computer and use it in GitHub Desktop.
Elasticlunr and Alpine.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en" class="bg-transparent antialiased" x-data="app" x-init="searchData()"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<title x-text="site.title"></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<link href="https://fonts.gstatic.com" rel="preconnect" /> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet" /> | |
</head> | |
<body class="bg-gray-50 text-gray-700 !block" style="display: none;" @keydown.ctrl.k.prevent.document="search.bar = true" @keydown.meta.k.prevent.document="search.bar = true"> | |
<div id="app" class="min-h-screen flex-(& col)" x-cloak> | |
<main class="mx-auto py-12 px-4 w-full max-w-xl"> | |
<div class="flex-(& col) gap-12"> | |
<h1 x-text="site.title" class="text-2xl font-black md:(text-3xl tracking-tight)"></h1> | |
<div class="form-group relative"> | |
<input x-model="query" @input="search()" type="search" placeholder="Search video games: pokemon, monster hunter, final fantasy, etc." class="py-2 pl-9 pr-3 border-(1 gray-500/20) w-full block rounded-full" /> | |
<span class="pointer-events-none absolute top-1/2 left-3 -translate-y-1/2 opacity-50"><iconify-icon icon="mdi:magnify" inline class="iconify"></iconify-icon></span> | |
</div> | |
<template x-if="results.length" hidden> | |
<div> | |
<div class="pb-1 border-(b gray-500/20) text-(sm gray-500) flex items-center justify-between"> | |
<h2 class="font-semibold uppercase">Results</h2> | |
<small x-text="results.length" class="italic"></small> | |
</div> | |
<ul class="divide-y-(1 gray-500/20)"> | |
<template x-for="result in results" hidden> | |
<li class="py-4 flex-(& col)"> | |
<h3 x-text="result.title" class="text-lg font-bold"></h3> | |
<p x-text="result.platform" class="text-sm"></p> | |
<template x-if="result.note" hidden> | |
<small x-html="'~ '+ result.note" class="text-(xs end wrap-balance) italic opacity-70 md:(ml-auto w-1/2)"></small> | |
</template> | |
</li> | |
</template> | |
</ul> | |
</div> | |
</template> | |
</div> | |
</main> | |
</div> | |
<script src="https://cdn.jsdelivr.net/npm/elasticlunr/elasticlunr.js"></script> | |
<script type="module"> | |
// icons | |
import 'https://esm.run/iconify-icon'; | |
// alpine | |
import Alpine from 'https://esm.run/alpinejs'; | |
document.addEventListener('alpine:init', () => { | |
Alpine.data('app', () => ({ | |
site: { | |
title: 'Elasticlunr + Alpine.js: Example', | |
}, | |
query: '', | |
results: [], | |
data: [], | |
index: null, | |
searchData() { | |
fetch('./data.json') | |
.then((response) => response.json()) | |
.then((data) => { | |
this.data = data; | |
this.index = elasticlunr(function() { | |
this.addField('id'); | |
this.addField('title'); | |
this.addField('note'); | |
this.setRef('id'); | |
this.saveDocument(false); | |
}); | |
data.forEach((item) => { | |
this.index.addDoc(item); | |
}); | |
}); | |
}, | |
search() { | |
if (this.index) { | |
this.results = this.index | |
.search(this.query, { | |
expand: true, | |
bool: 'AND', | |
}) | |
.map((result) => this.data.find((item) => item.id === result.ref)); | |
} | |
}, | |
})); | |
}); | |
window.Alpine = Alpine; | |
Alpine.start(); | |
// twind | |
import { install, injectGlobal } from 'https://esm.run/@twind/core'; | |
import presetAutoprefix from 'https://esm.run/@twind/preset-autoprefix'; | |
import presetTailwind from 'https://esm.run/@twind/preset-tailwind'; | |
install({ | |
presets: [presetAutoprefix(), presetTailwind()], | |
darkMode: 'class', | |
hash: false, | |
theme: { | |
extend: { | |
fontFamily: ({ theme }) => ({ | |
sans: ['Inter', ...theme('fontFamily.sans')], | |
}), | |
}, | |
}, | |
rules: [ | |
['text-wrap-(unset|wrap|nowrap|balance)', 'textWrap'], | |
], | |
}); | |
// global css | |
injectGlobal` | |
@layer base { | |
[x-cloak] { @apply hidden; } | |
} | |
` | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "hack-g-u-last-recode", | |
"title": ".hack//G.U. Last Recode", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "hack-g-u-last-recode-switch", | |
"title": ".hack//G.U. Last Recode [Switch]", | |
"note": "Begins Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "13-sentinels-aegis-rim", | |
"title": "13 Sentinels: Aegis Rim", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "13-sentinels-aegis-rim-switch", | |
"title": "13 Sentinels: Aegis Rim [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "1993-space-machine", | |
"title": "1993 Space Machine", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "88-heroes-98-heroes-edition", | |
"title": "88 Heroes: 98 Heroes Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "a-boy-and-his-blob-vita", | |
"title": "A Boy and His Blob [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "a-boy-and-his-blob-wii", | |
"title": "A Boy and His Blob [Wii]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "a-virus-named-tom", | |
"title": "A Virus Named TOM", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "ace-combat-7-skies-unknown", | |
"title": "Ace Combat 7: Skies Unknown", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "advance-wars-1-2-re-boot-camp", | |
"title": "Advance Wars 1+2: Re-Boot Camp", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "adventures-of-mana", | |
"title": "Adventures of Mana", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "afterimage", | |
"title": "Afterimage", | |
"note": "Deluxe Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "air-conflicts-collection", | |
"title": "Air Conflicts Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Shmup","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "akiba-s-trip-undead-and-undressed", | |
"title": "AKIBA'S TRIP: Undead & Undressed", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "alex-kidd-in-miracle-world-dx", | |
"title": "Alex Kidd In Miracle World DX", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "alliance-alive-hd-remaster", | |
"title": "Alliance Alive HD Remaster", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "alvastia-chronicles", | |
"title": "Alvastia Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "alwa-s-awakening", | |
"title": "Alwa's Awakening", | |
"note": "Castlemania Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "amnesia-the-dark-descent", | |
"title": "Amnesia: The Dark Descent", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "animal-crossing", | |
"title": "Animal Crossing", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "animal-crossing-new-horizons", | |
"title": "Animal Crossing: New Horizons", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "antiquia-lost", | |
"title": "Antiquia Lost", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ape-escape-on-the-loose", | |
"title": "Ape Escape: On the Loose", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "aragami-shadow-edition", | |
"title": "Aragami: Shadow Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "arc-of-alchemist", | |
"title": "Arc of Alchemist", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "arcana-heart-3-love-max", | |
"title": "Arcana Heart 3: LOVE MAX!!!!!", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "armored-core-vi-fires-of-rubicon", | |
"title": "Armored Core VI Fires of Rubicon", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "arms", | |
"title": "ARMS", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "army-corps-of-hell", | |
"title": "Army Corps of Hell", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "asdivine-hearts", | |
"title": "Asdivine Hearts", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "assault-suit-leynos", | |
"title": "Assault Suit Leynos", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "astral-chain", | |
"title": "Astral Chain", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "astria-ascending", | |
"title": "Astria Ascending", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atari-50-the-anniversary-celebration", | |
"title": "Atari 50: The Anniversary Celebration", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atelier-lulua-the-scion-of-arland", | |
"title": "Atelier Lulua: The Scion of Arland", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atelier-lydie-and-suelle-the-alchemists-and-the-mysterious-paintings", | |
"title": "Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atelier-ryza-3-alchemist-of-the-end-and-the-secret-key", | |
"title": "Atelier Ryza 3: Alchemist of the End & the Secret Key", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atelier-ryza-ever-darkness-and-the-secret-hideout", | |
"title": "Atelier Ryza: Ever Darkness & The Secret Hideout", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atelier-sophie-2-the-alchemist-of-the-mysterious-dream", | |
"title": "Atelier Sophie 2: The Alchemist of the Mysterious Dream", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "athena", | |
"title": "Athena", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "attack-on-titan", | |
"title": "Attack on Titan", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "attack-on-titan-2", | |
"title": "Attack on Titan 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "atv-offroad-fury-2", | |
"title": "ATV Offroad Fury 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "auto-racing", | |
"title": "Auto Racing", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "axiom-verge", | |
"title": "Axiom Verge", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "azure-striker-gunvolt-striker-pack", | |
"title": "Azure Striker Gunvolt: Striker Pack", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "baldo-the-guardian-owls", | |
"title": "Baldo: The Guardian Owls", | |
"note": "The Three Fairies Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bastion-steam", | |
"title": "Bastion [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "bastion-vita", | |
"title": "Bastion [Vita]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "batman", | |
"title": "Batman", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "batman-arkham-origins-blackgate", | |
"title": "Batman: Arkham Origins Blackgate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "battle-axe", | |
"title": "Battle Axe", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "battle-chasers-nightwar", | |
"title": "Battle Chasers: Nightwar", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "battle-chef-brigade-p-s4", | |
"title": "Battle Chef Brigade [PS4]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Puzzle"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "battle-chef-brigade-switch", | |
"title": "Battle Chef Brigade [Switch]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Puzzle"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "battle-chef-brigade-brigadier-edition-p-s4", | |
"title": "Battle Chef Brigade Brigadier Edition [PS4]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Puzzle"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "battle-chef-brigade-brigadier-edition-switch", | |
"title": "Battle Chef Brigade Brigadier Edition [Switch]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Puzzle"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "battle-heat", | |
"title": "Battle Heat", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Pc Fx" | |
}, | |
{ | |
"id": "battle-princess-madelyn", | |
"title": "Battle Princess Madelyn", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bayonetta", | |
"title": "Bayonetta", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bayonetta-2", | |
"title": "Bayonetta 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bayonetta-3", | |
"title": "Bayonetta 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "beats", | |
"title": "Beats", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Casual"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "beauty-and-the-beast", | |
"title": "Beauty & the Beast", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "bionic-commando", | |
"title": "Bionic Commando", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "bit-trip-runner", | |
"title": "BIT.TRIP RUNNER", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "blacksmith-of-the-sand-kingdom", | |
"title": "Blacksmith of the Sand Kingdom", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blade-strangers", | |
"title": "Blade Strangers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blaster-master", | |
"title": "Blaster Master", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "blaster-master-zero", | |
"title": "Blaster Master Zero", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blaster-master-zero-2", | |
"title": "Blaster Master Zero 2", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blaster-master-zero-3", | |
"title": "Blaster Master Zero 3", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blaz-blue-central-fiction", | |
"title": "BlazBlue: Central Fiction", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "blaz-blue-continuum-shift-extend-p-s3", | |
"title": "BlazBlue: Continuum Shift Extend [PS3]", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "blaz-blue-continuum-shift-extend-vita", | |
"title": "BlazBlue: Continuum Shift Extend [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "blazing-chrome", | |
"title": "Blazing Chrome", | |
"note": "Contra Inspired", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blazing-lazers", | |
"title": "Blazing Lazers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "blockade-runner", | |
"title": "Blockade Runner", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "bloodstained-curse-of-the-moon-2", | |
"title": "Bloodstained: Curse of the Moon 2", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bloodstained-ritual-of-the-night", | |
"title": "Bloodstained: Ritual of the Night", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blossom-tales-the-sleeping-king", | |
"title": "Blossom Tales: The Sleeping King", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "blue-dragon", | |
"title": "Blue Dragon", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "bonds-of-the-skies", | |
"title": "Bonds of the Skies", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "bonk-s-adventure", | |
"title": "Bonk's Adventure", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "boom-blox", | |
"title": "Boom Blox", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "braid", | |
"title": "Braid", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "brain-age", | |
"title": "Brain Age", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "brave-story-new-traveler", | |
"title": "Brave Story: New Traveler", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "bravely-default", | |
"title": "Bravely Default", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "bravely-default-ii", | |
"title": "Bravely Default II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bravely-second-end-layer", | |
"title": "Bravely Second: End Layer", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "breath-of-fire-iii", | |
"title": "Breath of Fire III", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "breath-of-fire-iv", | |
"title": "Breath of Fire IV", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "broken-age", | |
"title": "Broken Age", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "bruetal-legend", | |
"title": "Brütal Legend", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "bubble-bobble-4-friends", | |
"title": "Bubble Bobble 4 Friends", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "bullet-girls-phantasia", | |
"title": "Bullet Girls Phantasia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "bump-n-jump", | |
"title": "Bump N' Jump", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "burger-time", | |
"title": "Burger Time", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "burger-time-party", | |
"title": "BurgerTime Party!", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "burnout-paradise-the-ultimate-box", | |
"title": "Burnout Paradise: The Ultimate Box", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Racing"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "cadence-of-hyrule-crypt-of-the-necrodancer", | |
"title": "Cadence of Hyrule: Crypt of The Necrodancer", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "call-of-duty-black-ops-iii", | |
"title": "Call of Duty: Black Ops III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "capcom-belt-action-collection", | |
"title": "Capcom Belt Action Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade","Brawler","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "capcom-fighting-collection", | |
"title": "Capcom Fighting Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "carnival", | |
"title": "Carnival", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "castle-crashers-360", | |
"title": "Castle Crashers [360]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Brawler"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "castle-crashers-p-s3", | |
"title": "Castle Crashers [PS3]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Brawler"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "castlevania-iii-dracula-s-curse", | |
"title": "Castlevania III: Dracula's Curse", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "castlevania-symphony-of-the-night", | |
"title": "Castlevania: Symphony of the Night", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "cat-girl-without-salad-amuse-bouche", | |
"title": "Cat Girl Without Salad: Amuse-Bouche", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "cat-quest", | |
"title": "Cat Quest", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "catherine-full-body", | |
"title": "Catherine: Full Body", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "cave-story", | |
"title": "Cave Story+", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "celeste", | |
"title": "Celeste", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "chained-echoes", | |
"title": "Chained Echoes", | |
"note": "Physical: First Press Games - Regular Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "chicago-syndicate", | |
"title": "Chicago Syndicate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Gear" | |
}, | |
{ | |
"id": "child-of-light", | |
"title": "Child of Light", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "children-of-mana", | |
"title": "Children of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "children-of-morta", | |
"title": "Children of Morta", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "chrono-cross", | |
"title": "Chrono Cross", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "chrono-cross-switch", | |
"title": "Chrono Cross [Switch]", | |
"note": "The Radical Dreamers Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "chronos-before-the-ashes", | |
"title": "Chronos: Before the Ashes", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "claire-extended-cut", | |
"title": "Claire: Extended Cut", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "class-of-heroes-2", | |
"title": "Class of Heroes 2", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "code-of-princess-ex", | |
"title": "Code of Princess EX", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "coffee-crisis", | |
"title": "Coffee Crisis", | |
"note": "Kickstarter", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "collection-of-mana", | |
"title": "Collection of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "command-and-conquer-red-alert-3-uprising", | |
"title": "Command and Conquer: Red Alert 3 - Uprising", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "conan-the-boy-in-future", | |
"title": "Conan, The Boy in Future", | |
"note": "Mirai Shonen, MagicEngine contest", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "conception-ii-children-of-the-seven-stars", | |
"title": "Conception II: Children of the Seven Stars", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "cosmic-star-heroine", | |
"title": "Cosmic Star Heroine", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "costume-quest", | |
"title": "Costume Quest", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "cotton-reboot", | |
"title": "Cotton REBOOT!", | |
"note": "Strictly Limited Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "crash-bandicoot-4-it-s-about-time", | |
"title": "Crash Bandicoot 4: It's About Time", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "crash-bandicoot-n-sane-trilogy-p-s4", | |
"title": "Crash Bandicoot N. Sane Trilogy [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "crash-bandicoot-n-sane-trilogy-switch", | |
"title": "Crash Bandicoot N. Sane Trilogy [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "crayon-shin-chan-ora-to-hakase-no-natsuyasumi-owaranai-nanokakan-no-tabi", | |
"title": "Crayon Shin-chan: Ora to Hakase no Natsuyasumi - Owaranai Nanokakan no Tabi", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "criminal-girls-2-party-favors", | |
"title": "Criminal Girls 2: Party Favors", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "criminal-girls-invite-only", | |
"title": "Criminal Girls: Invite Only", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "crimson-gem-saga", | |
"title": "Crimson Gem Saga", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "crimson-skies-high-road-to-revenge", | |
"title": "Crimson Skies: High Road to Revenge", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Shmup"], | |
"platform": "Xbox" | |
}, | |
{ | |
"id": "crisis-core-final-fantasy-vii", | |
"title": "Crisis Core: Final Fantasy VII", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "crisis-core-final-fantasy-vii-reunion", | |
"title": "Crisis Core: Final Fantasy VII - Reunion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "croixleur-sigma", | |
"title": "Croixleur Sigma", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "cross-edge", | |
"title": "Cross Edge", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "cross-code-steam", | |
"title": "CrossCode [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "cross-code-switch", | |
"title": "CrossCode [Switch]", | |
"note": "Steel Case", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "crysis-2-maximum-edition", | |
"title": "Crysis 2 Maximum Edition", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "crystal-crisis", | |
"title": "Crystal Crisis", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "cursed-castilla-maldita-castilla-ex", | |
"title": "Cursed Castilla (Maldita Castilla EX)", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "danganronpa-another-episode-ultra-despair-girls", | |
"title": "Danganronpa Another Episode: Ultra Despair Girls", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "danmaku-unlimited-3", | |
"title": "Danmaku Unlimited 3", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "darius-cozmic-collection-arcade", | |
"title": "Darius Cozmic Collection Arcade", | |
"note": "Strictly Limited Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "darius-cozmic-collection-console", | |
"title": "Darius Cozmic Collection Console", | |
"note": "Strictly Limited Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dariusburst-chronicle-saviours", | |
"title": "DARIUSBURST Chronicle Saviours", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "dariusburst-another-chronicle-ex", | |
"title": "Dariusburst: Another Chronicle Ex+", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dark-cloud-2", | |
"title": "Dark Cloud 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "dark-souls-ii-scholar-of-the-first-sin", | |
"title": "Dark Souls II: Scholar of the First Sin", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dark-souls-iii", | |
"title": "Dark Souls III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "darkest-dungeon", | |
"title": "Darkest Dungeon", | |
"note": "Ancestral Edition + The Color of Madness", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "darksiders", | |
"title": "Darksiders", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "darksiders-ii", | |
"title": "Darksiders II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "darksiders-iii", | |
"title": "Darksiders III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "darksiders-warmastered-edition", | |
"title": "Darksiders: Warmastered Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dawn-of-mana", | |
"title": "Dawn of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "dead-cells", | |
"title": "Dead Cells", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dead-space", | |
"title": "Dead Space", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "death-road-to-canada", | |
"title": "Death Road to Canada", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "death-spank", | |
"title": "DeathSpank", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "deception-iv-blood-ties", | |
"title": "Deception IV: Blood Ties", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "defender-s-quest", | |
"title": "Defender's Quest", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "demon-gaze", | |
"title": "Demon Gaze", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "demon-gaze-ii", | |
"title": "Demon Gaze II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "devil-may-cry-5", | |
"title": "Devil May Cry 5", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "devil-may-cry-hd-collection", | |
"title": "Devil May Cry HD Collection", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "diablo-3-eternal-collection", | |
"title": "Diablo 3 Eternal Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "digimon-story-cyber-sleuth", | |
"title": "Digimon Story Cyber Sleuth", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "digimon-story-cyber-sleuth-complete-edition", | |
"title": "Digimon Story Cyber Sleuth: Complete Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "disgaea-1-complete", | |
"title": "Disgaea 1 Complete", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "disgaea-5-complete", | |
"title": "Disgaea 5 Complete", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "disney-adventures-in-the-magic-kingdom", | |
"title": "Disney Adventures in the Magic Kingdom", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "disney-epic-mickey-2-the-power-of-two", | |
"title": "Disney Epic Mickey 2: The Power of Two", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "divinity-original-sin-ii", | |
"title": "Divinity: Original Sin II", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "donkey-kong", | |
"title": "Donkey Kong", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "donkey-kong-country-tropical-freeze", | |
"title": "Donkey Kong Country: Tropical Freeze", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "double-dragon-and-kunio-kun-retro-brawler-bundle", | |
"title": "Double Dragon & Kunio-Kun Retro Brawler Bundle", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "double-dragon-gaiden-rise-of-the-dragons", | |
"title": "Double Dragon Gaiden: Rise of the Dragons", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-ball-fighter-z-p-s4", | |
"title": "Dragon Ball FighterZ [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-ball-fighter-z-switch", | |
"title": "Dragon Ball FighterZ [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-ball-xenoverse-2-p-s4", | |
"title": "Dragon Ball Xenoverse 2 [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-ball-xenoverse-2-switch", | |
"title": "Dragon Ball Xenoverse 2 [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-ball-z-kakarot", | |
"title": "Dragon Ball Z: Kakarot", | |
"note": "+ A New Power Awakens Set", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-fantasy-book-i-and-ii", | |
"title": "Dragon Fantasy Book I and II", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "dragon-quest-1-2-3-collection", | |
"title": "Dragon Quest 1+2+3 Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-builders-2", | |
"title": "Dragon Quest Builders 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-builders-p-s4", | |
"title": "Dragon Quest Builders [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-quest-builders-switch", | |
"title": "Dragon Quest Builders [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-builders-vita", | |
"title": "Dragon Quest Builders [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "dragon-quest-heroes-ii", | |
"title": "Dragon Quest Heroes II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-quest-heroes-the-world-tree-s-woe-and-the-blight-below", | |
"title": "Dragon Quest Heroes: The World Tree's Woe and the Blight Below", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-quest-iv-chapters-of-the-chosen", | |
"title": "Dragon Quest IV: Chapters of the Chosen", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "dragon-quest-ix-sentinels-of-the-starry-skies", | |
"title": "Dragon Quest IX: Sentinels of the Starry Skies", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "dragon-quest-monsters-joker", | |
"title": "Dragon Quest Monsters: Joker", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "dragon-quest-treasures", | |
"title": "Dragon Quest Treasures", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-v-hand-of-the-heavenly-bride", | |
"title": "Dragon Quest V: Hand of the Heavenly Bride", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "dragon-quest-vi-realms-of-revelation", | |
"title": "Dragon Quest VI: Realms of Revelation", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "dragon-quest-vii-fragments-of-the-forgotten-past", | |
"title": "Dragon Quest VII: Fragments of the Forgotten Past", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "dragon-quest-viii-journey-of-the-cursed-king", | |
"title": "Dragon Quest VIII: Journey of the Cursed King", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "dragon-quest-viii-journey-of-the-cursed-king-3-ds", | |
"title": "Dragon Quest VIII: Journey of the Cursed King [3DS]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "dragon-quest-x-all-in-one-package", | |
"title": "Dragon Quest X: All In One Package", | |
"note": "Version 1 - 5", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-xi-s-echoes-of-an-elusive-age", | |
"title": "Dragon Quest XI S: Echoes of an Elusive Age", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-quest-xi-echoes-of-an-elusive-age", | |
"title": "Dragon Quest XI: Echoes of an Elusive Age", | |
"note": "Edition of Lost Time", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-slayer-the-legend-of-heroes", | |
"title": "Dragon Slayer: The Legend of Heroes", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "dragon-warrior-i-and-ii", | |
"title": "Dragon Warrior I & II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "dragon-warrior-iii", | |
"title": "Dragon Warrior III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "dragon-s-crown-p-s3", | |
"title": "Dragon's Crown [PS3]", | |
"note": "Art Book", | |
"physical": true, | |
"digital": true, | |
"genre": ["Brawler","RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "dragon-s-crown-vita", | |
"title": "Dragon's Crown [Vita]", | |
"note": "Art Book", | |
"physical": true, | |
"digital": true, | |
"genre": ["Brawler","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "dragon-s-crown-pro", | |
"title": "Dragon's Crown Pro", | |
"note": "Royal Package Edition, Battle-Hardened Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Brawler","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "dragon-s-dogma-dark-arisen", | |
"title": "Dragon's Dogma: Dark Arisen", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-s-lair-trilogy", | |
"title": "Dragon's Lair Trilogy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dragon-marked-for-death", | |
"title": "Dragon: Marked for Death", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "drainus", | |
"title": "Drainus", | |
"note": "Multi-Language", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "drive-girls", | |
"title": "Drive Girls", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "dungeon-travelers-2-the-royal-library-and-the-monster-seal", | |
"title": "Dungeon Travelers 2: The Royal Library & the Monster Seal", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "dungeons-of-aether", | |
"title": "Dungeons of Aether", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "dust-an-elysian-tail", | |
"title": "Dust: An Elysian Tail", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "dust-an-elysian-tail-switch", | |
"title": "Dust: An Elysian Tail [Switch]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "earth-defense-force-2-invaders-from-planet-space", | |
"title": "Earth Defense Force 2: Invaders from Planet Space", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "earthworm-jim", | |
"title": "Earthworm Jim", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "earthworm-jim-hd", | |
"title": "Earthworm Jim HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "eastward", | |
"title": "Eastward", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "eets-munchies", | |
"title": "Eets Munchies", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "eiyuden-chronicle-rising", | |
"title": "Eiyuden Chronicle: Rising", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "elden-ring", | |
"title": "Elden Ring", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "elderand", | |
"title": "Elderand", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG","Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "eternal-sonata", | |
"title": "Eternal Sonata", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "eufloria-hd", | |
"title": "Eufloria HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "ever-oasis", | |
"title": "Ever Oasis", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "ever-drive-gb", | |
"title": "EverDrive-GB", | |
"note": "X7", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "ever-drive-gba", | |
"title": "EverDrive-GBA", | |
"note": "X5", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "ever-drive-gg", | |
"title": "EverDrive-GG", | |
"note": "X7", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Game Gear" | |
}, | |
{ | |
"id": "ever-drive-n8", | |
"title": "EverDrive-N8", | |
"note": "OG", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "ever-drive-n8-pro", | |
"title": "EverDrive-N8 Pro", | |
"note": "Pro", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "everspace", | |
"title": "Everspace", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "everyday-shooter", | |
"title": "Everyday Shooter", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "exile", | |
"title": "Exile", | |
"note": "Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "exist-archive", | |
"title": "Exist Archive", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "fable", | |
"title": "Fable", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Xbox" | |
}, | |
{ | |
"id": "fable-anniversary", | |
"title": "Fable Anniversary", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "fable-ii", | |
"title": "Fable II", | |
"note": "Knothole Island - Premium; See the Future - Premium", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "fable-iii", | |
"title": "Fable III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "fable-the-lost-chapters", | |
"title": "Fable: The Lost Chapters", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox" | |
}, | |
{ | |
"id": "fallen-legion-rise-to-glory", | |
"title": "Fallen Legion: Rise to Glory", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "fallout-4", | |
"title": "Fallout 4", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "fantasy-zone", | |
"title": "Fantasy Zone", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Master System" | |
}, | |
{ | |
"id": "far-east-of-heden-battle", | |
"title": "Far East of Heden Battle", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Pc Fx" | |
}, | |
{ | |
"id": "fate-extella-the-umbral-star-switch", | |
"title": "Fate/EXTELLA: The Umbral Star [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "fate-extella-the-umbral-star-vita", | |
"title": "Fate/EXTELLA: The Umbral Star [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "fernz-gate-p-s4", | |
"title": "Fernz Gate [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "fernz-gate-vita", | |
"title": "Fernz Gate [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "fester-s-quest", | |
"title": "Fester's Quest", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "fez", | |
"title": "FEZ", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-pixel-remaster-steam", | |
"title": "Final Fantasy - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-pixel-remaster-switch", | |
"title": "Final Fantasy - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-psp", | |
"title": "Final Fantasy [PSP]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "final-fantasy-ws", | |
"title": "Final Fantasy [WS]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Wonderswan" | |
}, | |
{ | |
"id": "final-fantasy-anthology", | |
"title": "Final Fantasy Anthology", | |
"note": "Final Fantasy V, Final Fantasy VI", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-crystal-chronicles", | |
"title": "Final Fantasy Crystal Chronicles", | |
"note": "BONUS GameCube/GBA Link Cable", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "final-fantasy-explorers", | |
"title": "Final Fantasy Explorers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "final-fantasy-ii-pixel-remaster-steam", | |
"title": "Final Fantasy II - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-ii-pixel-remaster-switch", | |
"title": "Final Fantasy II - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-ii-psp", | |
"title": "Final Fantasy II [PSP]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "final-fantasy-ii-ws", | |
"title": "Final Fantasy II [WS]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Wonderswan" | |
}, | |
{ | |
"id": "final-fantasy-iii-pixel-remaster-steam", | |
"title": "Final Fantasy III - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-iii-pixel-remaster-switch", | |
"title": "Final Fantasy III - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-iii-ds", | |
"title": "Final Fantasy III [DS]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "final-fantasy-iii-psp", | |
"title": "Final Fantasy III [PSP]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "final-fantasy-iv-pixel-remaster-steam", | |
"title": "Final Fantasy IV - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-iv-pixel-remaster-switch", | |
"title": "Final Fantasy IV - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-ix", | |
"title": "Final Fantasy IX", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-origins", | |
"title": "Final Fantasy Origins", | |
"note": "Final Fantasy I, Final Fantasy II", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-origins-greatest-hits", | |
"title": "Final Fantasy Origins Greatest Hits", | |
"note": "Final Fantasy I, Final Fantasy II", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-tactics-advance", | |
"title": "Final Fantasy Tactics Advance", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "final-fantasy-type-0-hd", | |
"title": "Final Fantasy Type-0 HD", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "final-fantasy-v", | |
"title": "Final Fantasy V", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-v-pixel-remaster-steam", | |
"title": "Final Fantasy V - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-v-pixel-remaster-switch", | |
"title": "Final Fantasy V - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-vi", | |
"title": "Final Fantasy VI", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-vi-pixel-remaster-steam", | |
"title": "Final Fantasy VI - Pixel Remaster [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "final-fantasy-vi-pixel-remaster-switch", | |
"title": "Final Fantasy VI - Pixel Remaster [Switch]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-vii", | |
"title": "Final Fantasy VII", | |
"note": "Greatest Hits + PSN", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-vii-hd", | |
"title": "Final Fantasy VII HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-vii-remake", | |
"title": "Final Fantasy VII: Remake", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "final-fantasy-viii", | |
"title": "Final Fantasy VIII", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "final-fantasy-x", | |
"title": "Final Fantasy X", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "final-fantasy-x-x-2-hd-remaster-p-s3", | |
"title": "Final Fantasy X/X-2 HD Remaster [PS3]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "final-fantasy-x-x-2-hd-remaster-vita", | |
"title": "Final Fantasy X/X-2 HD Remaster [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "final-fantasy-xi", | |
"title": "Final Fantasy XI", | |
"note": "with HDD", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "final-fantasy-xii", | |
"title": "Final Fantasy XII", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "final-fantasy-xii-the-zodiac-age-p-s4", | |
"title": "Final Fantasy XII: The Zodiac Age [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "final-fantasy-xii-the-zodiac-age-switch", | |
"title": "Final Fantasy XII: The Zodiac Age [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-xiii", | |
"title": "Final Fantasy XIII", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "final-fantasy-xiii-2", | |
"title": "Final Fantasy XIII-2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "final-fantasy-xiv-shadowbringers", | |
"title": "Final Fantasy XIV: Shadowbringers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "final-fantasy-xv-pocket-edition-hd", | |
"title": "Final Fantasy XV Pocket Edition HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "final-fantasy-xv-deluxe", | |
"title": "Final Fantasy XV: Deluxe", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "final-fantasy-xv-royal", | |
"title": "Final Fantasy XV: Royal", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Xbox One" | |
}, | |
{ | |
"id": "final-fantasy-xvi", | |
"title": "Final Fantasy XVI", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "final-fight-double-impact", | |
"title": "Final Fight Double Impact", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "finding-nemo", | |
"title": "Finding Nemo", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "fire-emblem-warriors", | |
"title": "Fire Emblem Warriors", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "fire-shark", | |
"title": "Fire Shark", | |
"note": "Collectors Edition (CastleMania Games)", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "fist-of-the-north-star-lost-paradise", | |
"title": "Fist of The North Star: Lost Paradise", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "flashback-25th-anniversary-collector-s-edition", | |
"title": "Flashback 25th Anniversary Collector's Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "flinthook", | |
"title": "Flinthook", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "fl-ow-p-s3", | |
"title": "flOw [PS3]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Casual"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "fl-ow-psp", | |
"title": "flOw [PSP]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Casual"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "frane-dragons-odyssey", | |
"title": "Frane: Dragons' Odyssey", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "freedom-planet", | |
"title": "Freedom Planet", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "freedom-wars", | |
"title": "Freedom Wars", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "frogger", | |
"title": "Frogger", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "ftl-faster-than-light", | |
"title": "FTL: Faster Than Light", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "g-darius-hd", | |
"title": "G-Darius HD", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "gaia-seed", | |
"title": "Gaia Seed", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "gal-guardians-demon-purge", | |
"title": "Gal Guardians: Demon Purge", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "gal-gun-double-peace", | |
"title": "GalGun: Double Peace", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "garbage-pail-kids-mad-mike-and-the-quest-for-stale-gum", | |
"title": "Garbage Pail Kids: Mad Mike and the Quest for Stale Gum", | |
"note": "iam8bit", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "gate-of-thunder", | |
"title": "Gate of Thunder", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "genesis-6-pak", | |
"title": "Genesis 6-Pak", | |
"note": "The Revenge of Shinobi, Sonic the Hedgehog, Golden Axe, Columns, Streets of Rage, Super Hang-on", | |
"physical": true, | |
"digital": false, | |
"genre": ["Compilation"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "ghost-parade", | |
"title": "Ghost Parade", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "gi-joe-operation-blackout", | |
"title": "GI Joe Operation Blackout", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "goblin-sword", | |
"title": "Goblin Sword", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "god-eater-2-rage-burst", | |
"title": "God Eater 2: Rage Burst", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "god-eater-3-p-s4", | |
"title": "God Eater 3 [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "god-eater-3-switch", | |
"title": "God Eater 3 [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "god-eater-resurrection", | |
"title": "God Eater: Resurrection", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "god-of-war", | |
"title": "God of War", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "god-of-war-collection", | |
"title": "God of War Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "god-of-war-hd", | |
"title": "God of War HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "god-wars-future-past", | |
"title": "God Wars: Future Past", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "god-wars-the-complete-legend", | |
"title": "God Wars: The Complete Legend", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "golden-sun", | |
"title": "Golden Sun", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "golden-sun-dark-dawn", | |
"title": "Golden Sun: Dark Dawn", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "golgo-13", | |
"title": "Golgo 13", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "granblue-fantasy-versus", | |
"title": "Granblue Fantasy: Versus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "grand-kingdom", | |
"title": "Grand Kingdom", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "grand-knights-history-j", | |
"title": "Grand Knights History [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "grandia-hd-collection", | |
"title": "Grandia HD Collection", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "grandia-iii", | |
"title": "Grandia III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "gratuitous-space-battles", | |
"title": "Gratuitous Space Battles", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "greak-memories-of-azur", | |
"title": "Greak: Memories of Azur", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer","Puzzle"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "grim-grimoire", | |
"title": "GrimGrimoire", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "grim-grimoire-once-more", | |
"title": "GrimGrimoire OnceMore", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "guacamelee-one-two-punch-collection", | |
"title": "Guacamelee! One-Two Punch Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "guilty-gear-xrd-sign", | |
"title": "Guilty Gear Xrd - SIGN", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "guilty-gear-xrd-rev-2", | |
"title": "Guilty Gear Xrd REV 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "guilty-gear-xx-accent-core-plus", | |
"title": "Guilty Gear XX Accent Core Plus", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Fighting"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "gumby-vs-the-astrobots", | |
"title": "Gumby vs. the Astrobots", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "gun-smoke", | |
"title": "Gun.Smoke", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "gungnir", | |
"title": "Gungnir", | |
"note": "Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "hades", | |
"title": "Hades", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "half-life-2", | |
"title": "Half-Life 2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "half-life-2-deathmatch", | |
"title": "Half-Life 2: Deathmatch", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "half-life-2-episode-one", | |
"title": "Half-Life 2: Episode One", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "half-life-2-episode-two", | |
"title": "Half-Life 2: Episode Two", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "half-life-2-lost-coast", | |
"title": "Half-Life 2: Lost Coast", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "half-life-deathmatch-source", | |
"title": "Half-Life Deathmatch: Source", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "hang-on-safari-hunt", | |
"title": "Hang On/Safari Hunt", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Master System" | |
}, | |
{ | |
"id": "happy-feet", | |
"title": "Happy Feet", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "hardcore", | |
"title": "Hardcore", | |
"note": "Analogue: Mega Sg", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "harvest-moon-light-of-hope-special-edition", | |
"title": "Harvest Moon: Light of Hope Special Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "harvestella", | |
"title": "Harvestella", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "hellfire", | |
"title": "Hellfire", | |
"note": "Collectors Edition (CastleMania Games)", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "hero-must-die-again", | |
"title": "Hero Must Die. Again.", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "heroes-of-mana", | |
"title": "Heroes of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "hexic-hd", | |
"title": "Hexic HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "hexyz-force", | |
"title": "Hexyz Force", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "hoa", | |
"title": "Hoa", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "holy-diver", | |
"title": "Holy Diver", | |
"note": "Collectors Set - Black Cartridge", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "horizon-forbidden-west", | |
"title": "Horizon Forbidden West", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "horizon-zero-dawn", | |
"title": "Horizon Zero Dawn", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "hot-shots-golf-world-invitational", | |
"title": "Hot Shots Golf: World Invitational", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Sports"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyper-light-drifter", | |
"title": "Hyper Light Drifter", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "hyperdevotion-noire-goddess-black-heart", | |
"title": "Hyperdevotion Noire: Goddess Black Heart", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyperdimension-neptunia-pp", | |
"title": "Hyperdimension Neptunia PP", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyperdimension-neptunia-re-birth1", | |
"title": "Hyperdimension Neptunia Re;Birth1", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyperdimension-neptunia-re-birth2-sisters-generation", | |
"title": "Hyperdimension Neptunia Re;Birth2: Sisters Generation", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyperdimension-neptunia-re-birth3-v-generation", | |
"title": "Hyperdimension Neptunia Re;Birth3: V Generation", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyperdimension-neptunia-u-action-unleashed", | |
"title": "Hyperdimension Neptunia U: Action Unleashed", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "hyrule-warriors-definitive-edition", | |
"title": "Hyrule Warriors: Definitive Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "i-am-setsuna", | |
"title": "I am Setsuna", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "iconoclasts-p-s3", | |
"title": "Iconoclasts [PS3]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "iconoclasts-p-s4", | |
"title": "Iconoclasts [PS4]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "iconoclasts-switch", | |
"title": "Iconoclasts [Switch]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "iconoclasts-vita", | |
"title": "Iconoclasts [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "indivisible", | |
"title": "Indivisible", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "in-famous", | |
"title": "inFamous", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "infinity", | |
"title": "Infinity", | |
"note": "Kickstarter", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "ironclad-tactics", | |
"title": "Ironclad Tactics", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "is-it-wrong-to-try-to-pick-up-girls-in-a-dungeon-infinite-combat", | |
"title": "Is It Wrong to Try to Pick Up Girls in A Dungeon: Infinite Combat", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "jamestown", | |
"title": "Jamestown", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "jeanne-d-arc", | |
"title": "Jeanne d'Arc", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "kaze-and-the-wild-masks", | |
"title": "Kaze and the Wild Masks", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "keio-flying-squadron", | |
"title": "Keio Flying Squadron", | |
"note": "PCEWorks", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Sega CD" | |
}, | |
{ | |
"id": "kingdom-hearts", | |
"title": "Kingdom Hearts", | |
"note": "Greatest Hits", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "kingdom-hearts-hd-1-5-remix", | |
"title": "Kingdom Hearts - HD 1.5 Remix", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "kingdom-hearts-hd-2-5-remix", | |
"title": "Kingdom Hearts - HD 2.5 Remix", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "kingdom-hearts-iii", | |
"title": "Kingdom Hearts III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "kingdom-majestic", | |
"title": "Kingdom Majestic", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "kingdoms-of-amalur-reckoning", | |
"title": "Kingdoms of Amalur: Reckoning", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "koihime-enbu-ryo-rai-rai", | |
"title": "Koihime Enbu RyoRaiRai", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "kool-aid-man", | |
"title": "Kool-Aid Man", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "kung-food", | |
"title": "Kung Food", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "labyrinth-of-refrain-coven-of-dusk", | |
"title": "Labyrinth of Refrain: Coven of Dusk", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "legend-of-kay-anniversary", | |
"title": "Legend of Kay Anniversary", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "legend-of-mana", | |
"title": "Legend of Mana", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "legend-of-mana-remaster-p-s4", | |
"title": "Legend of Mana Remaster [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "legend-of-mana-remaster-switch", | |
"title": "Legend of Mana Remaster [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "lightning-returns-final-fantasy-xiii", | |
"title": "Lightning Returns: Final Fantasy XIII", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "limbo", | |
"title": "LIMBO", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "little-big-planet-p-s3", | |
"title": "LittleBigPlanet [PS3]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "little-big-planet-psp", | |
"title": "LittleBigPlanet [PSP]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "little-big-planet-vita", | |
"title": "LittleBigPlanet [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "live-a-live", | |
"title": "Live A Live", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "lock-n-chase", | |
"title": "Lock N' Chase", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "london-detective-mysteria", | |
"title": "London Detective Mysteria", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "lone-survivor-the-director-s-cut", | |
"title": "Lone Survivor: The Director's Cut", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "lord-of-arcana", | |
"title": "Lord of Arcana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "lords-of-thunder", | |
"title": "Lords of Thunder", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "lost-dimension", | |
"title": "Lost Dimension", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "lost-planet-3", | |
"title": "Lost Planet 3", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "luigi-s-mansion", | |
"title": "Luigi's Mansion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "luigi-s-mansion-3", | |
"title": "Luigi's Mansion 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "lumines", | |
"title": "Lumines", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "lumines-live", | |
"title": "Lumines Live", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "lumines-electronic-symphony", | |
"title": "Lumines: Electronic Symphony", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "lunar-legend", | |
"title": "Lunar Legend", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "lunar-silver-star-harmony", | |
"title": "Lunar: Silver Star Harmony", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "lynx-game-drive", | |
"title": "Lynx GameDrive", | |
"note": "GD", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "madden-nfl-94", | |
"title": "Madden NFL '94", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "magical-chase-reproduction", | |
"title": "Magical Chase (Reproduction)", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "mah-jong-fx", | |
"title": "Mah-Jong FX", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Pc Fx" | |
}, | |
{ | |
"id": "major-league-baseball", | |
"title": "Major League Baseball", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "malibu-beach-volleyball", | |
"title": "Malibu Beach Volleyball", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Game Boy" | |
}, | |
{ | |
"id": "mario-and-luigi-superstar-saga", | |
"title": "Mario & Luigi Superstar Saga", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "mario-golf", | |
"title": "Mario Golf", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Sports"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "mario-golf-64", | |
"title": "Mario Golf 64", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Nintendo 64" | |
}, | |
{ | |
"id": "mario-golf-advance-tour", | |
"title": "Mario Golf Advance Tour", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Sports"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "mario-golf-super-rush", | |
"title": "Mario Golf: Super Rush", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mario-kart-8-deluxe", | |
"title": "Mario Kart 8 Deluxe", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mario-kart-double-dash", | |
"title": "Mario Kart Double Dash", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "mario-kart-wii", | |
"title": "Mario Kart Wii", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "mario-tennis", | |
"title": "Mario Tennis", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Sports"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "mario-tennis-64", | |
"title": "Mario Tennis 64", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Nintendo 64" | |
}, | |
{ | |
"id": "mario-tennis-aces", | |
"title": "Mario Tennis Aces", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mark-of-the-ninja", | |
"title": "Mark of the Ninja", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "marvel-s-spider-man", | |
"title": "Marvel’s Spider-Man", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "mary-skelter-nightmares", | |
"title": "Mary Skelter: Nightmares", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "mass-effect-trilogy", | |
"title": "Mass Effect Trilogy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "max-payne-gba", | |
"title": "Max Payne [GBA]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "mecho-tales", | |
"title": "Mecho Tales", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "medal-of-honor-multiplayer", | |
"title": "Medal of Honor: Multiplayer", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "medal-of-honor-single-player", | |
"title": "Medal of Honor: Single Player", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "mega-ever-drive", | |
"title": "Mega EverDrive", | |
"note": "X5", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "mega-man", | |
"title": "Mega Man", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-10", | |
"title": "Mega Man 10", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "mega-man-11", | |
"title": "Mega Man 11", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mega-man-2", | |
"title": "Mega Man 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-3", | |
"title": "Mega Man 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-4", | |
"title": "Mega Man 4", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-5", | |
"title": "Mega Man 5", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-6", | |
"title": "Mega Man 6", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mega-man-9", | |
"title": "Mega Man 9", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "mega-man-p-s1-j", | |
"title": "Mega Man [PS1] [J]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "mega-man-battle-network-legacy-collection", | |
"title": "Mega Man Battle Network Legacy Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mega-man-legacy-collection", | |
"title": "Mega Man Legacy Collection", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer","Compilation"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "mega-man-legacy-collection-1-2", | |
"title": "Mega Man Legacy Collection 1 + 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mega-man-powered-up", | |
"title": "Mega Man Powered Up", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "mega-man-x-legacy-collection-1-2", | |
"title": "Mega Man X Legacy Collection 1 + 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mega-man-zero-zx-legacy-collection", | |
"title": "Mega Man Zero/ZX Legacy Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "megadimension-neptunia-vii", | |
"title": "Megadimension Neptunia VII", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mega-tagmension-blanc-neptune-vs-zombies", | |
"title": "MegaTagmension Blanc + Neptune VS Zombies", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "mei-q-labyrinth-of-death", | |
"title": "MeiQ: Labyrinth of Death", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "mercenaries-saga-chronicles", | |
"title": "Mercenaries Saga Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mercenary-kings", | |
"title": "Mercenary Kings", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mercenary-kings-reloaded-edition", | |
"title": "Mercenary Kings: Reloaded Edition", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "metal-arms-glitch-in-the-system", | |
"title": "Metal Arms: Glitch in the System", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "metal-gear-solid-v-the-phantom-pain", | |
"title": "Metal Gear Solid V: The Phantom Pain", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "metal-slug-anthology-p-s4", | |
"title": "Metal Slug Anthology [PS4]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "metal-slug-anthology-psp", | |
"title": "Metal Slug Anthology [PSP]", | |
"note": "Limited Run Games", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "meteos-disney-magic", | |
"title": "Meteos: Disney Magic", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "metroid", | |
"title": "Metroid", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "metroid-dread", | |
"title": "Metroid Dread", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "metroid-fusion", | |
"title": "Metroid Fusion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "metroid-prime", | |
"title": "Metroid Prime", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "metroid-prime-2-echoes", | |
"title": "Metroid Prime 2: Echoes", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "metroid-prime-trilogy-collector-s-edition", | |
"title": "Metroid Prime Trilogy Collector's Edition", | |
"note": "Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "metroid-samus-returns", | |
"title": "Metroid: Samus Returns", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "metroid-zero-mission", | |
"title": "Metroid: Zero Mission", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "micro-doctor", | |
"title": "Micro Doctor", | |
"note": "Greenboy Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy" | |
}, | |
{ | |
"id": "microsurgeon", | |
"title": "Microsurgeon", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "middle-earth-shadow-of-mordor", | |
"title": "Middle-Earth: Shadow of Mordor", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "mighty-bomb-jack", | |
"title": "Mighty Bomb Jack", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "mighty-gunvolt", | |
"title": "Mighty Gunvolt", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "mighty-gunvolt-burst", | |
"title": "Mighty Gunvolt Burst", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mighty-no-9", | |
"title": "Mighty No. 9", | |
"note": "Kickstarter", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "mighty-switch-force-collection", | |
"title": "Mighty Switch Force! Collection", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mind-zero", | |
"title": "Mind Zero", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "minecraft-story-mode-the-complete-adventure", | |
"title": "Minecraft: Story Mode - The Complete Adventure", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "mirror-s-edge", | |
"title": "Mirror's Edge", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "mission-x", | |
"title": "Mission X", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "momodora-reverie-under-the-moonlight", | |
"title": "Momodora: Reverie Under the Moonlight", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-boy", | |
"title": "Monster Boy", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-hunter", | |
"title": "Monster Hunter", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "monster-hunter-3-ultimate-3-ds", | |
"title": "Monster Hunter 3 Ultimate [3DS]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "monster-hunter-3-ultimate-wii-u", | |
"title": "Monster Hunter 3 Ultimate [Wii-U]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Wii U" | |
}, | |
{ | |
"id": "monster-hunter-4-ultimate", | |
"title": "Monster Hunter 4 Ultimate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "monster-hunter-freedom", | |
"title": "Monster Hunter Freedom", | |
"note": "Favorites Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "monster-hunter-freedom-2-and-freedom-unite-dual-pack", | |
"title": "Monster Hunter Freedom 2 and Freedom Unite Dual Pack", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "monster-hunter-freedom-unite", | |
"title": "Monster Hunter Freedom Unite", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "monster-hunter-frontier-g8", | |
"title": "Monster Hunter Frontier G8", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "monster-hunter-generations", | |
"title": "Monster Hunter Generations", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "monster-hunter-generations-ultimate", | |
"title": "Monster Hunter Generations Ultimate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-hunter-portable-3rd", | |
"title": "Monster Hunter Portable 3rd", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "monster-hunter-rise", | |
"title": "Monster Hunter Rise", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-hunter-stories", | |
"title": "Monster Hunter Stories", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "monster-hunter-stories-2-wings-of-ruin", | |
"title": "Monster Hunter Stories 2: Wings of Ruin", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-hunter-tri", | |
"title": "Monster Hunter Tri", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "monster-hunter-world-iceborne", | |
"title": "Monster Hunter World: Iceborne", | |
"note": "Deluxe Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "monster-hunter-xx-double-cross-j", | |
"title": "Monster Hunter XX Double Cross [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "monster-hunter-world", | |
"title": "Monster Hunter: World", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "mortal-kombat-ii", | |
"title": "Mortal Kombat II", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "mortal-kombat-xl", | |
"title": "Mortal Kombat XL", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "muramasa-rebirth", | |
"title": "Muramasa Rebirth", | |
"note": "+ Genroku Legends - Fishy Tales of the Nekomata, + A Cause To Daikon For, + A Spirited Seven Nights’ Haunting, + Hell’s Where the Heart Is", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "muramasa-the-demon-blade", | |
"title": "Muramasa: The Demon Blade", | |
"note": "x2, 1 Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "namco-museum-arcade-pac", | |
"title": "Namco Museum Arcade Pac", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nasl-soccer", | |
"title": "NASL Soccer", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "nba-2-k-playgrounds-2", | |
"title": "NBA 2K Playgrounds 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nelke-and-the-legendary-alchemists-ateliers-of-the-new-world", | |
"title": "Nelke & The Legendary Alchemists: Ateliers of The New World", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "neo-the-world-ends-with-you", | |
"title": "NEO: The World Ends with You", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "neo-geo-pocket-color-selection-vol-1", | |
"title": "NeoGeo Pocket Color Selection Vol.1", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "neo-pocket-game-drive", | |
"title": "NeoPocket GameDrive", | |
"note": "GD", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Neo Geo Pocket Color" | |
}, | |
{ | |
"id": "neutopia", | |
"title": "Neutopia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "new-super-mario-bros-u-deluxe", | |
"title": "New Super Mario Bros. U Deluxe", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nexomon-extinction", | |
"title": "Nexomon: Extinction", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ni-no-kuni-ii-revenant-kingdom", | |
"title": "Ni No Kuni II: Revenant Kingdom", | |
"note": "Premium Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "ni-no-kuni-ii-revenant-kingdom-switch", | |
"title": "Ni No Kuni II: Revenant Kingdom [Switch]", | |
"note": "Prince's Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ni-no-kuni-wrath-of-the-white-witch", | |
"title": "Ni No Kuni: Wrath of the White Witch", | |
"note": "Wizard's Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "ni-no-kuni-wrath-of-the-white-witch-switch", | |
"title": "Ni No Kuni: Wrath of the White Witch [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nie-r-replicant", | |
"title": "NieR Replicant", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Xbox One" | |
}, | |
{ | |
"id": "nier-automata", | |
"title": "Nier: Automata", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "night-stalker", | |
"title": "Night Stalker", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "night-trap", | |
"title": "Night Trap", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nights-of-azure-2-bride-of-the-new-moon", | |
"title": "Nights of Azure 2: Bride of The New Moon", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ninja-gaiden", | |
"title": "Ninja Gaiden", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "ninja-gaiden-sigma-2-plus", | |
"title": "Ninja Gaiden Sigma 2 Plus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ninja-gaiden-sigma-plus", | |
"title": "Ninja Gaiden Sigma Plus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "nintendo-switch-sports", | |
"title": "Nintendo Switch Sports", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "nintendogs-chihuahua-and-friends", | |
"title": "Nintendogs Chihuahua & Friends", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "nova-111", | |
"title": "Nova-111", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "octopath-traveler", | |
"title": "Octopath Traveler", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "octopath-traveler-ii", | |
"title": "Octopath Traveler II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "odin-sphere", | |
"title": "Odin Sphere", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "odin-sphere-leifthrasir-p-s4", | |
"title": "Odin Sphere Leifthrasir [PS4]", | |
"note": "Artbook", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "odin-sphere-leifthrasir-vita", | |
"title": "Odin Sphere Leifthrasir [Vita]", | |
"note": "Artbook", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "okami-hd", | |
"title": "Okami HD", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "one-piece-odyssey", | |
"title": "One Piece Odyssey", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "one-piece-world-seeker", | |
"title": "ONE PIECE: World Seeker", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "operation-abyss-new-tokyo-legacy", | |
"title": "Operation Abyss: New Tokyo Legacy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ori-and-the-blind-forest", | |
"title": "Ori and the Blind Forest", | |
"note": "Definitive Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Xbox One" | |
}, | |
{ | |
"id": "ori-and-the-blind-forest-switch", | |
"title": "Ori and the Blind Forest [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "owlboy", | |
"title": "Owlboy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "oxenfree", | |
"title": "Oxenfree", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pac-man-championship-edition-2-plus", | |
"title": "Pac-Man Championship Edition 2 Plus", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Arcade"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "panzer-dragoon-remake", | |
"title": "Panzer Dragoon: Remake", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "panzer-paladin", | |
"title": "Panzer Paladin", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "paper-mario-the-origami-king", | |
"title": "Paper Mario: The Origami King", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "paper-mario-the-thousand-year-door", | |
"title": "Paper Mario: The Thousand-Year Door", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "parodius-da-famicom", | |
"title": "Parodius Da! Famicom", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "parodius-da-pce", | |
"title": "Parodius Da! PCE", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "patapon", | |
"title": "Patapon", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "patchwork-heroes", | |
"title": "Patchwork Heroes", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "pc-engine-memories-shooting-legends-ii", | |
"title": "PCEngine Memories - Shooting Legends II", | |
"note": "PCEWorks", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup","Compilation"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "peggle-deluxe", | |
"title": "Peggle Deluxe", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "peggle-nights", | |
"title": "Peggle Nights", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "period-cube", | |
"title": "Period Cube", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "persona-3-portable", | |
"title": "Persona 3 Portable", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "persona-4-arena", | |
"title": "Persona 4 Arena", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "persona-4-golden", | |
"title": "Persona 4 Golden", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "persona-5", | |
"title": "Persona 5", | |
"note": "SteelBook Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "persona-5-strikers", | |
"title": "Persona 5 Strikers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "phantasy-star-collection", | |
"title": "Phantasy Star Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG","Compilation"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "phantasy-star-iv-the-end-of-the-millennium", | |
"title": "Phantasy Star IV: The End of the Millennium", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "phantasy-star-nova-j", | |
"title": "Phantasy Star Nova [J]", | |
"note": "English patch", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "phantasy-star-online-2", | |
"title": "Phantasy Star Online 2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "phantasy-star-online-2-vita", | |
"title": "Phantasy Star Online 2 [Vita]", | |
"note": "JP: Episode 4", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "phantasy-star-online-2-xbox-x-s", | |
"title": "Phantasy Star Online 2 [Xbox X/S]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "phantasy-star-online-iii-c-a-r-d-revolution", | |
"title": "Phantasy Star Online III C.A.R.D. Revolution", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "phantasy-star-online-version-2", | |
"title": "Phantasy Star Online Version 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Dreamcast" | |
}, | |
{ | |
"id": "phantasy-star-online-episode-i-and-ii", | |
"title": "Phantasy Star Online, Episode I & II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "phantasy-star-portable", | |
"title": "Phantasy Star Portable", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "phantasy-star-portable-2", | |
"title": "Phantasy Star Portable 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "phantasy-star-portable-2-infinity", | |
"title": "Phantasy Star Portable 2 Infinity", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "phantasy-star-universe", | |
"title": "Phantasy Star Universe", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "phantom-breaker-battlegrounds", | |
"title": "Phantom Breaker Battlegrounds", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "pier-solar-hd", | |
"title": "Pier Solar: HD", | |
"note": "Kickstarter", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Dreamcast" | |
}, | |
{ | |
"id": "pier-solar-re", | |
"title": "Pier Solar: RE", | |
"note": "Reprint Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "pinball-fx", | |
"title": "Pinball FX", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Arcade"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "pinball-f-x2", | |
"title": "Pinball FX2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Arcade"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "piyotama-p-s3", | |
"title": "Piyotama [PS3]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "piyotama-psp", | |
"title": "Piyotama [PSP]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "pocky-and-rocky-reshrined", | |
"title": "Pocky & Rocky Reshrined", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "poker-and-blackjack", | |
"title": "Poker & Blackjack", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "pokken-tournament-dx", | |
"title": "Pokkén Tournament DX", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-legends-arceus", | |
"title": "Pokémon Legends: Arceus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-mystery-dungeon-rescue-team-dx", | |
"title": "Pokémon Mystery Dungeon: Rescue Team Dx", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-brilliant-diamond", | |
"title": "Pokémon: Brilliant Diamond", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-diamond-version", | |
"title": "Pokémon: Diamond Version", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "pokemon-fire-red-version", | |
"title": "Pokémon: Fire Red Version", | |
"note": "Complete in box", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "pokemon-let-s-go-pikachu", | |
"title": "Pokémon: Let's Go, Pikachu!", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-omega-ruby", | |
"title": "Pokémon: Omega Ruby", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "pokemon-ruby-version", | |
"title": "Pokémon: Ruby Version", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "pokemon-shining-pearl", | |
"title": "Pokémon: Shining Pearl", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-sun", | |
"title": "Pokémon: Sun", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "pokemon-sword", | |
"title": "Pokémon: Sword", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-ultra-sun", | |
"title": "Pokémon: Ultra Sun", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "pokemon-violet", | |
"title": "Pokémon: Violet", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "pokemon-x", | |
"title": "Pokémon: X", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "popolocrois", | |
"title": "Popolocrois", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "portal", | |
"title": "Portal", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle","Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "prey", | |
"title": "Prey", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "prinny-1-2-exploded-and-reloaded", | |
"title": "Prinny 1-2: Exploded and Reloaded", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "psychonauts", | |
"title": "Psychonauts", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "puyo-puyo-tetris", | |
"title": "Puyo Puyo Tetris", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "queen-of-queens", | |
"title": "Queen of Queens", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Pc Fx" | |
}, | |
{ | |
"id": "r-type-command", | |
"title": "R-Type Command", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "r-type-dimensions-ex", | |
"title": "R-Type Dimensions EX", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "r-type-final-2", | |
"title": "R-Type Final 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rabi-ribi-p-s4", | |
"title": "Rabi-Ribi [PS4]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "rabi-ribi-vita", | |
"title": "Rabi-Ribi [Vita]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "radiant-historia", | |
"title": "Radiant Historia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "radiant-historia-perfect-chronology", | |
"title": "Radiant Historia: Perfect Chronology", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "radiata-stories", | |
"title": "Radiata Stories", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "rag-doll-kung-fu", | |
"title": "Rag Doll Kung Fu", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "ragnarok-odyssey-ace", | |
"title": "Ragnarok Odyssey ACE", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "raiden-iv-x-mikado-remix", | |
"title": "Raiden IV x MIKADO Remix", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "raiden-v-director-s-cut", | |
"title": "Raiden V: Director's Cut", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "raiden-v-director-s-cut-limited-edition", | |
"title": "Raiden V: Director's Cut Limited Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rainbow-cotton", | |
"title": "Rainbow Cotton", | |
"note": "Strictly Limited Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ratchet-and-clank-collection", | |
"title": "Ratchet & Clank Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer","Compilation"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "ratchet-and-clank-size-matters", | |
"title": "Ratchet and Clank: Size Matters", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "ray-gigant", | |
"title": "Ray Gigant", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "rayman", | |
"title": "Rayman", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "rayman-legends", | |
"title": "Rayman Legends", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "rayman-legends-vita", | |
"title": "Rayman Legends [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "rayman-legends-definitive-edition", | |
"title": "Rayman Legends: Definitive Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rayman-origins", | |
"title": "Rayman Origins", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "rayman-origins-vita", | |
"title": "Rayman Origins [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ray-storm-x-ray-crisis-hd-collection", | |
"title": "RayStorm X RayCrisis HD Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "red-dead-redemption-2", | |
"title": "Red Dead Redemption 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "red-dead-redemption-goty", | |
"title": "Red Dead Redemption GOTY", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "remember-me", | |
"title": "Remember Me", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "remi-lore-lost-girl-in-the-lands-of-lore", | |
"title": "RemiLore: Lost Girl in the Lands of Lore", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "resident-evil-0-hd", | |
"title": "Resident Evil 0 HD", | |
"note": "Remastered", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "resident-evil-4", | |
"title": "Resident Evil 4", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "resident-evil-hd", | |
"title": "Resident Evil HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "resident-evil-origins-collection", | |
"title": "Resident Evil Origins Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "resident-evil-triple-pack", | |
"title": "Resident Evil Triple Pack", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "resistance-burning-skies", | |
"title": "Resistance: Burning Skies", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "resonance-of-fate", | |
"title": "Resonance of Fate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "return-to-popolo-crois-a-story-of-seasons", | |
"title": "Return to PopoloCrois: A STORY OF SEASONS", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "rhapsody-marl-kingdom-chronicles", | |
"title": "Rhapsody: Marl Kingdom Chronicles", | |
"note": "Deluxe Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "riff-trax-the-game", | |
"title": "RiffTrax: The Game", | |
"note": "Wide Right Interactive", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ri-me", | |
"title": "RiME", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "risk-of-rain", | |
"title": "Risk of Rain", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "risk-of-rain-2", | |
"title": "Risk of Rain 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "river-city-girls", | |
"title": "River City Girls", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "robo-cop-versus-the-terminator", | |
"title": "RoboCop versus The Terminator", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Gear" | |
}, | |
{ | |
"id": "rochard", | |
"title": "Rochard", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "rocketbirds-hardboiled-chicken", | |
"title": "Rocketbirds: Hardboiled Chicken", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "rocksmith-2014-edition-remastered", | |
"title": "Rocksmith 2014 Edition - Remastered", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Casual"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "rogue-galaxy", | |
"title": "Rogue Galaxy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "rollerball", | |
"title": "Rollerball", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "romancing-sa-ga-3", | |
"title": "Romancing SaGa 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rune-factory-4-special", | |
"title": "Rune Factory 4 Special", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rune-factory-5", | |
"title": "Rune Factory 5", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "runner3", | |
"title": "Runner3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "rygar", | |
"title": "Rygar", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "sailor-moon", | |
"title": "Sailor Moon", | |
"note": "PCEWorks", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "samurai-jack-battle-through-time", | |
"title": "Samurai Jack: Battle Through Time", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "saturday-morning-rpg", | |
"title": "Saturday Morning RPG", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "saviors-of-sapphire-wings-stranger-of-sword-city-revisited", | |
"title": "Saviors of Sapphire Wings/Stranger of Sword City Revisited", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "scarlet-nexus", | |
"title": "Scarlet Nexus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "scott-pilgrim-vs-the-world-the-game", | |
"title": "Scott Pilgrim Vs. The World: The Game", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "s-d2-snes", | |
"title": "SD2SNES", | |
"note": "OG", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "Super Nintendo" | |
}, | |
{ | |
"id": "sea-of-stars", | |
"title": "Sea of Stars", | |
"note": "Kickstarter", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "sea-of-stars-switch", | |
"title": "Sea of Stars [Switch]", | |
"note": "Kickstarter", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "secret-of-mana", | |
"title": "Secret of Mana", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Super Nintendo" | |
}, | |
{ | |
"id": "secret-of-mana-remake", | |
"title": "Secret of Mana Remake", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "sega-ages-lightening-force-quest-for-the-darkstar", | |
"title": "SEGA AGES Lightening Force: Quest for the Darkstar", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sega-ages-phantasy-star", | |
"title": "SEGA AGES Phantasy Star", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sega-genesis-classics", | |
"title": "Sega Genesis Classics", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sega-genesis-collection", | |
"title": "Sega Genesis Collection", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Compilation"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "sekiro-shadows-die-twice", | |
"title": "Sekiro Shadows Die Twice", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "sewer-sam", | |
"title": "Sewer Sam", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "shadowgate", | |
"title": "Shadowgate", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shadowrun-returns", | |
"title": "Shadowrun Returns", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "shadows-of-adam", | |
"title": "Shadows of Adam", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shantae", | |
"title": "Shantae", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shantae-and-the-pirate-s-curse", | |
"title": "Shantae and the Pirate's Curse", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shantae-half-genie-hero-risky-beats-edition", | |
"title": "Shantae: Half-Genie Hero - Risky Beats Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "shantae-half-genie-hero-ultimate-day-one-edition", | |
"title": "Shantae: Half-Genie Hero - Ultimate Day One Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sharp-shot", | |
"title": "Sharp Shot", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Arcade"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "shatter", | |
"title": "Shatter", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "shienryu", | |
"title": "Shienryu", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "shin-chan-me-and-the-professor-on-summer-vacation-the-endless-seven-day-journey", | |
"title": "Shin Chan: Me and the Professor on Summer Vacation - The Endless Seven-Day Journey", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shin-megami-tensei-iv", | |
"title": "Shin Megami Tensei: IV", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "shin-megami-tensei-persona", | |
"title": "Shin Megami Tensei: Persona", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "shin-megami-tensei-persona-2-innocent-sin", | |
"title": "Shin Megami Tensei: Persona 2: Innocent Sin", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "shin-megami-tensei-persona-3-portable", | |
"title": "Shin Megami Tensei: Persona 3 Portable", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "shin-megami-tensei-persona-4", | |
"title": "Shin Megami Tensei: Persona 4", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "shin-megami-tensei-v", | |
"title": "Shin Megami Tensei: V", | |
"note": "Standard Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shining-resonance-refrain", | |
"title": "Shining Resonance Refrain", | |
"note": "Draconic Launch Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "shinobi", | |
"title": "Shinobi", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Master System" | |
}, | |
{ | |
"id": "shiren-the-wanderer-the-tower-of-fortune-and-the-dice-of-fate", | |
"title": "Shiren The Wanderer: The Tower of Fortune and the Dice of Fate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "shovel-knight", | |
"title": "Shovel Knight", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "shovel-knight-treasure-trove", | |
"title": "Shovel Knight: Treasure Trove", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sine-mora-ex", | |
"title": "Sine Mora EX", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "skies-of-arcadia-legends", | |
"title": "Skies of Arcadia: Legends", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "skul-the-hero-slayer", | |
"title": "Skul: The Hero Slayer", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sky-force-anniversary", | |
"title": "Sky Force Anniversary", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "sly-cooper-thieves-in-time", | |
"title": "Sly Cooper: Thieves in Time", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "snack-world-the-dungeon-crawl-gold", | |
"title": "Snack World: The Dungeon Crawl - Gold", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "snipperclips-plus-cut-it-out-together", | |
"title": "Snipperclips Plus: Cut it out, Together! ", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "snk-40th-anniversary-collection", | |
"title": "SNK 40th Anniversary Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "socom-fireteam-bravo-3", | |
"title": "SOCOM: Fireteam Bravo 3", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "solar-flux", | |
"title": "Solar Flux", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "soldier-blade", | |
"title": "Soldier Blade", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "sonic-mania-plus", | |
"title": "Sonic Mania Plus", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "sorcery-saga-curse-of-the-great-curry-god", | |
"title": "Sorcery Saga: Curse of the Great Curry God", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "soul-sacrifice", | |
"title": "Soul Sacrifice", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "space-armada", | |
"title": "Space Armada", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "space-battle", | |
"title": "Space Battle", | |
"note": "x1 White Label, x1Red Label", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "space-hawk", | |
"title": "Space Hawk", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "space-pirates-and-zombies", | |
"title": "Space Pirates and Zombies", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "sparklite", | |
"title": "Sparklite", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "spelunky-p-s4", | |
"title": "Spelunky [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "spelunky-vita", | |
"title": "Spelunky [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "spiritfarer", | |
"title": "Spiritfarer", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "splatoon-2", | |
"title": "Splatoon 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "spongebob-squarepants-lights-camera-pants", | |
"title": "Spongebob Squarepants Lights, Camera, Pants!", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "stampede", | |
"title": "Stampede", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "star-ocean-4-the-last-hope", | |
"title": "Star Ocean 4: The Last Hope", | |
"note": "4K + HD Remaster", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "star-ocean-first-departure-r", | |
"title": "Star Ocean First Departure R", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "star-ocean-first-departure", | |
"title": "Star Ocean: First Departure", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "star-ocean-integrity-and-faithlessness", | |
"title": "Star Ocean: Integrity and Faithlessness", | |
"note": "Day One Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "star-ocean-second-evolution", | |
"title": "Star Ocean: Second Evolution", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "star-ocean-the-divine-force", | |
"title": "Star Ocean: The Divine Force", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "star-ocean-the-last-hope-international", | |
"title": "Star Ocean: The Last Hope International", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "star-ocean-till-the-end-of-time", | |
"title": "Star Ocean: Till the End of Time", | |
"note": "Greatest Hits", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "star-renegades", | |
"title": "Star Renegades", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "star-strike", | |
"title": "Star Strike", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "star-wars-classic-edition", | |
"title": "Star Wars (Classic Edition)", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "star-wars-empire-at-war-gold-pack", | |
"title": "Star Wars Empire at War: Gold Pack", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-jedi-knight-ii-jedi-outcast", | |
"title": "Star Wars Jedi Knight II: Jedi Outcast", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-jedi-knight-dark-forces-ii", | |
"title": "Star Wars Jedi Knight: Dark Forces II", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-jedi-knight-jedi-academy", | |
"title": "Star Wars Jedi Knight: Jedi Academy", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-jedi-fallen-order", | |
"title": "Star Wars Jedi: Fallen Order", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "star-wars-knights-of-the-old-republic", | |
"title": "Star Wars Knights of the Old Republic", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox" | |
}, | |
{ | |
"id": "star-wars-knights-of-the-old-republic-steam", | |
"title": "Star Wars Knights of the Old Republic [Steam]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-knights-of-the-old-republic-ii-the-sith-lords", | |
"title": "Star Wars Knights of the Old Republic II: The Sith Lords", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-republic-commando", | |
"title": "Star Wars Republic Commando", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-republic-commando-switch", | |
"title": "Star Wars Republic Commando [Switch]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shooter"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "star-wars-rogue-squadron-ii-rogue-leader", | |
"title": "Star Wars Rogue Squadron II: Rogue Leader", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "star-wars-rogue-squadron-iii-rebel-strike", | |
"title": "Star Wars Rogue Squadron III: Rebel Strike", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "star-wars-starfighter", | |
"title": "Star Wars Starfighter", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-x-wing-vs-tie-fighter-balance-of-power-campaigns", | |
"title": "Star Wars X-Wing vs TIE Fighter: Balance of Power Campaigns", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-battlefront-2-classic-2005", | |
"title": "Star Wars: Battlefront 2 (Classic, 2005)", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-battlefront-renegade-squadron", | |
"title": "Star Wars: Battlefront Renegade Squadron", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Shooter"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "star-wars-dark-forces", | |
"title": "Star Wars: Dark Forces", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-squadrons", | |
"title": "Star Wars: Squadrons", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","Shmup"], | |
"platform": "Xbox One" | |
}, | |
{ | |
"id": "star-wars-the-force-unleashed-ii", | |
"title": "Star Wars: The Force Unleashed II", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-the-force-unleashed-ultimate-sith-edition", | |
"title": "Star Wars: The Force Unleashed Ultimate Sith Edition", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-tie-fighter-special-edition", | |
"title": "Star Wars: TIE Fighter Special Edition", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-x-wing-alliance", | |
"title": "Star Wars: X-Wing Alliance", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "star-wars-x-wing-special-edition", | |
"title": "Star Wars: X-Wing Special Edition", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "stardew-valley", | |
"title": "Stardew Valley", | |
"note": "Fangamer - Standard Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "starlink-battle-for-atlas", | |
"title": "Starlink Battle for Atlas", | |
"note": "Starter Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "steamworld-dig", | |
"title": "Steamworld Dig", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "steamworld-heist", | |
"title": "Steamworld Heist", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "steel-talons", | |
"title": "Steel Talons", | |
"note": "Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "stranger-of-paradise-final-fantasy-origin-xbox-x", | |
"title": "Stranger of Paradise Final Fantasy Origin [Xbox X]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "stranger-of-sword-city", | |
"title": "Stranger of Sword City", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "street-fighter-30th-anniversary-collection", | |
"title": "Street Fighter 30th Anniversary Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "street-fighter-x-tekken", | |
"title": "Street Fighter X Tekken", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "streets-of-rage-4", | |
"title": "Streets of Rage 4", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "streets-of-red", | |
"title": "Streets of Red", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "strider", | |
"title": "Strider", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "strider-p-s4", | |
"title": "Strider [PS4]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "summon-night-6-lost-borders", | |
"title": "Summon Night 6: Lost Borders", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "super-air-zonk-rockabilly-paradise", | |
"title": "Super Air Zonk: Rockabilly-Paradise", | |
"note": "PCEWorks", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx CD" | |
}, | |
{ | |
"id": "super-bomberman-r", | |
"title": "Super Bomberman R", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-hydorah-p-s4", | |
"title": "Super Hydorah [PS4]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "super-hydorah-vita", | |
"title": "Super Hydorah [Vita]", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "super-mario-3-d-all-stars", | |
"title": "Super Mario 3D All-Stars", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-mario-advance", | |
"title": "Super Mario Advance", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "super-mario-all-stars-limited-edition", | |
"title": "Super Mario All-Stars: Limited Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "super-mario-bros", | |
"title": "Super Mario Bros.", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "super-mario-bros-2", | |
"title": "Super Mario Bros. 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "super-mario-bros-3", | |
"title": "Super Mario Bros. 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "super-mario-bros-wonder", | |
"title": "Super Mario Bros. Wonder", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-mario-kart", | |
"title": "Super Mario Kart", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Racing"], | |
"platform": "Super Nintendo" | |
}, | |
{ | |
"id": "super-mario-maker-2", | |
"title": "Super Mario Maker 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-mario-odyssey", | |
"title": "Super Mario Odyssey", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-mario-sunshine", | |
"title": "Super Mario Sunshine", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "super-mario-world-super-mario-advance-2", | |
"title": "Super Mario World: Super Mario Advance 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "super-meat-boy", | |
"title": "Super Meat Boy", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "super-metroid", | |
"title": "Super Metroid", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Super Nintendo" | |
}, | |
{ | |
"id": "super-monkey-ball-2", | |
"title": "Super Monkey Ball: 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual","Platformer"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "super-monkey-ball-banana-blitz-hd", | |
"title": "Super Monkey Ball: Banana Blitz HD", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-monkey-ball-banana-splitz", | |
"title": "Super Monkey Ball: Banana Splitz", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual","Platformer"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "super-neptunia-rpg", | |
"title": "Super Neptunia RPG", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-puzzle-fighter-ii-turbo-hd-remix", | |
"title": "Super Puzzle Fighter II Turbo HD Remix", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "super-skweek", | |
"title": "Super Skweek", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "super-smash-bros-ultimate", | |
"title": "Super Smash Bros. Ultimate", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "super-star-soldier", | |
"title": "Super Star Soldier", | |
"note": "Signed by Chris Bucci - Broken?", | |
"physical": true, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "super-street-fighter-ii-turbo-hd-remix", | |
"title": "Super Street Fighter II Turbo HD Remix", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "super-turrican-directors-cut", | |
"title": "Super Turrican: Directors Cut", | |
"note": "Analogue: Super Nt", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Super Nintendo" | |
}, | |
{ | |
"id": "superbrothers-sword-and-sworcery-ep", | |
"title": "Superbrothers: Sword & Sworcery EP", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "superdimension-neptune-vs-sega-hard-girls", | |
"title": "Superdimension Neptune VS Sega Hard Girls", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "sword-art-online-alicization-lycoris", | |
"title": "Sword Art Online: Alicization Lycoris", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "sword-art-online-fatal-bullet", | |
"title": "Sword Art Online: Fatal Bullet", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "sword-art-online-hollow-fragment", | |
"title": "Sword Art Online: Hollow Fragment", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "sword-art-online-hollow-realization", | |
"title": "Sword Art Online: Hollow Realization", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "sword-art-online-lost-song", | |
"title": "Sword Art Online: Lost Song", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "sword-of-mana", | |
"title": "Sword of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "syd-of-valis", | |
"title": "Syd of Valis", | |
"note": "Limited Run Games: Valis Collection", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "soeldner-x-2-final-prototype", | |
"title": "Söldner-X 2: Final Prototype", | |
"note": "Play Asia Exclusive", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tactics-ogre-let-us-cling-together", | |
"title": "Tactics Ogre: Let Us Cling Together", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "tactics-ogre-reborn", | |
"title": "Tactics Ogre: Reborn", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tails-of-iron", | |
"title": "Tails of Iron", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tales-of-arise", | |
"title": "Tales of Arise", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "tales-of-arise-p-s5", | |
"title": "Tales of Arise [PS5]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "tales-of-berseria", | |
"title": "Tales of Berseria", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "tales-of-eternia", | |
"title": "Tales of Eternia", | |
"note": "x2, 1 Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "tales-of-graces-f", | |
"title": "Tales of Graces f", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-graces-f-j", | |
"title": "Tales of Graces f [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-hearts-r", | |
"title": "Tales of Hearts R", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tales-of-hearts-r-j", | |
"title": "Tales of Hearts R [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tales-of-innocence-r-j", | |
"title": "Tales of Innocence R [J]", | |
"note": "English patch", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tales-of-legendia", | |
"title": "Tales of Legendia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "tales-of-phantasia-x-j", | |
"title": "Tales of Phantasia X [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "tales-of-symphonia", | |
"title": "Tales of Symphonia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "tales-of-symphonia-chronicles", | |
"title": "Tales of Symphonia Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-symphonia-remastered", | |
"title": "Tales of Symphonia Remastered", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tales-of-symphonia-dawn-of-the-new-world", | |
"title": "Tales of Symphonia: Dawn of the New World", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "tales-of-the-abyss", | |
"title": "Tales of the Abyss", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "tales-of-the-abyss-3-ds", | |
"title": "Tales of the Abyss 3DS", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "tales-of-the-world-radiant-mythology", | |
"title": "Tales of the World: Radiant Mythology", | |
"note": "Sealed", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "tales-of-vesperia", | |
"title": "Tales of Vesperia", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "tales-of-vesperia-definitive-edition", | |
"title": "Tales of Vesperia - Definitive Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tales-of-vesperia-j", | |
"title": "Tales of Vesperia [J]", | |
"note": "JP", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-xillia", | |
"title": "Tales of Xillia", | |
"note": "Collector's Edition + Standard Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-xillia-2", | |
"title": "Tales of Xillia 2", | |
"note": "Collector's Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-xillia-2-j", | |
"title": "Tales of Xillia 2 [J]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-xillia-korea", | |
"title": "Tales of Xillia [Korea]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-zestiria", | |
"title": "Tales of Zestiria", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tales-of-zestiria-p-s4", | |
"title": "Tales of Zestiria [PS4]", | |
"note": "Collector's Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "team-fortress-2", | |
"title": "Team Fortress 2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shooter"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "tearaway", | |
"title": "Tearaway", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "teenage-mutant-ninja-turtles-shredder-s-revenge-switch", | |
"title": "Teenage Mutant Ninja Turtles: Shredder's Revenge [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "teenage-mutant-ninja-turtles-the-cowabunga-collection", | |
"title": "Teenage Mutant Ninja Turtles: The Cowabunga Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "telenet-shooting-collection", | |
"title": "Telenet Shooting Collection", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "terraria", | |
"title": "Terraria", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tetris-effect", | |
"title": "Tetris Effect", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "tetrobot-and-co", | |
"title": "Tetrobot and Co.", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "the-adventures-of-batman-and-robin", | |
"title": "The Adventures of Batman & Robin", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Gear" | |
}, | |
{ | |
"id": "the-binding-of-isaac", | |
"title": "The Binding of Isaac", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "the-binding-of-isaac-rebirth", | |
"title": "The Binding of Isaac Rebirth", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "the-binding-of-isaac-afterbirth", | |
"title": "The Binding of Isaac: Afterbirth+", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-cruel-king-and-the-great-hero", | |
"title": "The Cruel King and the Great Hero", | |
"note": "Storybook Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-dark-crystal-age-of-resistance-tactics", | |
"title": "The Dark Crystal: Age of Resistance Tactics", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-elder-scrolls-iv-oblivion", | |
"title": "The Elder Scrolls IV: Oblivion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Xbox 360" | |
}, | |
{ | |
"id": "the-elder-scrolls-iv-oblivion-p-s3", | |
"title": "The Elder Scrolls IV: Oblivion [PS3]", | |
"note": "Game of the Year Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "the-elder-scrolls-v-skyrim", | |
"title": "The Elder Scrolls V: Skyrim", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "the-elder-scrolls-v-skyrim-p-s4", | |
"title": "The Elder Scrolls V: Skyrim [PS4]", | |
"note": "Special Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-elder-scrolls-v-skyrim-switch", | |
"title": "The Elder Scrolls V: Skyrim [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-friends-of-ringo-ishikawa", | |
"title": "The Friends of Ringo Ishikawa", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-hobbit", | |
"title": "The Hobbit", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "the-ico-and-shadow-of-the-colossus-collection", | |
"title": "The Ico & Shadow of the Colossus Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Compilation"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "the-inner-world", | |
"title": "The Inner World", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "the-king-of-fighters-97-global-match", | |
"title": "The King of Fighters 97 Global Match", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-king-of-fighters-xiv", | |
"title": "The King of Fighters XIV", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-last-story", | |
"title": "The Last Story", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "the-legend-of-heroes-ii-prophecy-of-the-moonlight-witch", | |
"title": "The Legend of Heroes II: Prophecy of the Moonlight Witch", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-iii-song-of-the-ocean", | |
"title": "The Legend of Heroes III: Song of the Ocean", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-a-tear-of-vermillion", | |
"title": "The Legend of Heroes: A Tear of Vermillion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-from-zero-psp", | |
"title": "The Legend of Heroes: Trails from Zero [PSP]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-from-zero-switch", | |
"title": "The Legend of Heroes: Trails From Zero [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-in-the-sky", | |
"title": "The Legend of Heroes: Trails in the Sky", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-in-the-sky-sc", | |
"title": "The Legend of Heroes: Trails in the Sky SC", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-into-reverie", | |
"title": "The Legend of Heroes: Trails into Reverie", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel", | |
"title": "The Legend of Heroes: Trails of Cold Steel", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel-decisive-edition", | |
"title": "The Legend of Heroes: Trails of Cold Steel - Decisive Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel-ii", | |
"title": "The Legend of Heroes: Trails of Cold Steel II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel-ii-relentless-edition", | |
"title": "The Legend of Heroes: Trails of Cold Steel II - Relentless Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel-iii", | |
"title": "The Legend of Heroes: Trails of Cold Steel III", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-of-cold-steel-iv", | |
"title": "The Legend of Heroes: Trails of Cold Steel IV", | |
"note": "Frontline Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-to-azure", | |
"title": "The Legend of Heroes: Trails to Azure", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "the-legend-of-heroes-trails-to-azure-switch", | |
"title": "The Legend of Heroes: Trails to Azure - Switch", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-legacy", | |
"title": "The Legend of Legacy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "the-legend-of-nayuta-boundless-trails", | |
"title": "The Legend of Nayuta: Boundless Trails", | |
"note": "Deluxe Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-zelda", | |
"title": "The Legend of Zelda", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "the-legend-of-zelda-link-s-awakening", | |
"title": "The Legend of Zelda Link's Awakening", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-zelda-a-link-between-worlds", | |
"title": "The Legend of Zelda: A Link Between Worlds", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "the-legend-of-zelda-a-link-to-the-past-four-swords", | |
"title": "The Legend of Zelda: A Link to the Past - Four Swords", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy Advance" | |
}, | |
{ | |
"id": "the-legend-of-zelda-breath-of-the-wild", | |
"title": "The Legend of Zelda: Breath of the Wild", | |
"note": "Expansion Pass", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-zelda-four-swords-adventures", | |
"title": "The Legend of Zelda: Four Swords Adventures", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "the-legend-of-zelda-majora-s-mask", | |
"title": "The Legend of Zelda: Majora's Mask", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo 64" | |
}, | |
{ | |
"id": "the-legend-of-zelda-ocarina-of-time", | |
"title": "The Legend of Zelda: Ocarina of Time", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo 64" | |
}, | |
{ | |
"id": "the-legend-of-zelda-ocarina-of-time-3-d", | |
"title": "The Legend of Zelda: Ocarina of Time 3D", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "3DS" | |
}, | |
{ | |
"id": "the-legend-of-zelda-ocarina-of-time-gcn", | |
"title": "The Legend of Zelda: Ocarina of Time GCN", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "the-legend-of-zelda-phantom-hourglass", | |
"title": "The Legend of Zelda: Phantom Hourglass", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "the-legend-of-zelda-skyward-sword", | |
"title": "The Legend of Zelda: Skyward Sword", | |
"note": "Music CD", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "the-legend-of-zelda-spirit-tracks", | |
"title": "The Legend of Zelda: Spirit Tracks", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "DS" | |
}, | |
{ | |
"id": "the-legend-of-zelda-tears-of-the-kingdom", | |
"title": "The Legend of Zelda: Tears of the Kingdom", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-legend-of-zelda-the-wind-waker", | |
"title": "The Legend of Zelda: The Wind Waker", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "the-legend-of-zelda-the-wind-waker-hd", | |
"title": "The Legend of Zelda: The Wind Waker HD", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Wii U" | |
}, | |
{ | |
"id": "the-legend-of-zelda-twilight-princess", | |
"title": "The Legend of Zelda: Twilight Princess", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Gamecube" | |
}, | |
{ | |
"id": "the-lost-child", | |
"title": "The Lost Child", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-ninja-saviors-return-of-the-warriors", | |
"title": "The Ninja Saviors - Return of The Warriors", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Brawler"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-shapeshifter", | |
"title": "The Shapeshifter", | |
"note": "Greenboy Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy" | |
}, | |
{ | |
"id": "the-shapeshifter-ii", | |
"title": "The Shapeshifter II", | |
"note": "Greenboy Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy" | |
}, | |
{ | |
"id": "the-sly-collection", | |
"title": "The Sly Collection", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer","Compilation"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "the-wild-at-heart", | |
"title": "The Wild at Heart", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-witcher-3-wild-hunt", | |
"title": "The Witcher 3: Wild Hunt", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "the-wonderful-101-remastered", | |
"title": "The Wonderful 101: Remastered", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "the-world-ends-with-you-final-remix", | |
"title": "The World Ends with You: Final Remix", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "thimbleweed-park", | |
"title": "Thimbleweed Park", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "time-and-eternity", | |
"title": "Time and Eternity", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "tiny-barbarian-dx", | |
"title": "Tiny Barbarian Dx", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "titan-attacks", | |
"title": "Titan Attacks", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "toast-time", | |
"title": "Toast Time", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "toejam-and-earl-back-in-the-groove", | |
"title": "Toejam & Earl: Back In The Groove", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tokyo-mirage-session-fe-encore", | |
"title": "Tokyo Mirage Session #FE Encore", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "tokyo-tattoo-girls", | |
"title": "Tokyo Tattoo Girls", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tokyo-xanadu", | |
"title": "Tokyo Xanadu", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tomb-raider", | |
"title": "Tomb Raider", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "top-gun", | |
"title": "Top Gun", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "torchlight", | |
"title": "Torchlight", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "toukiden-2", | |
"title": "Toukiden 2", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "toukiden-kiwami", | |
"title": "Toukiden: Kiwami", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "toukiden-the-age-of-demons", | |
"title": "Toukiden: The Age of Demons", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "tournament-cyberball", | |
"title": "Tournament Cyberball", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "transformers-devastation", | |
"title": "Transformers Devastation", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "trials-of-mana", | |
"title": "Trials of Mana", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "triangle-strategy", | |
"title": "Triangle Strategy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "trillion-god-of-destruction", | |
"title": "Trillion: God of Destruction", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "trine-2", | |
"title": "Trine 2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "trip-world-dx", | |
"title": "Trip World DX", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "triple-action", | |
"title": "Triple Action", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "tron-deadly-discs", | |
"title": "Tron Deadly Discs", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "tunic", | |
"title": "Tunic", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Xbox Series X S" | |
}, | |
{ | |
"id": "turbo-ever-drive", | |
"title": "Turbo EverDrive", | |
"note": "v2", | |
"physical": true, | |
"digital": false, | |
"genre": ["Flash Cart"], | |
"platform": "TurboGrafx 16" | |
}, | |
{ | |
"id": "turnip-boy-commits-tax-evasion", | |
"title": "Turnip Boy Commits Tax Evasion", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "turrican-flashback", | |
"title": "Turrican Flashback", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer","Compilation"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ultimate-ghosts-n-goblins", | |
"title": "Ultimate Ghosts 'N Goblins", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "ultra-street-fighter-ii-the-final-challengers", | |
"title": "Ultra Street Fighter II: The Final Challengers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Fighting"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "umihara-kawase-fresh", | |
"title": "Umihara Kawase Fresh!", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","Platformer"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "uncharted-drake-s-fortune", | |
"title": "Uncharted: Drake's Fortune", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "unicorn-overlord", | |
"title": "Unicorn Overlord", | |
"note": "Collector''s Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "utawarerumono-mask-of-deception", | |
"title": "Utawarerumono: Mask of Deception", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "utawarerumono-mask-of-truth", | |
"title": "Utawarerumono: Mask of Truth", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "utopia", | |
"title": "Utopia", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Intellivision" | |
}, | |
{ | |
"id": "valfaris", | |
"title": "Valfaris", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "valhalla-knights-3", | |
"title": "Valhalla Knights 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "valis-iii", | |
"title": "Valis III", | |
"note": "Limited Run Games: Valis Collection", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "valis-the-fantasm-soldier", | |
"title": "Valis: The Fantasm Soldier", | |
"note": "Limited Run Games: Valis Collection", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "valkyria-chronicles", | |
"title": "Valkyria Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "valkyria-chronicles-4", | |
"title": "Valkyria Chronicles 4", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "valkyrie-elysium", | |
"title": "Valkyrie Elysium", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 5" | |
}, | |
{ | |
"id": "vessel", | |
"title": "Vessel", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Platformer","Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "vvvvvv", | |
"title": "VVVVVV", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "wheel-of-fortune", | |
"title": "Wheel of Fortune", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Nintendo Entertainment System" | |
}, | |
{ | |
"id": "where-is-my-body", | |
"title": "Where is my Body?", | |
"note": "Greenboy Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Game Boy" | |
}, | |
{ | |
"id": "white-knight-chronicles", | |
"title": "White Knight Chronicles", | |
"note": "International Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "white-knight-chronicles-ii", | |
"title": "White Knight Chronicles II", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "wii-sports", | |
"title": "Wii Sports", | |
"note": "Pack-in", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "wild-arms", | |
"title": "Wild Arms", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "wild-arms-2", | |
"title": "Wild Arms 2", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "windjammers", | |
"title": "Windjammers", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Sports"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "wing-warriors", | |
"title": "Wing Warriors", | |
"note": "Incube8 Games", | |
"physical": true, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "Game Boy Color" | |
}, | |
{ | |
"id": "wip-eout-hd", | |
"title": "WipEout HD", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Racing"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "witch-spring-3-re-fine-the-story-of-eirudy", | |
"title": "Witch Spring 3 [Re: Fine] The Story of Eirudy", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "wizard-of-legend", | |
"title": "Wizard of Legend", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "wizorb", | |
"title": "Wizorb", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Arcade","Puzzle"], | |
"platform": "Steam" | |
}, | |
{ | |
"id": "wolf-of-the-battlefield-commando-3", | |
"title": "Wolf of the Battlefield: Commando 3", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "wonder-boy-asha-in-monster-world", | |
"title": "Wonder Boy - Asha in Monster World", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "wonder-boy-the-dragon-s-trap", | |
"title": "Wonder Boy: The Dragon's Trap", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "world-of-final-fantasy", | |
"title": "World of Final Fantasy", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "world-of-final-fantasy-vita", | |
"title": "World of Final Fantasy [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "xeno-crisis", | |
"title": "Xeno Crisis", | |
"note": "Digital = ROM", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","Shmup"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "xeno-blade-chronicles", | |
"title": "XenoBlade Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "xenoblade-chronicles-2", | |
"title": "Xenoblade Chronicles 2", | |
"note": "Standard + Special Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "xenoblade-chronicles-2-torna-the-golden-country", | |
"title": "Xenoblade Chronicles 2: Torna ~ The Golden Country", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "xenoblade-chronicles-3", | |
"title": "Xenoblade Chronicles 3", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "xenoblade-chronicles-definitive-edition", | |
"title": "Xenoblade Chronicles: Definitive Edition", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "xenogears", | |
"title": "Xenogears", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "xybots", | |
"title": "Xybots", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Lynx" | |
}, | |
{ | |
"id": "yonder-the-cloud-catcher-chronicles", | |
"title": "Yonder The Cloud Catcher Chronicles", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Casual"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ys-book-i-and-ii", | |
"title": "Ys: Book I & II", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Wii" | |
}, | |
{ | |
"id": "ys-i-and-ii-chronicles", | |
"title": "Ys: I and II Chronicles", | |
"note": "Premium Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "ys-ix-monstrum-nox-p-s4", | |
"title": "Ys: IX Monstrum Nox [PS4]", | |
"note": "Digital Deluxe Edition", | |
"physical": false, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "ys-ix-monstrum-nox-switch", | |
"title": "Ys: IX Monstrum Nox [Switch]", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ys-memories-of-celceta", | |
"title": "Ys: Memories of Celceta", | |
"note": "Silver Anniversary Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ys-memories-of-celceta-p-s4", | |
"title": "Ys: Memories of Celceta [PS4]", | |
"note": "Timeless Adventurer Edition", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "ys-origin-p-s4", | |
"title": "Ys: Origin [PS4]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "ys-origin-switch", | |
"title": "Ys: Origin [Switch]", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ys-origin-vita", | |
"title": "Ys: Origin [Vita]", | |
"note": "Limited Run Games", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "ys-seven", | |
"title": "Ys: Seven", | |
"note": "Premium Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "ys-the-ark-of-napishtim", | |
"title": "Ys: The Ark of Napishtim", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 2" | |
}, | |
{ | |
"id": "ys-the-oath-in-felghana", | |
"title": "Ys: The Oath In Felghana", | |
"note": "Premium Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Portable" | |
}, | |
{ | |
"id": "ys-viii-lacrimosa-of-dana-p-s4", | |
"title": "Ys: VIII Lacrimosa of DANA [PS4]", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation 4" | |
}, | |
{ | |
"id": "ys-viii-lacrimosa-of-dana-switch", | |
"title": "Ys: VIII Lacrimosa of DANA [Switch]", | |
"note": "Limited Edition", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "Switch" | |
}, | |
{ | |
"id": "ys-viii-lacrimosa-of-dana-vita", | |
"title": "Ys: VIII Lacrimosa of DANA [Vita]", | |
"note": "", | |
"physical": true, | |
"digital": true, | |
"genre": ["Action Adventure","RPG"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "zanac-x-zanac", | |
"title": "Zanac x Zanac", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Shmup"], | |
"platform": "PlayStation" | |
}, | |
{ | |
"id": "zen-pinball", | |
"title": "ZEN Pinball", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["Arcade"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "zenonia", | |
"title": "Zenonia", | |
"note": "", | |
"physical": false, | |
"digital": true, | |
"genre": ["RPG"], | |
"platform": "PlayStation 3" | |
}, | |
{ | |
"id": "zero-time-dilemma", | |
"title": "Zero Time Dilemma", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Puzzle"], | |
"platform": "PlayStation Vita" | |
}, | |
{ | |
"id": "zero-wing", | |
"title": "Zero Wing", | |
"note": "Collectors Edition (CastleMania Games)", | |
"physical": true, | |
"digital": false, | |
"genre": ["Shmup"], | |
"platform": "Genesis" | |
}, | |
{ | |
"id": "zoids-wild-blast-unleashed", | |
"title": "Zoids Wild: Blast Unleashed", | |
"note": "", | |
"physical": true, | |
"digital": false, | |
"genre": ["Action Adventure"], | |
"platform": "Switch" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment