Compare commits
117 Commits
Author | SHA1 | Date |
---|---|---|
fanyx | d59eefbbb6 | |
fanyx | 64cae49509 | |
fanyx | 0ddabe618e | |
fanyx | 82ced4677c | |
fanyx | 86ac314b9f | |
fanyx | 698ed92f28 | |
fanyx | 48d9ab31f2 | |
fanyx | 65bae9d20c | |
fanyx | b43bee4d22 | |
fanyx | 9afc8c015c | |
fanyx | c6527349d6 | |
fanyx | 3d24998ad8 | |
fanyx | 37a47b36a9 | |
fanyx | 5b6559ffd2 | |
fanyx | 54379b32a7 | |
fanyx | c333ea888c | |
fanyx | f01e27a9fe | |
fanyx | 354f5fda93 | |
fanyx | da2a909314 | |
fanyx | 4ef29bb6cb | |
fanyx | b1b3f19454 | |
fanyx | 31d1225699 | |
fanyx | 7c3cf3e03e | |
fanyx | 4b3e50f701 | |
fanyx | b860bce7da | |
fanyx | d5ab9b4c7d | |
fanyx | 8bf6b4118e | |
fanyx | e545d2a143 | |
fanyx | a60d1170a6 | |
fanyx | d33d2a625b | |
fanyx | 4688a5da67 | |
fanyx | d338fd5d13 | |
fanyx | 7acf978b94 | |
fanyx | b0dea2f401 | |
fanyx | 8140470544 | |
fanyx | 25c9a55c99 | |
fanyx | 2880b38a1a | |
fanyx | 11fdf891e3 | |
fanyx | 853a2a1176 | |
fanyx | 9ce7dac3d5 | |
fanyx | c6ef6213fe | |
fanyx | ef9e01d3a5 | |
fanyx | f2bbb4c3cb | |
fanyx | c5c4d48ed5 | |
fanyx | 674db3d95d | |
fanyx | 7c173f78b3 | |
fanyx | ef5a1fb968 | |
fanyx | 235b84abc4 | |
fanyx | 1b5bc2b393 | |
fanyx | 5ec19090f1 | |
fanyx | aacc9fdd6d | |
fanyx | ae818e3894 | |
fanyx | 4fb562b138 | |
fanyx | 1065394d2d | |
fanyx | 7a80c6718f | |
fanyx | 57d4f9c44c | |
fanyx | 0ecacb84e4 | |
fanyx | 20c6c9296d | |
fanyx | 2e4839b94d | |
fanyx | 4a98d3f926 | |
fanyx | 8a9adf3525 | |
fanyx | b646948589 | |
fanyx | 87c36d82ad | |
fanyx | efda32dd2d | |
fanyx | aa980894ae | |
fanyx | d99e4ecd8a | |
fanyx | 5da55448e3 | |
fanyx | 54461d0c0f | |
fanyx | 4e994dd56a | |
fanyx | f98e44d3c7 | |
fanyx | 1deaf54b6d | |
fanyx | 92e5cff960 | |
fanyx | 194b15ab27 | |
fanyx | 9ac2283658 | |
fanyx | fd553d179e | |
fanyx | cdc557308a | |
fanyx | a6ee6a7796 | |
fanyx | d39216eba8 | |
fanyx | 7eb65e7c68 | |
fanyx | 80fd43532c | |
fanyx | 27d31f525c | |
fanyx | 59fdb8519b | |
fanyx | 9a851686d1 | |
fanyx | 362f071bac | |
fanyx | 68ccdb4a3f | |
fanyx | 90ddf70a61 | |
fanyx | 7a39f33051 | |
fanyx | 8e683b1c36 | |
fanyx | aa2a86c621 | |
fanyx | 894ee62c18 | |
fanyx | e3e6eb144b | |
fanyx | 3ddb5b5c61 | |
fanyx | d49408fb49 | |
fanyx | d4624c9721 | |
fanyx | 4df732d372 | |
fanyx | b54f06003b | |
fanyx | c3a430c3f2 | |
fanyx | 4eac10f1b4 | |
fanyx | 2dc7895e6b | |
fanyx | 8aafb40e75 | |
fanyx | 879b9b3251 | |
fanyx | 89ceb1e8e2 | |
fanyx | f64fdd62b3 | |
fanyx | 508f3b9ad3 | |
fanyx | f9e86fc5b9 | |
fanyx | 25c49f4a7c | |
fanyx | baa07d34e0 | |
fanyx | acbe33dbc9 | |
fanyx | 38dc466fcb | |
fanyx | eb33908acf | |
fanyx | fe966be74b | |
fanyx | 629db9526b | |
fanyx | 32c5f34458 | |
fanyx | f268b2ae75 | |
fanyx | 8625960dde | |
fanyx | fa0c8eb72c | |
fanyx | 314d6fafb4 |
|
@ -1,5 +1,2 @@
|
|||
.vscode/
|
||||
env/
|
||||
|
||||
*.pyc
|
||||
*.code-snippets
|
||||
*.pyc
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"New Game": {
|
||||
"prefix": "ng",
|
||||
"body": [
|
||||
"- name: \"$1\"",
|
||||
" platform: \"$2\"",
|
||||
""
|
||||
],
|
||||
"description": "Create new game entry"
|
||||
}
|
||||
}
|
6
build.py
6
build.py
|
@ -1,4 +1,4 @@
|
|||
#!/bin/env python
|
||||
#!/bin/env python3
|
||||
|
||||
from yaml import safe_load
|
||||
from glob import glob
|
||||
|
@ -107,8 +107,8 @@ def build_table(index, games):
|
|||
|
||||
# actual game text
|
||||
for game in games:
|
||||
name = game['name']
|
||||
platform = game['platform']
|
||||
name = game.get('name')
|
||||
platform = game.get('platform', '')
|
||||
if len(platform) > MAX_WIDTH_PLATFORM:
|
||||
raise Exception(f"Platform shortcode for {name} is longer than {MAX_WIDTH_PLATFORM} characters. Invalid.")
|
||||
|
||||
|
|
329
gamelog.txt
329
gamelog.txt
|
@ -3,141 +3,142 @@ _______________// \\_______________| :|____________//
|
|||
_______________| Wishlist |_______________| :|____________| List of Shame |____________| :|_____________| List of Pride |____________
|
||||
\\____________________// | :| \\_________________________// | :| \\_________________________//
|
||||
| :| | :|
|
||||
- Not Yet Owned [W001] | :| - Currently Playing [S001] | :| - Early Days [P001]
|
||||
| :| - Upcoming [S002] | :| - First PC [P002]
|
||||
_________________________ | :| - Soon(TM) 2023 [S003] | :| - The Multiplayer Phase [P003]
|
||||
_____________// \\____________| :| - Unknown Future [S004] | :| - 2020 [P004]
|
||||
_____________| Not Yet Owned |____________| :| - Haunts my Dreams [S005] | :| - 2021 [P005]
|
||||
\\_________________________// [W001] | :| | :| - 2022 [P006]
|
||||
| :| _____________________________ | :| - 2023 [P007]
|
||||
______ ______________________________________________| :|__________// \\__________| :|
|
||||
|======|==============================================| :|__________| Currently Playing |__________| :| ______________________
|
||||
| PC | Hollow Knight: Silksong | :| \\_____________________________// [S001] | :|______________// \\______________
|
||||
| PC | Starfetchers - Episode 1 | :| | :|______________| Early Days |______________
|
||||
| PC | Ghost Song | :|______ ______________________________________________| :| \\______________________// [P001]
|
||||
| PC | Gloomwood | :|======|==============================================| :|
|
||||
| PC | Slay the Spire | :| PS4 | Persona 5 Royal | :|______ ______________________________________________
|
||||
| PC | Switchcars | :| PC | Kingdom Two Crowns | :|======|==============================================|
|
||||
| PC | Into the Breach | :| PS4 | Theatrythm Final Fantasy: Final Bar Line | :| GBC | Pokemon Silver |
|
||||
| PS1 | Parasite Eve | :| PC | Anno 1404 - History Edition - Co-Op | :| GBC | Jungle Book: Mowgli's Adventure |
|
||||
| PC | Sifu | :| PC | Darksiders: Warmastered Edition | :| GBA | Pokemon Sapphire |
|
||||
| PS4 | Dark Souls 2 | :|______|______________________________________________| :| GBC | Pokemon Trading Card Game |
|
||||
| PS4 | Dark Souls 3 | :| ____________________ | :| GBC | Pokemon Crystal |
|
||||
| PC | Griftlands | :|_______________// \\______________| :| PC | Colin McRae Rally 2.0 |
|
||||
| PC | Tunic | :|_______________| Upcoming |______________| :| PC | Anno 1602 |
|
||||
| PC | Nine Sols | :| \\____________________// [S002] | :| GBA | Pokemon Emerald |
|
||||
| PC | Psychonauts | :| | :| PC | Need for Speed: Underground |
|
||||
| PC | Psychonauts 2 | :|______ ______________________________________________| :| PC | Need for Speed: Underground 2 |
|
||||
| PC | Cave Story+ | :|======|==============================================| :| PC | Robin Hood: Legend of Sherwood |
|
||||
| PS2 | God Hand | :| PS4 | Kingdom Hearts: Dream Drops Distance HD | :| PC | Driver |
|
||||
| PC | Shovel Knight | :| PC | Gnosia | :| PSP | Metal Gear Solid: Peacewalker |
|
||||
| PS3 | Assassin's Creed | :| PC | Final Fantasy VIII | :| PSX | Metal Gear Solid |
|
||||
| PC | Astalon: Tears of the Earth | :| PC | Beacon Pines | :| PC | F1 '02 |
|
||||
| PC | Bloodstained: Ritual of the Night | :| PC | Ori and the Will of the Wisps | :| GBA | Kim Possible: Revenge of the Monkey Fist |
|
||||
| PC | Death Trash | :| PC | Dungeon Munchies | :| PS2 | Dragon Quest VIII |
|
||||
| PC | Trails Rising | :| PC | Hades | :| NDS | Final Fantasy III |
|
||||
| PC | Hellblade: Senua's Sacrifice | :|______|______________________________________________| :| GBA | Final Fantasy I & II: Dawn of Souls |
|
||||
| PC | Factorio | :| _________________________ | :| NDS | Final Fantasy IV |
|
||||
| PC | VA-11 Hall-A: Cyberpunk Bartender Action | :|____________// \\____________| :| GBA | Final Fantasy V Advance |
|
||||
| PC | Katana Zero | :|____________| Soon(TM) 2023 |____________| :| GBA | Final Fantasy VI Advance |
|
||||
| PC | art of rally | :| \\_________________________// [S003] | :| PSP | Lego Star Wars |
|
||||
| PC | Ooblets | :| | :| PSP | Lego Star Wars II |
|
||||
| PC | Don't Escape: 4 Days to Survive | :|______ ______________________________________________| :| PSP | Monster Hunter Freedom Unite |
|
||||
| PC | Journey | :|======|==============================================| :| PSP | Dissidia: Final Fantasy |
|
||||
| PC | Baba Is You | :| PC | Outer Wilds | :| PSP | duodecim Dissidia: Final Fantasy |
|
||||
| PC | Ni no Kuni: Wrath of the White Witch | :| PS4 | Gravity Rush: Remastered | :| PS2 | Kingdom Hearts 2 |
|
||||
| PC | Ikenfell | :| PC | LISA | :| GBA | Kingdom Hearts: Chain of Memories |
|
||||
| PC | Chicory: A Colorful Tale | :| PSX | Castlevania: Symphony of the Night | :| PS2 | Kingdom Hearts |
|
||||
| PC | Moonscars | :|______|______________________________________________| :| PSP | Ratchet and Clank: Size Matters |
|
||||
| PC | Control: Ultimate Edition | :| __________________________ | :| PSP | Exit |
|
||||
| PC | Carrion | :|____________// \\___________| :| PC | Need for Speed: Most Wanted (2005) |
|
||||
| PC | Haven | :|____________| Unknown Future |___________| :| GBA | The Legend of Zelda: Minish Cap |
|
||||
| PC | Persona 4 Golden | :| \\__________________________// [S004] | :| PC | Moorhuhn 3: ...Es Gibt Huhn! |
|
||||
| PC | Signs of the Sojourner | :| | :| GBA | Pokemon Pinball: Ruby & Sapphire |
|
||||
| PC | A Space for the Unbound | :|______ ______________________________________________| :| NDS | Mario Kart DS |
|
||||
| PC | Card Shark | :|======|==============================================| :| GBA | Pokemon Leaf Green |
|
||||
| PC | Strange Horticulture | :| PC | Dragon's Dogma: Dark Arisen | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
|
||||
| PC | Crowsworn | :| PC | Spiritfarer: Farewell Edition | :| PC | Shrek 2 |
|
||||
| PC | MO: Astray | :| PC | A Hat in Time | :| NDS | SimCity Builder |
|
||||
| PC | Against The Storm | :| 3DS | Dragon Quest VIII | :| NDS | Nintendogs: Labrador and Friends |
|
||||
| PC | Urbek City Builder | :| PC | Wizard of Legend | :| PC | Yeti Sports |
|
||||
| PC | Hyper Light Breaker | :| PC | Disco Elysium (Director's Cut) | :| PC | Asterix & Obelix XXL |
|
||||
| PC | Crypt of the Necrodancer | :| PC | Cuphead | :| GBA | Mario & Luigi: Superstar Saga |
|
||||
| PC | Just Shapes & Beats | :| PC | Stanley Parable: Ultra Deluxe | :| NDS | Mario & Luigi: Bowser's Story |
|
||||
| PC | Minit | :| PC | Danganronpa: Trigger Happy Havoc | :| NDS | Bomberman Story DS |
|
||||
| PC | A Short Hike | :| PC | Yuppie Psycho | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky |
|
||||
| PC | Dysmantle | :| PC | Children of Morta | :| NDS | Pokemon Pearl |
|
||||
| PC | Omori | :| PS4 | Kingdom Hearts 3 | :| PSP | Crisis Core: Final Fantasy VII |
|
||||
| PC | Sea of Stars | :| PC | Hyper Light Drifter | :| PSP | Cars |
|
||||
| PC | The Last Faith | :| PC | Titanfall 2 | :| NDS | Pokemon Platinum |
|
||||
| PC | Arctic Awakening | :| PC | Beyond Good and Evil | :| GBA | Sonic Battle |
|
||||
| PC | Stray | :| PC | Rayman Origins | :| NDS | Hotel Dusk: Room 215 |
|
||||
| PC | The Lords of the Fallen | :| PC | Asterix & Obelix XXL: Romastered | :| PC | Curse of Monkey Island |
|
||||
| PC | Hunt the Night | :| PC | Dishonored | :| PC | Edna & Harvey: The Breakout |
|
||||
| PC | Solar Ash | :| PC | LIMBO | :| PC | Spy Fox in: Dry Cereal |
|
||||
| PC | Nightingale | :| PC | V Rising | :| PC | Spy Fox in: Some Assembly Required |
|
||||
| PC | Nara: Facing Fire | :| PC | Citizen Sleeper | :| PC | Spy Fox in: Operation Ozone |
|
||||
| PC | Death's Gambit: Afterlife | :|______|______________________________________________| :| NDS | Kingdom Hearts 358/2 Days |
|
||||
| PC | SEASON: A letter to the future | :| ____________________________ | :| NDS | Mario Hoops 3-on-3 |
|
||||
| PC | Unbound: Worlds Apart | :|___________// \\__________| :| PC | N++ |
|
||||
| PC | The Outbound Ghost | :|___________| Haunts my Dreams |__________| :| NDS | Naruto: Ninja Council 3 |
|
||||
| PC | Cassette Beasts | :| \\____________________________// [S005] | :| PSP | Sid Meier's Pirates |
|
||||
| PC | DREDGE | :| | :| NDS | Pokemon Soul Silver |
|
||||
| PC | Sackboy: A Big Adventure | :|______ ______________________________________________| :| NDS | Pokemon Ranger |
|
||||
| PC | Buck Up and Drive! | :|======|==============================================| :| NDS | Professor Layton and the Curious Village |
|
||||
| PC | Mandragora | :| NDS | The World Ends With You | :| NDS | Professor Layton and the Diabolical Box |
|
||||
| PC | Return to Monkey Island | :| PC | Return of the Obra Dinn | :| PC | Tachyon: The Fringe |
|
||||
| PC | Escape: The Endless Dogwatch | :| PC | Voice of Cards: The Forsaken Maiden | :| NDS | The Simpsons |
|
||||
| PC | Aero GPX | :| PC | Distance | :| NDS | Spectrobes |
|
||||
| PC | Final Fantasy XVI | :| PC | Forager | :| PC | Trackmania Original |
|
||||
| PC | Replaced | :| PC | The Secret of Monkey Island | :| GBA | Wario Ware |
|
||||
| PC | Earthblade | :| PC | Monkey Island 2 | :| NDS | Yu-Gi-Oh!: World Championship 2008 |
|
||||
| PC | GeneRally 2 | :| GBA | Fire Emblem | :| PC | Rollercoaster Tycoon 2 |
|
||||
| PC | Shadows Over Loathing | :| PC | Deus Ex: Game of the Year | :| PC | Crashday |
|
||||
| PC | Terra Nil | :| PS2 | Metal Gear Solid 2: Sons of Liberty | :|______|______________________________________________|
|
||||
| PC | Crystal Project | :| PC | Bravery Network Online | :| ____________________
|
||||
| PC | The Pathless | :| NES | Ninja Gaiden | :|_______________// \\_______________
|
||||
| PC | Depersonalization | :| PS3 | Metal Gear Solid 3: Snake Eater | :|_______________| First PC |_______________
|
||||
| PC | Hyper Light Breaker | :| PS2 | Devil May Cry 3 | :| \\____________________// [P002]
|
||||
| PC | Grim Guardians: Demon Purge | :| PC | It Takes Two | :|
|
||||
| PC | OPUS: Prism Peak | :| PC | Potion Craft | :|______ ______________________________________________
|
||||
| PC | Rusted Moss | :| PC | Grim Fandango Remastered | :|======|==============================================|
|
||||
| PC | SIGNALIS | :| PC | Hypnospace Outlaw | :| PC | Terraria |
|
||||
| PC | Drill Man Rumble | :| PC | FEZ | :| PC | Minecraft |
|
||||
| PC | Radio the Universe | :| PC | Tales of Arise | :| PS3 | Little Big Planet |
|
||||
| PC | Pentiment | :| PC | One Step from Eden | :| PS3 | F1 2015 |
|
||||
| PC | Knight's Try | :| PC | Death and Taxes | :| PC | Portal |
|
||||
| PC | Have a Nice Death | :| PC | Quantum Protocol | :| PC | Far Cry 3 |
|
||||
| PC | Storyteller | :| PC | Metal Gear Solid V: The Phantom Pain | :| PC | Call of Duty: Modern Warfare 2 |
|
||||
| PC | Mark of the Ninja | :| PC | Metal Gear Solid IV: Guns of the Patriots | :| PSP | Kingdom Hearts: Birth by Sleep |
|
||||
|______|______________________________________________| :| PC | Lovely Planet | :| PSP | Wipeout Pulse |
|
||||
| :| PC | Darkest Dungeon | :| PC | Worms 3D |
|
||||
| :| PC | Kindred Spirits on the Roof | :| PC | League of Legends |
|
||||
| :| PC | Owlboy | :| PC | Airmech |
|
||||
| :| PC | Ys IX | :| PC | Trackmania United Forever |
|
||||
| :| PC | Faster Than Light | :| PC | Party Hard |
|
||||
| :| PC | Final Fantasy Type-0 | :| PC | Hotline Miami |
|
||||
| :| PC | Final Fantasy IX | :| PC | Papers, Please |
|
||||
| :| PC | Final Fantasy X | :| SNES | Super Metroid |
|
||||
| :| PC | Final Fantasy XII | :| SNES | Super Mario RPG |
|
||||
| :| PS3 | Final Fantasy XIII | :|______|______________________________________________|
|
||||
| :| PC | Lightning Returns: Final Fantasy XIII | :| _________________________________
|
||||
| :| PC | Bastion | :|_________// \\________
|
||||
| :| PC | Crashlands | :|_________| The Multiplayer Phase |________
|
||||
| :| NX | Xenoblade Chronicles | :| \\_________________________________// [P003]
|
||||
| :| PC | Octopath Traveler | :|
|
||||
| :| 3DS | Bravely Default | :|______ ______________________________________________
|
||||
| :| PC | Neon White | :|======|==============================================|
|
||||
| :| PC | Dungreed | :| PC | Rocket League |
|
||||
| :| PC | Everspace | :| PC | Castle Crashers |
|
||||
| :| PC | CrossCode | :| PC | FEAR 3 |
|
||||
| :| PC | Nioh: Complete Edition | :| PC | McPixel |
|
||||
| :|______|______________________________________________| :| PC | 12 Is Better Than 6 |
|
||||
| :| | :| PC | Stardew Valley |
|
||||
| :| | :| PC | Worms Ultimate Mayhem |
|
||||
| :| | :| PC | Counter-Strike: Global Offensive |
|
||||
| :| | :| PC | The Beginner's Guide |
|
||||
| :| | :| PC | Stanley's Parable |
|
||||
- Unreleased [W001] | :| - Currently Playing [S001] | :| - Early Days [P001]
|
||||
- High Priority [W002] | :| - On Hold [S002] | :| - First PC [P002]
|
||||
- Not Yet Owned [W003] | :| - Soon(TM) 2024 [S003] | :| - The Multiplayer Phase [P003]
|
||||
| :| - Unknown Future [S004] | :| - 2020 [P004]
|
||||
______________________ | :| - Dropped for now (Haunts my dreams) [S005] | :| - 2021 [P005]
|
||||
______________// \\______________| :| | :| - 2022 [P006]
|
||||
______________| Unreleased |______________| :| _____________________________ | :| - 2023 [P007]
|
||||
\\______________________// [W001] | :|__________// \\__________| :| - 2024 [P008]
|
||||
| :|__________| Currently Playing |__________| :|
|
||||
______ ______________________________________________| :| \\_____________________________// [S001] | :| ______________________
|
||||
|======|==============================================| :| | :|______________// \\______________
|
||||
| PC | Hollow Knight: Silksong | :|______ ______________________________________________| :|______________| Early Days |______________
|
||||
| PC | Starfetchers - Episode 1 | :|======|==============================================| :| \\______________________// [P001]
|
||||
| PC | OPUS: Prism Peak | :| TTS | Kingdom Death: Monster | :|
|
||||
| PC | Crowsworn | :| PC | Monster Hunter: World (Postgame) | :|______ ______________________________________________
|
||||
| PC | Replaced | :|______|______________________________________________| :|======|==============================================|
|
||||
| PC | Earthblade | :| ___________________ | :| GBC | Pokemon Silver |
|
||||
| PC | Radio the Universe | :|_______________// \\_______________| :| GBC | Jungle Book: Mowgli's Adventure |
|
||||
| PC | Pepper Grinder | :|_______________| On Hold |_______________| :| GBA | Pokemon Sapphire |
|
||||
| PC | V.A Proxy | :| \\___________________// [S002] | :| GBC | Pokemon Trading Card Game |
|
||||
|______|______________________________________________| :| | :| GBC | Pokemon Crystal |
|
||||
_________________________ | :|______ ______________________________________________| :| PC | Colin McRae Rally 2.0 |
|
||||
_____________// \\____________| :|======|==============================================| :| PC | Anno 1602 |
|
||||
_____________| High Priority |____________| :| PC | Dark Souls 3 (Co-Op) | :| GBA | Pokemon Emerald |
|
||||
\\_________________________// [W002] | :|______|______________________________________________| :| PC | Need for Speed: Underground |
|
||||
| :| _________________________ | :| PC | Need for Speed: Underground 2 |
|
||||
______ ______________________________________________| :|____________// \\____________| :| PC | Robin Hood: Legend of Sherwood |
|
||||
|======|==============================================| :|____________| Soon(TM) 2024 |____________| :| PC | Driver |
|
||||
| PC | Final Fantasy XVI | :| \\_________________________// [S003] | :| PSP | Metal Gear Solid: Peacewalker |
|
||||
| PC | Children of the Sun | :| | :| PSX | Metal Gear Solid |
|
||||
| PC | Octopath Traveler II | :|______ ______________________________________________| :| PC | F1 '02 |
|
||||
| PC | SIGNALIS | :|======|==============================================| :| GBA | Kim Possible: Revenge of the Monkey Fist |
|
||||
|______|______________________________________________| :| PC | Pseudoregalia | :| PS2 | Dragon Quest VIII |
|
||||
_________________________ | :| PC | Final Fantasy XII | :| NDS | Final Fantasy III |
|
||||
_____________// \\____________| :| PC | Voice of Cards: The Forsaken Maiden | :| GBA | Final Fantasy I & II: Dawn of Souls |
|
||||
_____________| Not Yet Owned |____________| :|______|______________________________________________| :| NDS | Final Fantasy IV |
|
||||
\\_________________________// [W003] | :| __________________________ | :| GBA | Final Fantasy V Advance |
|
||||
| :|____________// \\___________| :| GBA | Final Fantasy VI Advance |
|
||||
______ ______________________________________________| :|____________| Unknown Future |___________| :| PSP | Lego Star Wars |
|
||||
|======|==============================================| :| \\__________________________// [S004] | :| PSP | Lego Star Wars II |
|
||||
| PS1 | Parasite Eve | :| | :| PSP | Monster Hunter Freedom Unite |
|
||||
| PC | Tunic | :|______ ______________________________________________| :| PSP | Dissidia: Final Fantasy |
|
||||
| PC | Nine Sols | :|======|==============================================| :| PSP | duodecim Dissidia: Final Fantasy |
|
||||
| PC | Psychonauts | :| PC | Star of Providence | :| PS2 | Kingdom Hearts 2 |
|
||||
| PC | Psychonauts 2 | :| PC | Bloodstained: Curse of the Moon 2 | :| GBA | Kingdom Hearts: Chain of Memories |
|
||||
| PC | Astalon: Tears of the Earth | :| PC | Spiritfarer: Farewell Edition | :| PS2 | Kingdom Hearts |
|
||||
| PC | Death Trash | :| PC | Metal Gear Solid IV: Guns of the Patriots | :| PSP | Ratchet and Clank: Size Matters |
|
||||
| PC | Hellblade: Senua's Sacrifice | :| PC | Metal Gear Solid V: The Phantom Pain | :| PSP | Exit |
|
||||
| PC | Ooblets | :| PC | A Hat in Time | :| PC | Need for Speed: Most Wanted (2005) |
|
||||
| PC | Journey | :| PC | Transistor | :| GBA | The Legend of Zelda: Minish Cap |
|
||||
| PC | Baba Is You | :| PC | Paranormasight: The Seven Mysteries of Honjo | :| PC | Moorhuhn 3: ...Es Gibt Huhn! |
|
||||
| PC | Ni no Kuni: Wrath of the White Witch | :| PC | Heaven Will Be Mine | :| GBA | Pokemon Pinball: Ruby & Sapphire |
|
||||
| PC | Ikenfell | :| PC | Antichamber | :| NDS | Mario Kart DS |
|
||||
| PC | Moonscars | :| PS4 | Kingdom Hearts 3 | :| GBA | Pokemon Leaf Green |
|
||||
| PC | Carrion | :| PC | Gloomwood | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
|
||||
| PC | Signs of the Sojourner | :| PC | Titanfall 2 | :| PC | Shrek 2 |
|
||||
| PC | A Space for the Unbound | :| PC | Beyond Good and Evil | :| NDS | SimCity Builder |
|
||||
| PC | Against The Storm | :| PC | Rayman Origins | :| NDS | Nintendogs: Labrador and Friends |
|
||||
| PC | Hyper Light Breaker | :| PC | Voice of Cards: The Beasts of Burden | :| PC | Yeti Sports |
|
||||
| PC | Just Shapes & Beats | :| PC | Cosmic Star Heroine | :| PC | Asterix & Obelix XXL |
|
||||
| PC | A Short Hike | :| PC | Jusant | :| GBA | Mario & Luigi: Superstar Saga |
|
||||
| PC | Omori | :| PC | Another World | :| NDS | Mario & Luigi: Bowser's Story |
|
||||
| PC | Arctic Awakening | :| PC | Dusk | :| NDS | Bomberman Story DS |
|
||||
| PC | Solar Ash | :| PC | Brothers - A Tale of Two Sons | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky |
|
||||
| PC | Death's Gambit: Afterlife | :| PC | Knight's Try | :| NDS | Pokemon Pearl |
|
||||
| PC | The Outbound Ghost | :| PC | Citizen Sleeper | :| PSP | Crisis Core: Final Fantasy VII |
|
||||
| PC | Sackboy: A Big Adventure | :| PC | Darkest Dungeon | :| PSP | Cars |
|
||||
| PC | Buck Up and Drive! | :| PC | Final Fantasy Type-0 | :| NDS | Pokemon Platinum |
|
||||
| PC | Mandragora | :| PC | Final Fantasy IX | :| GBA | Sonic Battle |
|
||||
| PC | Return to Monkey Island | :| PS3 | Final Fantasy XIII | :| NDS | Hotel Dusk: Room 215 |
|
||||
| PC | Aero GPX | :| PC | Lightning Returns: Final Fantasy XIII | :| PC | Curse of Monkey Island |
|
||||
| PC | Crystal Project | :| PC | Bastion | :| PC | Edna & Harvey: The Breakout |
|
||||
| PC | Depersonalization | :| NX | Xenoblade Chronicles | :| PC | Spy Fox in: Dry Cereal |
|
||||
| PC | Grim Guardians: Demon Purge | :| PC | Bayonetta | :| PC | Spy Fox in: Some Assembly Required |
|
||||
| PC | Rusted Moss | :| PC | The Witcher 3: Wild Hunt | :| PC | Spy Fox in: Operation Ozone |
|
||||
| PC | Drill Man Rumble | :| PC | MO: Astray | :| NDS | Kingdom Hearts 358/2 Days |
|
||||
| PC | Pentiment | :| PC | We Are Doomed | :| NDS | Mario Hoops 3-on-3 |
|
||||
| PC | Have a Nice Death | :| PC | Super Crush KO | :| PC | N++ |
|
||||
| PC | Mark of the Ninja | :| PC | LISA | :| NDS | Naruto: Ninja Council 3 |
|
||||
| PC | Thronefall | :| PC | Scarlet Hollow | :| PSP | Sid Meier's Pirates |
|
||||
| PC | Pizza Tower | :| PC | Yuppie Psycho | :| NDS | Pokemon Soul Silver |
|
||||
| PC | Blasphemous 2 | :| PC | Dungeon Munchies | :| NDS | Pokemon Ranger |
|
||||
| PC | Armored Core VI: Fires of Rubicon | :|______|______________________________________________| :| NDS | Professor Layton and the Curious Village |
|
||||
| PC | Tower of Sword and Succubus | :| ___________________________________ | :| NDS | Professor Layton and the Diabolical Box |
|
||||
| PC | Cultic | :|_______// \\_______| :| PC | Tachyon: The Fringe |
|
||||
| PC | Fall of Porcupine | :| | Dropped for now (Haunts | | :| NDS | The Simpsons |
|
||||
| PC | Elypse | :|_______| my dreams) |_______| :| NDS | Spectrobes |
|
||||
| PC | Wytchwood | :| \\___________________________________//[S005] | :| PC | Trackmania Original |
|
||||
| PC | The Case of the Golden Idol | :| | :| GBA | Wario Ware |
|
||||
| PC | Oaken | :|______ ______________________________________________| :| NDS | Yu-Gi-Oh!: World Championship 2008 |
|
||||
| PC | ULTRAKILL | :|======|==============================================| :| PC | Rollercoaster Tycoon 2 |
|
||||
| PC | Gal Guardians: Demon Purge | :| PC | Final Fantasy XIV | :| PC | Crashday |
|
||||
| PC | Hi-Fi Rush | :| PC | Alien: Isolation | :|______|______________________________________________|
|
||||
| PC | Rain World | :| PS4 | Kingdom Hearts: Dream Drops Distance HD | :| ____________________
|
||||
| PC | Skate Story | :| PC | Outer Wilds | :|_______________// \\_______________
|
||||
| PC | Crashlands 2 | :| PC | V Rising | :|_______________| First PC |_______________
|
||||
| PC | Gunbrella | :| PS4 | Gravity Rush: Remastered | :| \\____________________// [P002]
|
||||
| PC | The Plucky Squire | :| PC | Hades | :|
|
||||
| PC | Mika and The Witch's Mountain | :| NDS | The World Ends With You | :|______ ______________________________________________
|
||||
| PC | Pixelshire | :| PC | Forager | :|======|==============================================|
|
||||
| PC | Ghostrunner | :| PC | The Secret of Monkey Island | :| PC | Terraria |
|
||||
| PC | Boomerang X | :| PC | Monkey Island 2 | :| PC | Minecraft |
|
||||
| PC | Enchain | :| PC | Bravery Network Online | :| PS3 | Little Big Planet |
|
||||
| PC | Doom Eternal | :| PS2 | Devil May Cry 3 | :| PS3 | F1 2015 |
|
||||
| PC | Raw Metal | :| PC | Grim Fandango Remastered | :| PC | Portal |
|
||||
| PC | Death of a Wish | :| PC | Hypnospace Outlaw | :| PC | Far Cry 3 |
|
||||
| PC | Nowhere Patrol | :| PC | One Step from Eden | :| PC | Call of Duty: Modern Warfare 2 |
|
||||
| PC | PokeyPoke | :| PC | Death and Taxes | :| PSP | Kingdom Hearts: Birth by Sleep |
|
||||
| PC | Post Void | :| PC | Quantum Protocol | :| PSP | Wipeout Pulse |
|
||||
| PC | Guilty Gear -Strive- | :| PC | Lovely Planet | :| PC | Worms 3D |
|
||||
| PC | Worship | :| PC | Octopath Traveler | :| PC | League of Legends |
|
||||
| PC | Paper Trail | :| PC | Neon White | :| PC | Airmech |
|
||||
| PC | Reigns: Three Kingdoms | :| PC | Everspace | :| PC | Trackmania United Forever |
|
||||
| PC | Monster Hunter Wilds | :| PC | CrossCode | :| PC | Party Hard |
|
||||
| PC | Makoto Wakaido's Case Files Trilogy | :| PC | Axiom Verge | :| PC | Hotline Miami |
|
||||
| PC | Ghost Trick: Phantom Detective | :| PC | WORLD OF HORROR | :| PC | Papers, Please |
|
||||
| PC | Plants vs. Zombies | :| PC | art of rally | :| SNES | Super Metroid |
|
||||
| PC | Astlibra Revision | :|______|______________________________________________| :| SNES | Super Mario RPG |
|
||||
| PC | A Little to the Left | :| | :|______|______________________________________________|
|
||||
| PC | Chants of Sennaar | :| | :| _________________________________
|
||||
| PC | SANABI | :| | :|_________// \\________
|
||||
| PC | Cocoon | :| | :|_________| The Multiplayer Phase |________
|
||||
| PC | PEPPERED | :| | :| \\_________________________________// [P003]
|
||||
| PC | Laika: Aged Through Blood | :| | :|
|
||||
| PC | Duelists of Eden | :| | :|______ ______________________________________________
|
||||
| PC | Deathsmiles | :| | :|======|==============================================|
|
||||
| PC | Galaxy Pass Station | :| | :| PC | Rocket League |
|
||||
| PC | Worship | :| | :| PC | Castle Crashers |
|
||||
| PC | Gravity Circuit | :| | :| PC | FEAR 3 |
|
||||
| PC | Aviary Attorney | :| | :| PC | McPixel |
|
||||
| PC | Slipstream | :| | :| PC | 12 Is Better Than 6 |
|
||||
| PC | Rhythm Doctor | :| | :| PC | Stardew Valley |
|
||||
| PC | Saviorless | :| | :| PC | Worms Ultimate Mayhem |
|
||||
| PC | Phonopolis | :| | :| PC | Counter-Strike: Global Offensive |
|
||||
| PC | Lorelei and the Laser Eyes | :| | :| PC | The Beginner's Guide |
|
||||
|______|______________________________________________| :| | :| PC | Stanley's Parable |
|
||||
| :| | :| PC | What Remains of Edith Finch |
|
||||
| :| | :| PC | Ori and the Blind Forest |
|
||||
| :| | :| PC | Realm of the Mad God |
|
||||
|
@ -177,6 +178,7 @@ _____________| Not Yet Owned |____________| :| - Haunts my Dreams
|
|||
| :| | :| PC | NieR: Replicant ver.1.22474487139... |
|
||||
| :| | :| PC | Portal Reloaded |
|
||||
| :| | :| GBA | Pokemon Gaia v3.2 |
|
||||
| :| | :| PC | UNBEATABLE [white label] |
|
||||
| :| | :| PC | Titan Souls |
|
||||
| :| | :| PC | Midnight Castle Succubus |
|
||||
| :| | :| PC | Valheim |
|
||||
|
@ -249,4 +251,61 @@ _____________| Not Yet Owned |____________| :| - Haunts my Dreams
|
|||
| :| | :| PC | SNKRX |
|
||||
| :| | :| PC | Death's Door |
|
||||
| :| | :| PC | Wandersong |
|
||||
| :| | :| PC | Kingdom Two Crowns |
|
||||
| :| | :| PS4 | Theatrythm Final Fantasy: Final Bar Line |
|
||||
| :| | :| PC | Beacon Pines |
|
||||
| :| | :| PC | Tiny Tina's Assault on Dragon Keep: A |
|
||||
| :| | :| | Wonderlands One-shot Adventure |
|
||||
| :| | :| PC | Hyper Light Drifter |
|
||||
| :| | :| PC | Dungeon Village |
|
||||
| :| | :| PC | Escape: The Endless Dogwatch |
|
||||
| :| | :| PC | Gnosia |
|
||||
| :| | :| PC | Pokemon - Legends of Sinnoh: Sinnoh League |
|
||||
| :| | :| | Campaign |
|
||||
| :| | :| PC | Ori and the Will of the Wisps |
|
||||
| :| | :| PS4 | Bloodborne (again) |
|
||||
| :| | :| PC | Card Shark |
|
||||
| :| | :| PC | Bread and Fred |
|
||||
| :| | :| PC | Final Fantasy VIII |
|
||||
| :| | :| PC | It Takes Two |
|
||||
| :| | :| PC | Vacant Kingdom |
|
||||
| :| | :| PC | Dark Souls 2 |
|
||||
| :| | :| PC | Core Keeper |
|
||||
| :| | :| PC | Sea of Stars |
|
||||
| :| | :| PC | Sekiro (All Gauntlets) |
|
||||
| :| | :| PC | Return of the Obra Dinn |
|
||||
| :| | :| PC | Trine 2 |
|
||||
| :| | :| PC | A Way Out |
|
||||
| :| | :| PC | DOOM |
|
||||
| :| | :| PC | Before your Eyes |
|
||||
| :| | :| PC | Katana Zero |
|
||||
| :| | :| PC | The Pathless |
|
||||
| :| | :| PC | Sifu |
|
||||
| :| | :| PC | Disco Elysium (Director's Cut) |
|
||||
| :| | :| PC | Stanley Parable: Ultra Deluxe |
|
||||
| :| | :|______|______________________________________________|
|
||||
| :| | :| ________________
|
||||
| :| | :|_________________// \\_________________
|
||||
| :| | :|_________________| 2024 |_________________
|
||||
| :| | :| \\________________// [P008]
|
||||
| :| | :|
|
||||
| :| | :|______ ______________________________________________
|
||||
| :| | :|======|==============================================|
|
||||
| :| | :| PC | Final Fantasy X |
|
||||
| :| | :| PC | Cave Story+ |
|
||||
| :| | :| PC | Lucah: Born of a Dream |
|
||||
| :| | :| PC | Bokura |
|
||||
| :| | :| PC | Dark Souls: Remastered |
|
||||
| :| | :| PC | Aragami |
|
||||
| :| | :| PC | Halls of Torment |
|
||||
| :| | :| GBA | Pokemon: Modern Emerald |
|
||||
| :| | :| PC | New Star GP |
|
||||
| :| | :| PC | En Garde! |
|
||||
| :| | :| PC | Everhood |
|
||||
| :| | :| PS2 | Metal Gear Solid 2: Sons of Liberty |
|
||||
| :| | :| PC | Don't Escape: 4 Days to Survive |
|
||||
| :| | :| PC | Elden Ring: Shadows of the Erdtree |
|
||||
| :| | :| PC | PlateUp! |
|
||||
| :| | :| PC | Cuphead |
|
||||
| :| | :| PC | Metal Gear Solid 3: Snake Eater |
|
||||
| :| | :|______|______________________________________________|
|
||||
|
|
|
@ -1,32 +1,41 @@
|
|||
---
|
||||
title: "Wishlist"
|
||||
prefix: "W"
|
||||
sections:
|
||||
- title: "Not Yet Owned"
|
||||
- title: "Unreleased"
|
||||
games:
|
||||
- name: "Hollow Knight: Silksong"
|
||||
platform: "PC"
|
||||
- name: "Starfetchers - Episode 1"
|
||||
platform: "PC"
|
||||
- name: "Ghost Song"
|
||||
- name: "OPUS: Prism Peak"
|
||||
platform: "PC"
|
||||
- name: "Gloomwood"
|
||||
- name: "Crowsworn"
|
||||
platform: "PC"
|
||||
- name: "Slay the Spire"
|
||||
- name: "Replaced"
|
||||
platform: "PC"
|
||||
- name: "Switchcars"
|
||||
- name: "Earthblade"
|
||||
platform: "PC"
|
||||
- name: "Into the Breach"
|
||||
- name: "Radio the Universe"
|
||||
platform: "PC"
|
||||
- name: "Pepper Grinder"
|
||||
platform: "PC"
|
||||
- name: "V.A Proxy"
|
||||
platform: "PC"
|
||||
- title: "High Priority"
|
||||
games:
|
||||
- name: "Final Fantasy XVI"
|
||||
platform: "PC"
|
||||
- name: "Children of the Sun"
|
||||
platform: "PC"
|
||||
- name: "Octopath Traveler II"
|
||||
platform: "PC"
|
||||
- name: "SIGNALIS"
|
||||
platform: "PC"
|
||||
- title: "Not Yet Owned"
|
||||
games:
|
||||
- name: "Parasite Eve"
|
||||
platform: PS1
|
||||
- name: "Sifu"
|
||||
platform: "PC"
|
||||
- name: "Dark Souls 2"
|
||||
platform: PS4
|
||||
- name: "Dark Souls 3"
|
||||
platform: PS4
|
||||
- name: "Griftlands"
|
||||
platform: "PC"
|
||||
platform: "PS1"
|
||||
- name: "Tunic"
|
||||
platform: "PC"
|
||||
- name: "Nine Sols"
|
||||
|
@ -35,36 +44,14 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Psychonauts 2"
|
||||
platform: "PC"
|
||||
- name: "Cave Story+"
|
||||
platform: "PC"
|
||||
- name: "God Hand"
|
||||
platform: PS2
|
||||
- name: "Shovel Knight"
|
||||
platform: "PC"
|
||||
- name: "Assassin's Creed"
|
||||
platform: PS3
|
||||
- name: "Astalon: Tears of the Earth"
|
||||
platform: "PC"
|
||||
- name: "Bloodstained: Ritual of the Night"
|
||||
platform: "PC"
|
||||
- name: "Death Trash"
|
||||
platform: "PC"
|
||||
- name: "Trails Rising"
|
||||
platform: "PC"
|
||||
- name: "Hellblade: Senua's Sacrifice"
|
||||
platform: "PC"
|
||||
- name: "Factorio"
|
||||
platform: "PC"
|
||||
- name: "VA-11 Hall-A: Cyberpunk Bartender Action"
|
||||
platform: "PC"
|
||||
- name: "Katana Zero"
|
||||
platform: "PC"
|
||||
- name: "art of rally"
|
||||
platform: "PC"
|
||||
- name: "Ooblets"
|
||||
platform: "PC"
|
||||
- name: "Don't Escape: 4 Days to Survive"
|
||||
platform: "PC"
|
||||
- name: "Journey"
|
||||
platform: "PC"
|
||||
- name: "Baba Is You"
|
||||
|
@ -73,78 +60,32 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Ikenfell"
|
||||
platform: "PC"
|
||||
- name: "Chicory: A Colorful Tale"
|
||||
platform: "PC"
|
||||
- name: "Moonscars"
|
||||
platform: "PC"
|
||||
- name: "Control: Ultimate Edition"
|
||||
platform: "PC"
|
||||
- name: "Carrion"
|
||||
platform: "PC"
|
||||
- name: "Haven"
|
||||
platform: "PC"
|
||||
- name: "Persona 4 Golden"
|
||||
platform: "PC"
|
||||
- name: "Signs of the Sojourner"
|
||||
platform: "PC"
|
||||
- name: "A Space for the Unbound"
|
||||
platform: "PC"
|
||||
- name: "Card Shark"
|
||||
platform: "PC"
|
||||
- name: "Strange Horticulture"
|
||||
platform: "PC"
|
||||
- name: "Crowsworn"
|
||||
platform: "PC"
|
||||
- name: "MO: Astray"
|
||||
platform: "PC"
|
||||
- name: "Against The Storm"
|
||||
platform: "PC"
|
||||
- name: "Urbek City Builder"
|
||||
platform: "PC"
|
||||
- name: "Hyper Light Breaker"
|
||||
platform: "PC"
|
||||
- name: "Crypt of the Necrodancer"
|
||||
platform: "PC"
|
||||
- name: "Just Shapes & Beats"
|
||||
platform: "PC"
|
||||
- name: "Minit"
|
||||
platform: "PC"
|
||||
- name: "A Short Hike"
|
||||
platform: "PC"
|
||||
- name: "Dysmantle"
|
||||
platform: "PC"
|
||||
- name: "Omori"
|
||||
platform: "PC"
|
||||
- name: "Sea of Stars"
|
||||
platform: "PC"
|
||||
- name: "The Last Faith"
|
||||
platform: "PC"
|
||||
- name: "Arctic Awakening"
|
||||
platform: "PC"
|
||||
- name: "Stray"
|
||||
platform: "PC"
|
||||
- name: "The Lords of the Fallen"
|
||||
platform: "PC"
|
||||
- name: "Hunt the Night"
|
||||
platform: "PC"
|
||||
- name: "Solar Ash"
|
||||
platform: "PC"
|
||||
- name: "Nightingale"
|
||||
platform: "PC"
|
||||
- name: "Nara: Facing Fire"
|
||||
platform: "PC"
|
||||
- name: "Death's Gambit: Afterlife"
|
||||
platform: "PC"
|
||||
- name: "SEASON: A letter to the future"
|
||||
platform: "PC"
|
||||
- name: "Unbound: Worlds Apart"
|
||||
platform: "PC"
|
||||
- name: "The Outbound Ghost"
|
||||
platform: "PC"
|
||||
- name: "Cassette Beasts"
|
||||
platform: "PC"
|
||||
- name: "DREDGE"
|
||||
platform: "PC"
|
||||
- name: "Sackboy: A Big Adventure"
|
||||
platform: "PC"
|
||||
- name: "Buck Up and Drive!"
|
||||
|
@ -153,51 +94,133 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Return to Monkey Island"
|
||||
platform: "PC"
|
||||
- name: "Escape: The Endless Dogwatch"
|
||||
platform: "PC"
|
||||
- name: "Aero GPX"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy XVI"
|
||||
platform: "PC"
|
||||
- name: "Replaced"
|
||||
platform: "PC"
|
||||
- name: "Earthblade"
|
||||
platform: "PC"
|
||||
- name: "GeneRally 2"
|
||||
platform: "PC"
|
||||
- name: "Shadows Over Loathing"
|
||||
platform: "PC"
|
||||
- name: "Terra Nil"
|
||||
platform: "PC"
|
||||
- name: "Crystal Project"
|
||||
platform: "PC"
|
||||
- name: "The Pathless"
|
||||
platform: "PC"
|
||||
- name: "Depersonalization"
|
||||
platform: "PC"
|
||||
- name: "Hyper Light Breaker"
|
||||
platform: "PC"
|
||||
- name: "Grim Guardians: Demon Purge"
|
||||
platform: "PC"
|
||||
- name: "OPUS: Prism Peak"
|
||||
platform: "PC"
|
||||
- name: "Rusted Moss"
|
||||
platform: "PC"
|
||||
- name: "SIGNALIS"
|
||||
platform: "PC"
|
||||
- name: "Drill Man Rumble"
|
||||
platform: "PC"
|
||||
- name: "Radio the Universe"
|
||||
platform: "PC"
|
||||
- name: "Pentiment"
|
||||
platform: "PC"
|
||||
- name: "Knight's Try"
|
||||
platform: "PC"
|
||||
- name: "Have a Nice Death"
|
||||
platform: "PC"
|
||||
- name: "Storyteller"
|
||||
platform: "PC"
|
||||
- name: "Mark of the Ninja"
|
||||
platform: "PC"
|
||||
|
||||
|
||||
- name: "Thronefall"
|
||||
platform: "PC"
|
||||
- name: "Pizza Tower"
|
||||
platform: "PC"
|
||||
- name: "Blasphemous 2"
|
||||
platform: "PC"
|
||||
- name: "Armored Core VI: Fires of Rubicon"
|
||||
platform: "PC"
|
||||
- name: "Tower of Sword and Succubus"
|
||||
platform: "PC"
|
||||
- name: "Cultic"
|
||||
platform: "PC"
|
||||
- name: "Fall of Porcupine"
|
||||
platform: "PC"
|
||||
- name: "Elypse"
|
||||
platform: "PC"
|
||||
- name: "Wytchwood"
|
||||
platform: "PC"
|
||||
- name: "The Case of the Golden Idol"
|
||||
platform: "PC"
|
||||
- name: "Oaken"
|
||||
platform: "PC"
|
||||
- name: "ULTRAKILL"
|
||||
platform: "PC"
|
||||
- name: "Gal Guardians: Demon Purge"
|
||||
platform: "PC"
|
||||
- name: "Hi-Fi Rush"
|
||||
platform: "PC"
|
||||
- name: "Rain World"
|
||||
platform: "PC"
|
||||
- name: "Skate Story"
|
||||
platform: "PC"
|
||||
- name: "Crashlands 2"
|
||||
platform: "PC"
|
||||
- name: "Gunbrella"
|
||||
platform: "PC"
|
||||
- name: "The Plucky Squire"
|
||||
platform: "PC"
|
||||
- name: "Mika and The Witch's Mountain"
|
||||
platform: "PC"
|
||||
- name: "Pixelshire"
|
||||
platform: "PC"
|
||||
- name: "Ghostrunner"
|
||||
platform: "PC"
|
||||
- name: "Boomerang X"
|
||||
platform: "PC"
|
||||
- name: "Enchain"
|
||||
platform: "PC"
|
||||
- name: "Doom Eternal"
|
||||
platform: "PC"
|
||||
- name: "Raw Metal"
|
||||
platform: "PC"
|
||||
- name: "Death of a Wish"
|
||||
platform: "PC"
|
||||
- name: "Nowhere Patrol"
|
||||
platform: "PC"
|
||||
- name: "PokeyPoke"
|
||||
platform: "PC"
|
||||
- name: "Post Void"
|
||||
platform: "PC"
|
||||
- name: "Guilty Gear -Strive-"
|
||||
platform: "PC"
|
||||
- name: "Worship"
|
||||
platform: "PC"
|
||||
- name: "Paper Trail"
|
||||
platform: "PC"
|
||||
- name: "Reigns: Three Kingdoms"
|
||||
platform: "PC"
|
||||
- name: "Monster Hunter Wilds"
|
||||
platform: "PC"
|
||||
- name: "Makoto Wakaido's Case Files Trilogy"
|
||||
platform: "PC"
|
||||
- name: "Ghost Trick: Phantom Detective"
|
||||
platform: "PC"
|
||||
- name: "Plants vs. Zombies"
|
||||
platform: "PC"
|
||||
- name: "Astlibra Revision"
|
||||
platform: "PC"
|
||||
- name: "A Little to the Left"
|
||||
platform: "PC"
|
||||
- name: "Chants of Sennaar"
|
||||
platform: "PC"
|
||||
- name: "SANABI"
|
||||
platform: "PC"
|
||||
- name: "Cocoon"
|
||||
platform: "PC"
|
||||
- name: "PEPPERED"
|
||||
platform: "PC"
|
||||
- name: "Laika: Aged Through Blood"
|
||||
platform: "PC"
|
||||
- name: "Duelists of Eden"
|
||||
platform: "PC"
|
||||
- name: "Deathsmiles"
|
||||
platform: "PC"
|
||||
- name: "Galaxy Pass Station"
|
||||
platform: "PC"
|
||||
- name: "Worship"
|
||||
platform: "PC"
|
||||
- name: "Gravity Circuit"
|
||||
platform: "PC"
|
||||
- name: "Aviary Attorney"
|
||||
platform: "PC"
|
||||
- name: "Slipstream"
|
||||
platform: "PC"
|
||||
- name: "Rhythm Doctor"
|
||||
platform: "PC"
|
||||
- name: "Saviorless"
|
||||
platform: "PC"
|
||||
- name: "Phonopolis"
|
||||
platform: "PC"
|
||||
- name: "Lorelei and the Laser Eyes"
|
||||
platform: "PC"
|
||||
|
|
|
@ -1,71 +1,50 @@
|
|||
---
|
||||
title: "List of Shame"
|
||||
prefix: "S"
|
||||
sections:
|
||||
- title: "Currently Playing"
|
||||
games:
|
||||
- name: "Persona 5 Royal"
|
||||
platform: "PS4"
|
||||
- name: "Kingdom Two Crowns"
|
||||
- name: "Kingdom Death: Monster"
|
||||
platform: "TTS"
|
||||
- name: "Monster Hunter: World (Postgame)"
|
||||
platform: "PC"
|
||||
- name: "Theatrythm Final Fantasy: Final Bar Line"
|
||||
platform: "PS4"
|
||||
- name: "Anno 1404 - History Edition - Co-Op"
|
||||
platform: "PC"
|
||||
- name: "Darksiders: Warmastered Edition"
|
||||
platform: "PC"
|
||||
- title: "Upcoming"
|
||||
- title: "On Hold"
|
||||
games:
|
||||
- name: "Kingdom Hearts: Dream Drops Distance HD"
|
||||
platform: "PS4"
|
||||
- name: "Gnosia"
|
||||
- name: "Dark Souls 3 (Co-Op)"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy VIII"
|
||||
platform: "PC"
|
||||
- name: "Beacon Pines"
|
||||
platform: "PC"
|
||||
- name: "Ori and the Will of the Wisps"
|
||||
platform: "PC"
|
||||
- name: "Dungeon Munchies"
|
||||
platform: "PC"
|
||||
- name: "Hades"
|
||||
platform: "PC"
|
||||
- title: "Soon(TM) 2023"
|
||||
- title: "Soon(TM) 2024"
|
||||
games:
|
||||
- name: "Outer Wilds"
|
||||
- name: "Pseudoregalia"
|
||||
platform: "PC"
|
||||
- name: "Gravity Rush: Remastered"
|
||||
platform: "PS4"
|
||||
- name: "LISA"
|
||||
- name: "Final Fantasy XII"
|
||||
platform: "PC"
|
||||
- name: "Voice of Cards: The Forsaken Maiden"
|
||||
platform: "PC"
|
||||
- name: "Castlevania: Symphony of the Night"
|
||||
platform: "PSX"
|
||||
- title: "Unknown Future"
|
||||
games:
|
||||
- name: "Dragon's Dogma: Dark Arisen"
|
||||
- name: "Star of Providence"
|
||||
platform: "PC"
|
||||
- name: "Bloodstained: Curse of the Moon 2"
|
||||
platform: "PC"
|
||||
- name: "Spiritfarer: Farewell Edition"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid IV: Guns of the Patriots"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid V: The Phantom Pain"
|
||||
platform: "PC"
|
||||
- name: "A Hat in Time"
|
||||
platform: "PC"
|
||||
- name: "Dragon Quest VIII"
|
||||
platform: "3DS"
|
||||
- name: "Wizard of Legend"
|
||||
- name: "Transistor"
|
||||
platform: "PC"
|
||||
- name: "Disco Elysium (Director's Cut)"
|
||||
- name: "Paranormasight: The Seven Mysteries of Honjo"
|
||||
platform: "PC"
|
||||
- name: "Cuphead"
|
||||
- name: "Heaven Will Be Mine"
|
||||
platform: "PC"
|
||||
- name: "Stanley Parable: Ultra Deluxe"
|
||||
platform: "PC"
|
||||
- name: "Danganronpa: Trigger Happy Havoc"
|
||||
platform: "PC"
|
||||
- name: "Yuppie Psycho"
|
||||
platform: "PC"
|
||||
- name: "Children of Morta"
|
||||
- name: "Antichamber"
|
||||
platform: "PC"
|
||||
- name: "Kingdom Hearts 3"
|
||||
platform: "PS4"
|
||||
- name: "Hyper Light Drifter"
|
||||
- name: "Gloomwood"
|
||||
platform: "PC"
|
||||
- name: "Titanfall 2"
|
||||
platform: "PC"
|
||||
|
@ -73,109 +52,105 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Rayman Origins"
|
||||
platform: "PC"
|
||||
- name: "Asterix & Obelix XXL: Romastered"
|
||||
- name: "Voice of Cards: The Beasts of Burden"
|
||||
platform: "PC"
|
||||
- name: "Dishonored"
|
||||
- name: "Cosmic Star Heroine"
|
||||
platform: "PC"
|
||||
- name: "LIMBO"
|
||||
- name: "Jusant"
|
||||
platform: "PC"
|
||||
- name: "V Rising"
|
||||
- name: "Another World"
|
||||
platform: "PC"
|
||||
- name: "Dusk"
|
||||
platform: "PC"
|
||||
- name: "Brothers - A Tale of Two Sons"
|
||||
platform: "PC"
|
||||
- name: "Knight's Try"
|
||||
platform: "PC"
|
||||
- name: "Citizen Sleeper"
|
||||
platform: "PC"
|
||||
- title: "Haunts my Dreams"
|
||||
- name: "Darkest Dungeon"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy Type-0"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy IX"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy XIII"
|
||||
platform: "PS3"
|
||||
- name: "Lightning Returns: Final Fantasy XIII"
|
||||
platform: "PC"
|
||||
- name: "Bastion"
|
||||
platform: "PC"
|
||||
- name: "Xenoblade Chronicles"
|
||||
platform: "NX"
|
||||
- name: "Bayonetta"
|
||||
platform: "PC"
|
||||
- name: "The Witcher 3: Wild Hunt"
|
||||
platform: "PC"
|
||||
- name: "MO: Astray"
|
||||
platform: "PC"
|
||||
- name: "We Are Doomed"
|
||||
platform: "PC"
|
||||
- name: "Super Crush KO"
|
||||
platform: "PC"
|
||||
- name: "LISA"
|
||||
platform: "PC"
|
||||
- name: "Scarlet Hollow"
|
||||
platform: "PC"
|
||||
- name: "Yuppie Psycho"
|
||||
platform: "PC"
|
||||
- name: "Dungeon Munchies"
|
||||
platform: "PC"
|
||||
- title: "Dropped for now (Haunts my dreams)"
|
||||
games:
|
||||
- name: "Final Fantasy XIV"
|
||||
platform: "PC"
|
||||
- name: "Alien: Isolation"
|
||||
platform: "PC"
|
||||
- name: "Kingdom Hearts: Dream Drops Distance HD"
|
||||
platform: "PS4"
|
||||
- name: "Outer Wilds"
|
||||
platform: "PC"
|
||||
- name: "V Rising"
|
||||
platform: "PC"
|
||||
- name: "Gravity Rush: Remastered"
|
||||
platform: "PS4"
|
||||
- name: "Hades"
|
||||
platform: "PC"
|
||||
- name: "The World Ends With You"
|
||||
platform: "NDS"
|
||||
- name: "Return of the Obra Dinn"
|
||||
platform: "PC"
|
||||
- name: "Voice of Cards: The Forsaken Maiden"
|
||||
platform: "PC"
|
||||
- name: "Distance"
|
||||
platform: "PC"
|
||||
- name: "Forager"
|
||||
platform: "PC"
|
||||
- name: "The Secret of Monkey Island"
|
||||
platform: "PC"
|
||||
- name: "Monkey Island 2"
|
||||
platform: "PC"
|
||||
- name: "Fire Emblem"
|
||||
platform: "GBA"
|
||||
- name: "Deus Ex: Game of the Year"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid 2: Sons of Liberty"
|
||||
platform: "PS2"
|
||||
- name: "Bravery Network Online"
|
||||
platform: "PC"
|
||||
- name: "Ninja Gaiden"
|
||||
platform: "NES"
|
||||
- name: "Metal Gear Solid 3: Snake Eater"
|
||||
platform: "PS3"
|
||||
- name: "Devil May Cry 3"
|
||||
platform: "PS2"
|
||||
- name: "It Takes Two"
|
||||
platform: "PC"
|
||||
- name: "Potion Craft"
|
||||
platform: "PC"
|
||||
- name: "Grim Fandango Remastered"
|
||||
platform: "PC"
|
||||
- name: "Hypnospace Outlaw"
|
||||
platform: "PC"
|
||||
- name: "FEZ"
|
||||
platform: "PC"
|
||||
- name: "Tales of Arise"
|
||||
platform: "PC"
|
||||
- name: "One Step from Eden"
|
||||
platform: "PC"
|
||||
- name: "Death and Taxes"
|
||||
platform: "PC"
|
||||
- name: "Quantum Protocol"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid V: The Phantom Pain"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid IV: Guns of the Patriots"
|
||||
platform: "PC"
|
||||
- name: "Lovely Planet"
|
||||
platform: "PC"
|
||||
- name: "Darkest Dungeon"
|
||||
platform: "PC"
|
||||
- name: "Kindred Spirits on the Roof"
|
||||
platform: "PC"
|
||||
- name: "Owlboy"
|
||||
platform: "PC"
|
||||
- name: "Ys IX"
|
||||
platform: "PC"
|
||||
- name: "Faster Than Light"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy Type-0"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy IX"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy X"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy XII"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy XIII"
|
||||
platform: PS3
|
||||
- name: "Lightning Returns: Final Fantasy XIII"
|
||||
platform: "PC"
|
||||
- name: "Bastion"
|
||||
platform: "PC"
|
||||
- name: "Crashlands"
|
||||
platform: "PC"
|
||||
- name: "Xenoblade Chronicles"
|
||||
platform: "NX"
|
||||
- name: "Octopath Traveler"
|
||||
platform: "PC"
|
||||
- name: "Bravely Default"
|
||||
platform: "3DS"
|
||||
- name: "Neon White"
|
||||
platform: "PC"
|
||||
- name: "Dungreed"
|
||||
platform: "PC"
|
||||
- name: "Everspace"
|
||||
platform: "PC"
|
||||
- name: "CrossCode"
|
||||
platform: "PC"
|
||||
- name: "Nioh: Complete Edition"
|
||||
- name: "Axiom Verge"
|
||||
platform: "PC"
|
||||
- name: "WORLD OF HORROR"
|
||||
platform: "PC"
|
||||
- name: "art of rally"
|
||||
platform: "PC"
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
---
|
||||
title: "List of Pride"
|
||||
prefix: "P"
|
||||
sections:
|
||||
- title: "Early Days"
|
||||
games:
|
||||
- name: "Pokemon Silver"
|
||||
platform: GBC
|
||||
platform: "GBC"
|
||||
- name: "Jungle Book: Mowgli's Adventure"
|
||||
platform: "GBC"
|
||||
- name: "Pokemon Sapphire"
|
||||
|
@ -193,7 +194,6 @@ sections:
|
|||
platform: "SNES"
|
||||
- name: "Super Mario RPG"
|
||||
platform: "SNES"
|
||||
|
||||
- title: "The Multiplayer Phase"
|
||||
games:
|
||||
- name: "Rocket League"
|
||||
|
@ -266,6 +266,8 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Pokemon Gaia v3.2"
|
||||
platform: "GBA"
|
||||
- name: "UNBEATABLE [white label]"
|
||||
platform: "PC"
|
||||
- name: "Titan Souls"
|
||||
platform: "PC"
|
||||
- name: "Midnight Castle Succubus"
|
||||
|
@ -380,3 +382,99 @@ sections:
|
|||
platform: "PC"
|
||||
- name: "Wandersong"
|
||||
platform: "PC"
|
||||
- name: "Kingdom Two Crowns"
|
||||
platform: "PC"
|
||||
- name: "Theatrythm Final Fantasy: Final Bar Line"
|
||||
platform: "PS4"
|
||||
- name: "Beacon Pines"
|
||||
platform: "PC"
|
||||
- name: "Tiny Tina's Assault on Dragon Keep: A Wonderlands One-shot Adventure"
|
||||
platform: "PC"
|
||||
- name: "Hyper Light Drifter"
|
||||
platform: "PC"
|
||||
- name: "Dungeon Village"
|
||||
platform: "PC"
|
||||
- name: "Escape: The Endless Dogwatch"
|
||||
platform: "PC"
|
||||
- name: "Gnosia"
|
||||
platform: "PC"
|
||||
- name: "Pokemon - Legends of Sinnoh: Sinnoh League Campaign"
|
||||
platform: "PC"
|
||||
- name: "Ori and the Will of the Wisps"
|
||||
platform: "PC"
|
||||
- name: "Bloodborne (again)"
|
||||
platform: "PS4"
|
||||
- name: "Card Shark"
|
||||
platform: "PC"
|
||||
- name: "Bread and Fred"
|
||||
platform: "PC"
|
||||
- name: "Final Fantasy VIII"
|
||||
platform: "PC"
|
||||
- name: "It Takes Two"
|
||||
platform: "PC"
|
||||
- name: "Vacant Kingdom"
|
||||
platform: "PC"
|
||||
- name: "Dark Souls 2"
|
||||
platform: "PC"
|
||||
- name: "Core Keeper"
|
||||
platform: "PC"
|
||||
- name: "Sea of Stars"
|
||||
platform: "PC"
|
||||
- name: "Sekiro (All Gauntlets)"
|
||||
platform: "PC"
|
||||
- name: "Return of the Obra Dinn"
|
||||
platform: "PC"
|
||||
- name: "Trine 2"
|
||||
platform: "PC"
|
||||
- name: "A Way Out"
|
||||
platform: "PC"
|
||||
- name: "DOOM"
|
||||
platform: "PC"
|
||||
- name: "Before your Eyes"
|
||||
platform: "PC"
|
||||
- name: "Katana Zero"
|
||||
platform: "PC"
|
||||
- name: "The Pathless"
|
||||
platform: "PC"
|
||||
- name: "Sifu"
|
||||
platform: "PC"
|
||||
- name: "Disco Elysium (Director's Cut)"
|
||||
platform: "PC"
|
||||
- name: "Stanley Parable: Ultra Deluxe"
|
||||
platform: "PC"
|
||||
- title: "2024"
|
||||
games:
|
||||
- name: "Final Fantasy X"
|
||||
platform: "PC"
|
||||
- name: "Cave Story+"
|
||||
platform: "PC"
|
||||
- name: "Lucah: Born of a Dream"
|
||||
platform: "PC"
|
||||
- name: "Bokura"
|
||||
platform: "PC"
|
||||
- name: "Dark Souls: Remastered"
|
||||
platform: "PC"
|
||||
- name: "Aragami"
|
||||
platform: "PC"
|
||||
- name: "Halls of Torment"
|
||||
platform: "PC"
|
||||
- name: "Pokemon: Modern Emerald"
|
||||
platform: "GBA"
|
||||
- name: "New Star GP"
|
||||
platform: "PC"
|
||||
- name: "En Garde!"
|
||||
platform: "PC"
|
||||
- name: "Everhood"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid 2: Sons of Liberty"
|
||||
platform: "PS2"
|
||||
- name: "Don't Escape: 4 Days to Survive"
|
||||
platform: "PC"
|
||||
- name: "Elden Ring: Shadows of the Erdtree"
|
||||
platform: "PC"
|
||||
- name: "PlateUp!"
|
||||
platform: "PC"
|
||||
- name: "Cuphead"
|
||||
platform: "PC"
|
||||
- name: "Metal Gear Solid 3: Snake Eater"
|
||||
platform: "PC"
|
||||
|
|
Loading…
Reference in New Issue