Compare commits

..

No commits in common. "67ecd686a5a9f0e56aca54e211a24e59c0ca042f" and "c45aecacb43fa5b3059d0768c96cd5fac054212f" have entirely different histories.

6 changed files with 575 additions and 547 deletions

View File

@ -1 +1 @@
gamelog.txt list-of-game.txt

282
build.py
View File

@ -1,27 +1,20 @@
#!/bin/env python #!/bin/env python
from yaml import safe_load import yaml
from glob import glob
from os.path import dirname from os.path import dirname
BASE = dirname(__file__) + '/src' BASE = dirname(__file__) + '/src'
FILES = glob(f'{BASE}/*.yaml')
# GLOBAL VARIABLES TITLE_LEFT = "List of Shame"
TITLE_RIGHT = "List of Pride"
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
# CONSTANTS
MAX_WIDTH = 64
MAX_WIDTH_TITLE = 40 MAX_WIDTH_TITLE = 40
MAX_WIDTH_PLATFORM = 4 MAX_WIDTH_PLATFORM = 4
MAX_WIDTH_NAME = 54 MAX_WIDTH_NAME = 54
MAX_WIDTH = 1 + MAX_WIDTH_PLATFORM + 3 + MAX_WIDTH_NAME + 1
TITLE_PADDING = 7 TITLE_PADDING = 7
DELIMITER = "| :|" DELIMITER = "| :|"
# FUNCTIONS
# split strings longer than length into a list # split strings longer than length into a list
# strings are split at last index of delim # strings are split at last index of delim
def split_to_list(str, length, delim=' '): def split_to_list(str, length, delim=' '):
@ -36,158 +29,187 @@ def split_to_list(str, length, delim=' '):
return l return l
def len_wall(wl, wr): # build_header using section title
return len(wl + wr) def build_header(l_title, add_index=False, index_string=None):
def build_header(s_title, add_index=False, index=None):
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
# split title to list if it's too long
if len(s_title) > MAX_WIDTH_TITLE:
l_title = split_to_list(s_title, MAX_WIDTH_TITLE)
else:
l_title = [s_title]
header = [] header = []
# prepare left and right padding to center title
len_title = len(l_title[0]) len_title = len(l_title[0])
pad, pad_left = divmod((MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT)) - (len_title + (TITLE_PADDING * 2)) - 2, 2) pad, pad_left = divmod(MAX_WIDTH - (len_title + (TITLE_PADDING * 2)) - 2, 2)
len_border = len_title + ((TITLE_PADDING * 2) - 2) len_border = len_title + ((TITLE_PADDING * 2) - 2)
# upper part # upper part
header.append(' ' * (pad + pad_left + 2) + '_' * len_border + ' ' * (pad + 2)) header.append(' ' * (pad + pad_left + 2) + '_' * len_border + ' ' * (pad + 2))
header.append('_' * (pad + pad_left) + '//' + ' ' * len_border + '\\\\' + '_' * pad) header.append('_' * (pad + pad_left) + '//' + ' ' * len_border + '\\\\' + '_' * pad)
# ' ' padded Title # ' ' padded Title
for title_index, title in enumerate(l_title): count = 1
char_pad = '_' if title_index+1 == len(l_title) else ' ' for title in l_title:
c_pad = '_' if count == len(l_title) else ' '
pad_right = len_title - len(title) pad_right = len_title - len(title)
header.append(char_pad * (pad + pad_left) + '|' + ' ' * TITLE_PADDING + title + ' ' * (TITLE_PADDING + pad_right) + '|' + char_pad * pad) header.append(c_pad * (pad + pad_left) + '|' + ' ' * TITLE_PADDING + title + ' ' * (TITLE_PADDING + pad_right) + '|' + c_pad * pad)
count += 1
# lower part # lower part
# optional navigation tag # optional navigation tag
if add_index == True and index != None: if add_index == True and index_string != None:
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * (pad - 7) + f'[{index}] ') header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * (pad - 7) + f'[{index_string}] ')
else: else:
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * pad) header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * pad)
header.append(' ' * (MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT))) header.append(' ' * MAX_WIDTH)
return header return header
def index_identifier(prefix, index): def index_string(prefix, index):
return f'{prefix}{index:>03d}' return f'{prefix}{index:>03d}'
def build_index(titles, prefix): def build_index(yaml, prefix):
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT l_title = []
for item in yaml:
l_title += [item['title']]
index = [ l_index = []
' - ' + item.ljust((MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT)) - 10) + '[' + index_identifier(prefix, i+1) + '] ' for i, item in enumerate(l_title):
for i, item in enumerate(titles) l_index += [' - ' + item.ljust(MAX_WIDTH - 10) + f'[{index_string(prefix, i+1)}] ']
]
# add one line of blank space for aesthetic reasons l_index += [' ' * MAX_WIDTH]
index += [' ' * (MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT))]
return index return l_index
def build_game(name, platform): def build_game(name, platform):
return f' {platform.ljust(MAX_WIDTH_PLATFORM)} | {name.ljust(MAX_WIDTH_NAME)} ' s_platform = platform.ljust(MAX_WIDTH_PLATFORM)
s_name = name.ljust(MAX_WIDTH_NAME)
def build_table(index, games): return f' {s_platform} | {s_name} '
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
# top of table #
table_result = [ # main
CORNER_LEFT + '_' * (MAX_WIDTH_PLATFORM + 2) + ' ' + '_' * (MAX_WIDTH_NAME + 2) + CORNER_RIGHT #
, WALL_LEFT + '=' * (MAX_WIDTH_PLATFORM + 2) + '|' + '=' * (MAX_WIDTH_NAME + 2) + WALL_RIGHT
]
# actual game text
for game in games:
name = game['name']
platform = game['platform']
if len(platform) > MAX_WIDTH_PLATFORM:
raise Exception(f"Platform shortcode for {name} is longer than {MAX_WIDTH_PLATFORM} characters. Invalid.")
if len(name) > MAX_WIDTH_NAME:
for i,i_name in enumerate(split_to_list(name, MAX_WIDTH_NAME)):
table_result += [
WALL_LEFT + build_game(i_name, platform if i == 0 else '') + WALL_RIGHT
]
else:
table_result += [
WALL_LEFT + build_game(name, platform) + WALL_RIGHT
]
# bottom of table
table_result += [
WALL_LEFT + '_' * (MAX_WIDTH_PLATFORM + 2) + '|' + '_' * (MAX_WIDTH_NAME + 2) + WALL_RIGHT
]
return table_result
def get_border_for_index(index):
last_index = len(FILES) - 1
if index == 0:
return ' ', '', '|', ''
elif index == last_index:
return '', ' ', '', '|'
else:
return '', '', '', ''
########
# MAIN #
########
def main(): def main():
print('go') print('go')
with open(f'{BASE}/todo.yaml', 'r') as file:
todo_yaml = yaml.safe_load(file)
with open(f'{BASE}/finished.yaml', 'r') as file:
finished_yaml = yaml.safe_load(file)
#
# Section: TO-DO
#
todo_result = []
todo_result += build_header([TITLE_LEFT])
todo_result += build_index(todo_yaml, 'S')
item_count = 0
for section in todo_yaml:
s_title = section['title']
l_title = []
if len(s_title) > MAX_WIDTH_TITLE:
l_title = split_to_list(s_title, MAX_WIDTH_TITLE)
else:
l_title = [s_title]
# Create section header
item_count += 1
todo_result += build_header(l_title, add_index=True, index_string=index_string('S', item_count))
# Create table header
todo_result += [' ______ ________________________________________________________',
'|======|========================================================']
# Add games one by one
# Prefix : |
for game in section['games']:
s_name = game['name']
s_platform = game['platform']
if len(s_platform) > MAX_WIDTH_PLATFORM:
raise Exception(f"Platform shortcode for {s_name} is longer than 4 characters. Cannot parse...")
if len(s_name) > MAX_WIDTH_NAME:
l_name = split_to_list(s_name, MAX_WIDTH_NAME)
for i,i_name in enumerate(l_name):
todo_result += ['|' + build_game(i_name, s_platform if i == 0 else '')]
else:
todo_result += ['|' + build_game(s_name, s_platform)]
# Close table header
todo_result += ['|______|________________________________________________________',
' ' * MAX_WIDTH]
#
# Section: Finished
#
finished_result = []
finished_result += build_header([TITLE_RIGHT])
finished_result += build_index(finished_yaml, 'P')
item_count = 0
for section in finished_yaml:
s_title = section['title']
l_title = []
if len(s_title) > MAX_WIDTH_TITLE:
l_title = split_to_list(s_title, MAX_WIDTH_TITLE)
else:
l_title = [s_title]
# Create section header
item_count += 1
finished_result += build_header(l_title, add_index=True, index_string=index_string('P', item_count))
# Create table header
finished_result += ['______ ________________________________________________________ ',
'======|========================================================|']
# Add games one by one
# Suffix : |
for game in section['games']:
s_name = game['name']
s_platform = game['platform']
if len(s_platform) > MAX_WIDTH_PLATFORM:
raise Exception(f"Platform shortcode for {s_name} is longer than 4 characters. Cannot parse...")
if len(s_name) > MAX_WIDTH_NAME:
l_name = split_to_list(s_name, MAX_WIDTH_NAME)
for i,i_name in enumerate(l_name):
finished_result += [build_game(i_name, platform if i == 0 else '') + '|']
else:
finished_result += [build_game(s_name, s_platform) + '|']
# Close table header
finished_result += ['______|________________________________________________________|',
' ' * MAX_WIDTH]
# adjust length of both sides
len_difference = len(todo_result) - len(finished_result)
# todo > finished
if len_difference > 0:
finished_result += [' ' * MAX_WIDTH] * len_difference
# todo < finished
elif len_difference < 0:
len_difference *= -1
todo_result += [' ' * MAX_WIDTH] * len_difference
if len(todo_result) != len(finished_result):
raise Exception("Results are not of equal size. Something went wrong...")
lists = []
result = [] result = []
i = 0
while len(todo_result) > i:
result += [todo_result[i] + DELIMITER + finished_result[i]]
i += 1
# parse every file into list with open('list-of-game.txt', 'w') as file:
for file_index, file_item in enumerate(FILES): for i in result:
with open(file_item, 'r') as file: file.write(f"{i}\n")
yaml = safe_load(file)
# prepare corners and walls
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT = get_border_for_index(file_index)
# create list by opening with header
list_result = build_header(yaml['title'])
# add index right after
list_result += build_index([ i['title'] for i in yaml['sections'] ], yaml['prefix'])
# build sections
for section_index, section in enumerate(yaml['sections']):
list_result += build_header(section['title'], add_index=True, index=index_identifier(yaml['prefix'], section_index+1))
list_result += build_table(file_index, section['games'])
lists.insert(file_index, list_result)
max_length = len(max(lists, key=len))
for list_index, list_item in enumerate(lists):
if len(list_item) < max_length:
_, _, wl, wr = get_border_for_index(list_index)
list_item += [' ' * (MAX_WIDTH + len_wall(wl, wr))] * (max_length - len(list_item))
if list_index == 0:
result = list_item
continue
# add list to result line by line
for game_index, game_item in enumerate(list_item):
result[game_index] += ( DELIMITER + game_item )
with open('gamelog.txt', 'w') as file:
for line in result:
file.write(f"{line}\n")
print('done') print('done')

View File

@ -1,246 +1,254 @@
_________________________ | :| _________________________ | :| ____________________ _________________________ | :| _________________________
__________________// \\_________________| :|_________________// \\_________________| :|____________________// \\____________________ __________________// \\_________________| :|__________________// \\_________________
__________________| List of Shame |_________________| :|_________________| List of Pride |_________________| :|____________________| Wishlist |____________________ __________________| List of Shame |_________________| :|__________________| List of Pride |_________________
\\_________________________// | :| \\_________________________// | :| \\____________________// \\_________________________// | :| \\_________________________//
| :| | :| | :|
- Currently Playing [S001] | :| - Early Days [P001] | :| - Not Yet Owned [W001] - Currently Playing [S001] | :| - Early Days [P001]
- Upcoming [S002] | :| - First PC [P002] | :| - Upcoming [S002] | :| - First PC [P002]
- Soon(TM) 2022 [S003] | :| - The Multiplayer Phase [P003] | :| _________________________ - Soon(TM) 2022 [S003] | :| - The Multiplayer Phase [P003]
- Unknown Future [S004] | :| - 2020 [P004] | :|__________________// \\_________________ - Unknown Future [S004] | :| - 2020 [P004]
- Haunts my Dreams [S005] | :| - 2021 [P005] | :|__________________| Not Yet Owned |_________________ - Haunts my Dreams [S005] | :| - 2021 [P005]
- Not Yet Owned (Wishlist) [S006] | :| - 2022 [P006] | :| \\_________________________// [W001] - Not Yet Owned (Wishlist) [S006] | :| - 2022 [P006]
| :| - 2023 [P007] | :| | :| - 2023 [P007]
_____________________________ | :| | :|______ ________________________________________________________ _____________________________ | :|
________________// \\_______________| :| ______________________ | :|======|========================================================| ________________// \\_______________| :| ______________________
________________| Currently Playing |_______________| :|___________________// \\__________________| :| PC | Hollow Knight: Silksong | ________________| Currently Playing |_______________| :|___________________// \\___________________
\\_____________________________// [S001] | :|___________________| Early Days |__________________| :| PC | Starfetchers - Episode 1 | \\_____________________________// [S001] | :|___________________| Early Days |___________________
| :| \\______________________// [P001] | :| PC | Ghost Song | | :| \\______________________// [P001]
______ ________________________________________________________| :| | :| PC | Slay the Spire | ______ ________________________________________________________| :|
|======|========================================================| :|______ ________________________________________________________| :| PC | V Rising | |======|========================================================| :|______ ________________________________________________________
| PC | Kingdom Two Crowns | :|======|========================================================| :| PC | Beacon Pines | | PC | Kingdom Two Crowns | :|======|========================================================|
| PC | The Sexy Brutale | :| GBC | Pokemon Silver | :| PC | Switchcars | | PC | CrossCode | :| GBC | Pokemon Silver |
| PC | CrossCode | :| GBC | Jungle Book: Mowgli's Adventure | :| PC | Into the Breach | |______|________________________________________________________| :| GBC | Jungle Book: Mowgli's Adventure |
|______|________________________________________________________| :| GBA | Pokemon Sapphire | :| PS1 | Parasite Eve | | :| GBA | Pokemon Sapphire |
____________________ | :| GBC | Pokemon Trading Card Game | :| PC | Sifu | ____________________ | :| GBC | Pokemon Trading Card Game |
____________________// \\____________________| :| GBC | Pokemon Crystal | :| PS4 | Dark Souls 2 | ____________________// \\____________________| :| GBC | Pokemon Crystal |
____________________| Upcoming |____________________| :| PC | Colin McRae Rally 2.0 | :| PS4 | Dark Souls 3 | ____________________| Upcoming |____________________| :| PC | Colin McRae Rally 2.0 |
\\____________________// [S002] | :| PC | Anno 1602 | :| PC | Griftlands | \\____________________// [S002] | :| PC | Anno 1602 |
| :| GBA | Pokemon Emerald | :| PC | Tunic | | :| GBA | Pokemon Emerald |
______ ________________________________________________________| :| PC | Need for Speed: Underground | :| PC | Nine Sols | ______ ________________________________________________________| :| PC | Need for Speed: Underground |
|======|========================================================| :| PC | Need for Speed: Underground 2 | :| PC | Psychonauts | |======|========================================================| :| PC | Need for Speed: Underground 2 |
| PS4 | Persona 5 Royal | :| PC | Robin Hood: Legend of Sherwood | :| PC | Psychonauts 2 | | PS4 | Persona 5 Royal | :| PC | Robin Hood: Legend of Sherwood |
| PC | Gnosia | :| PC | Driver | :| PC | Cave Story+ | | PC | Gnosia | :| PC | Driver |
| PC | Nioh: Complete Edition | :| PSP | Metal Gear Solid: Peacewalker | :| PS2 | God Hand | | PC | Nioh: Complete Edition | :| PSP | Metal Gear Solid: Peacewalker |
| PC | Death's Door | :| PSX | Metal Gear Solid | :| PC | Shovel Knight | | PC | Death's Door | :| PSX | Metal Gear Solid |
| PC | SNKRX | :| PC | F1 '02 | :| PS3 | Assassin's Creed | | PC | SNKRX | :| PC | F1 '02 |
| PC | BAD END THEATER | :| GBA | Kim Possible: Revenge of the Monkey Fist | :| PC | Astalon: Tears of the Earth | | PC | BAD END THEATER | :| GBA | Kim Possible: Revenge of the Monkey Fist |
|______|________________________________________________________| :| PS2 | Dragon Quest VIII | :| PC | Bloodstained: Ritual of the Night | |______|________________________________________________________| :| PS2 | Dragon Quest VIII |
_________________________ | :| NDS | Final Fantasy III | :| PC | Death Trash | | :| NDS | Final Fantasy III |
__________________// \\_________________| :| GBA | Final Fantasy I & II: Dawn of Souls | :| PC | Trails Rising | _________________________ | :| GBA | Final Fantasy I & II: Dawn of Souls |
__________________| Soon(TM) 2022 |_________________| :| NDS | Final Fantasy IV | :| PC | Hellblade: Senua's Sacrifice | __________________// \\_________________| :| NDS | Final Fantasy IV |
\\_________________________// [S003] | :| GBA | Final Fantasy V Advance | :| PC | Factorio | __________________| Soon(TM) 2022 |_________________| :| GBA | Final Fantasy V Advance |
| :| GBA | Final Fantasy VI Advance | :| PC | VA-11 Hall-A: Cyberpunk Bartender Action | \\_________________________// [S003] | :| GBA | Final Fantasy VI Advance |
______ ________________________________________________________| :| PSP | Lego Star Wars | :| PC | Katana Zero | | :| PSP | Lego Star Wars |
|======|========================================================| :| PSP | Lego Star Wars II | :| PC | art of rally | ______ ________________________________________________________| :| PSP | Lego Star Wars II |
| PS4 | Kingdom Hearts: Dream Drops Distance HD | :| PSP | Monster Hunter Freedom Unite | :| PC | Ooblets | |======|========================================================| :| PSP | Monster Hunter Freedom Unite |
| PC | Wandersong | :| PSP | Dissidia: Final Fantasy | :| PC | Don't Escape: 4 Days to Survive | | PS4 | Kingdom Hearts: Dream Drops Distance HD | :| PSP | Dissidia: Final Fantasy |
| PC | Outer Wilds | :| PSP | duodecim Dissidia: Final Fantasy | :| PC | Journey | | PC | Wandersong | :| PSP | duodecim Dissidia: Final Fantasy |
| PS4 | Gravity Rush: Remastered | :| PS2 | Kingdom Hearts 2 | :| PC | Baba Is You | | PC | Outer Wilds | :| PS2 | Kingdom Hearts 2 |
| PC | LISA | :| GBA | Kingdom Hearts: Chain of Memories | :| PC | Ni no Kuni: Wrath of the White Witch | | PS4 | Gravity Rush: Remastered | :| GBA | Kingdom Hearts: Chain of Memories |
|______|________________________________________________________| :| PS2 | Kingdom Hearts | :| PC | Ikenfell | | PC | LISA | :| PS2 | Kingdom Hearts |
__________________________ | :| PSP | Ratchet and Clank: Size Matters | :| PC | Moonscars | |______|________________________________________________________| :| PSP | Ratchet and Clank: Size Matters |
_________________// \\_________________| :| PSP | Exit | :| PC | Control: Ultimate Edition | | :| PSP | Exit |
_________________| Unknown Future |_________________| :| PC | Need for Speed: Most Wanted (2005) | :| PC | Carrion | __________________________ | :| PC | Need for Speed: Most Wanted (2005) |
\\__________________________// [S004] | :| GBA | The Legend of Zelda: Minish Cap | :| PC | Haven | _________________// \\_________________| :| GBA | The Legend of Zelda: Minish Cap |
| :| PC | Moorhuhn 3: ...Es Gibt Huhn! | :| PC | The Unliving | _________________| Unknown Future |_________________| :| PC | Moorhuhn 3: ...Es Gibt Huhn! |
______ ________________________________________________________| :| GBA | Pokemon Pinball: Ruby & Sapphire | :| PC | Persona 4 Golden | \\__________________________// [S004] | :| GBA | Pokemon Pinball: Ruby & Sapphire |
|======|========================================================| :| NDS | Mario Kart DS | :| PC | Signs of the Sojourner | | :| NDS | Mario Kart DS |
| PS4 | Theatrythm Final Fantasy: Final Bar Line | :| GBA | Pokemon Leaf Green | :| PC | A Space for the Unbound | ______ ________________________________________________________| :| GBA | Pokemon Leaf Green |
| PC | Dragon's Dogma: Dark Arisen | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team | :| PC | Card Shark | |======|========================================================| :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
| PC | Spiritfarer: Farewell Edition | :| PC | Shrek 2 | :| PC | Strange Horticulture | | PS4 | Theatrythm Final Fantasy: Final Bar Line | :| PC | Shrek 2 |
| PC | Hades | :| NDS | SimCity Builder | :| PC | Crowsworn | | PC | Dragon's Dogma: Dark Arisen | :| NDS | SimCity Builder |
| PC | Final Fantasy VIII | :| NDS | Nintendogs: Labrador and Friends | :| PC | MO: Astray | | PC | Spiritfarer: Farewell Edition | :| NDS | Nintendogs: Labrador and Friends |
| PC | Dungeon Munchies | :| PC | Yeti Sports | :| PC | Against The Storm | | PC | Hades | :| PC | Yeti Sports |
| PC | A Hat in Time | :| PC | Asterix & Obelix XXL | :| PC | Urbek City Builder | | PC | Final Fantasy VIII | :| PC | Asterix & Obelix XXL |
| 3DS | Dragon Quest VIII | :| GBA | Mario & Luigi: Superstar Saga | :| PC | Hyper Light Breaker | | PC | Dungeon Munchies | :| GBA | Mario & Luigi: Superstar Saga |
| PC | Ori and the Will of the Wisps | :| NDS | Mario & Luigi: Bowser's Story | :| PC | Crypt of the Necrodancer | | PC | A Hat in Time | :| NDS | Mario & Luigi: Bowser's Story |
| PC | Wizard of Legend | :| NDS | Bomberman Story DS | :| PC | Just Shapes & Beats | | 3DS | Dragon Quest VIII | :| NDS | Bomberman Story DS |
| PC | Disco Elysium (Director's Cut) | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky | :| PC | Minit | | PC | Ori and the Will of the Wisps | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky |
| PC | Cuphead | :| NDS | Pokemon Pearl | :| PC | A Short Hike | | PC | Wizard of Legend | :| NDS | Pokemon Pearl |
| PC | Stanley Parable: Ultra Deluxe | :| PSP | Crisis Core: Final Fantasy VII | :| PC | Dysmantle | | PC | Disco Elysium (Director's Cut) | :| PSP | Crisis Core: Final Fantasy VII |
| PC | Danganronpa: Trigger Happy Havoc | :| PSP | Cars | :| PC | Omori | | PC | Cuphead | :| PSP | Cars |
| PC | Yuppie Psycho | :| NDS | Pokemon Platinum | :| PC | Sea of Stars | | PC | Stanley Parable: Ultra Deluxe | :| NDS | Pokemon Platinum |
| PC | Children of Morta | :| GBA | Sonic Battle | :| PC | The Last Faith | | PC | Danganronpa: Trigger Happy Havoc | :| GBA | Sonic Battle |
| PS4 | Kingdom Hearts 3 | :| NDS | Hotel Dusk: Room 215 | :| PC | Arctic Awakening | | PC | Yuppie Psycho | :| NDS | Hotel Dusk: Room 215 |
| PC | Hyper Light Drifter | :| PC | Curse of Monkey Island | :| PC | Stray | | PC | Children of Morta | :| PC | Curse of Monkey Island |
| PC | Titanfall 2 | :| PC | Edna & Harvey: The Breakout | :| PC | The Lords of the Fallen | | PS4 | Kingdom Hearts 3 | :| PC | Edna & Harvey: The Breakout |
| PC | Kingdom Two Crowns | :| PC | Spy Fox in: Dry Cereal | :| PC | Hunt the Night | | PC | Hyper Light Drifter | :| PC | Spy Fox in: Dry Cereal |
| PC | Beyond Good and Evil | :| PC | Spy Fox in: Some Assembly Required | :| PC | Solar Ash | | PC | Titanfall 2 | :| PC | Spy Fox in: Some Assembly Required |
| PC | Rayman Origins | :| PC | Spy Fox in: Operation Ozone | :| PC | Nightingale | | PC | Kingdom Two Crowns | :| PC | Spy Fox in: Operation Ozone |
| PC | Asterix & Obelix XXL: Romastered | :| NDS | Kingdom Hearts 358/2 Days | :| PC | Nara: Facing Fire | | PC | Beyond Good and Evil | :| NDS | Kingdom Hearts 358/2 Days |
| PC | Dishonored | :| NDS | Mario Hoops 3-on-3 | :| PC | Death's Gambit: Afterlife | | PC | Rayman Origins | :| NDS | Mario Hoops 3-on-3 |
|______|________________________________________________________| :| PC | N++ | :| PC | SEASON: A letter to the future | | PC | Asterix & Obelix XXL: Romastered | :| PC | N++ |
____________________________ | :| NDS | Naruto: Ninja Council 3 | :| PC | Unbound: Worlds Apart | | PC | Dishonored | :| NDS | Naruto: Ninja Council 3 |
________________// \\________________| :| PSP | Sid Meier's Pirates | :| PC | Gloomwood | |______|________________________________________________________| :| PSP | Sid Meier's Pirates |
________________| Haunts my Dreams |________________| :| NDS | Pokemon Soul Silver | :| PC | The Outbound Ghost | | :| NDS | Pokemon Soul Silver |
\\____________________________// [S005] | :| NDS | Pokemon Ranger | :| PC | Cassette Beasts | ____________________________ | :| NDS | Pokemon Ranger |
| :| NDS | Professor Layton and the Curious Village | :| PC | DREDGE | ________________// \\________________| :| NDS | Professor Layton and the Curious Village |
______ ________________________________________________________| :| NDS | Professor Layton and the Diabolical Box | :| PC | Sackboy: A Big Adventure | ________________| Haunts my Dreams |________________| :| NDS | Professor Layton and the Diabolical Box |
|======|========================================================| :| PC | Tachyon: The Fringe | :| PC | Buck Up and Drive! | \\____________________________// [S005] | :| PC | Tachyon: The Fringe |
| NDS | The World Ends With You | :| NDS | The Simpsons | :| PC | Mandragora | | :| NDS | The Simpsons |
| PC | Return of the Obra Dinn | :| NDS | Spectrobes | :| PC | Return to Monkey Island | ______ ________________________________________________________| :| NDS | Spectrobes |
| PC | Voice of Cards: The Forsaken Maiden | :| PC | Trackmania Original | :| PC | Escape: The Endless Dogwatch | |======|========================================================| :| PC | Trackmania Original |
| PC | Distance | :| GBA | Wario Ware | :| PC | Aero GPX | | NDS | The World Ends With You | :| GBA | Wario Ware |
| PC | Forager | :| NDS | Yu-Gi-Oh!: World Championship 2008 | :| PC | Final Fantasy XVI | | PC | Return of the Obra Dinn | :| NDS | Yu-Gi-Oh!: World Championship 2008 |
| PC | The Secret of Monkey Island | :| PC | Rollercoaster Tycoon 2 | :| PC | Replaced | | PC | Voice of Cards: The Forsaken Maiden | :| PC | Rollercoaster Tycoon 2 |
| PC | Monkey Island 2 | :| PC | Crashday | :| PC | Earthblade | | PC | Distance | :| PC | Crashday |
| GBA | Fire Emblem | :|______|________________________________________________________| :|______|________________________________________________________| | PC | Forager | :|______|________________________________________________________|
| PC | Deus Ex: Game of the Year | :| ____________________ | :| | PC | The Secret of Monkey Island | :|
| PS2 | Metal Gear Solid 2: Sons of Liberty | :|____________________// \\___________________| :| | PC | Monkey Island 2 | :| ____________________
| PC | Bravery Network Online | :|____________________| First PC |___________________| :| | GBA | Fire Emblem | :|____________________// \\____________________
| NES | Ninja Gaiden | :| \\____________________// [P002] | :| | PC | Deus Ex: Game of the Year | :|____________________| First PC |____________________
| PS3 | Metal Gear Solid 3: Snake Eater | :| | :| | PS2 | Metal Gear Solid 2: Sons of Liberty | :| \\____________________// [P002]
| PS2 | Devil May Cry 3 | :|______ ________________________________________________________| :| | PC | Bravery Network Online | :|
| PC | It Takes Two | :|======|========================================================| :| | NES | Ninja Gaiden | :|______ ________________________________________________________
| PC | Potion Craft | :| PC | Terraria | :| | PS3 | Metal Gear Solid 3: Snake Eater | :|======|========================================================|
| PC | Grim Fandango Remastered | :| PC | Minecraft | :| | PS2 | Devil May Cry 3 | :| PC | Terraria |
| PC | Hypnospace Outlaw | :| PS3 | Little Big Planet | :| | PC | It Takes Two | :| PC | Minecraft |
| PC | FEZ | :| PS3 | F1 2015 | :| | PC | Potion Craft | :| PS3 | Little Big Planet |
| PC | Tales of Arise | :| PC | Portal | :| | PC | Grim Fandango Remastered | :| PS3 | F1 2015 |
| PC | One Step from Eden | :| PC | Far Cry 3 | :| | PC | Hypnospace Outlaw | :| PC | Portal |
| PC | Death and Taxes | :| PC | Call of Duty: Modern Warfare 2 | :| | PC | FEZ | :| PC | Far Cry 3 |
| PC | Quantum Protocol | :| PSP | Kingdom Hearts: Birth by Sleep | :| | PC | Tales of Arise | :| PC | Call of Duty: Modern Warfare 2 |
| PC | Metal Gear Solid V: The Phantom Pain | :| PSP | Wipeout Pulse | :| | PC | One Step from Eden | :| PSP | Kingdom Hearts: Birth by Sleep |
| PC | Metal Gear Solid IV: Guns of the Patriots | :| PC | Worms 3D | :| | PC | Death and Taxes | :| PSP | Wipeout Pulse |
| PC | Lovely Planet | :| PC | League of Legends | :| | PC | Quantum Protocol | :| PC | Worms 3D |
| PC | Darkest Dungeon | :| PC | Airmech | :| | PC | Metal Gear Solid V: The Phantom Pain | :| PC | League of Legends |
| PC | Kindred Spirits on the Roof | :| PC | Trackmania United Forever | :| | PC | Metal Gear Solid IV: Guns of the Patriots | :| PC | Airmech |
| PC | Owlboy | :| PC | Party Hard | :| | PC | Lovely Planet | :| PC | Trackmania United Forever |
| PC | Ys IX | :| PC | Hotline Miami | :| | PC | Darkest Dungeon | :| PC | Party Hard |
| PC | Faster Than Light | :| PC | Papers, Please | :| | PC | Kindred Spirits on the Roof | :| PC | Hotline Miami |
| PC | Final Fantasy Type-0 | :| SNES | Super Metroid | :| | PC | Owlboy | :| PC | Papers, Please |
| PC | Final Fantasy IX | :| SNES | Super Mario RPG | :| | PC | Ys IX | :| SNES | Super Metroid |
| PC | Final Fantasy X | :|______|________________________________________________________| :| | PC | Faster Than Light | :| SNES | Super Mario RPG |
| PC | Final Fantasy XII | :| _________________________________ | :| | PC | Final Fantasy Type-0 | :|______|________________________________________________________|
| PS3 | Final Fantasy XIII | :|_____________// \\_____________| :| | PC | Final Fantasy IX | :|
| PC | Lightning Returns: Final Fantasy XIII | :|_____________| The Multiplayer Phase |_____________| :| | PC | Final Fantasy X | :| _________________________________
| PC | Bastion | :| \\_________________________________// [P003] | :| | PC | Final Fantasy XII | :|______________// \\_____________
| PC | Crashlands | :| | :| | PS3 | Final Fantasy XIII | :|______________| The Multiplayer Phase |_____________
| NX | Xenoblade Chronicles | :|______ ________________________________________________________| :| | PC | Lightning Returns: Final Fantasy XIII | :| \\_________________________________// [P003]
| PC | Octopath Traveler | :|======|========================================================| :| | PC | Bastion | :|
| 3DS | Bravely Default | :| PC | Rocket League | :| | PC | Crashlands | :|______ ________________________________________________________
| PC | Neon White | :| PC | Castle Crashers | :| | NX | Xenoblade Chronicles | :|======|========================================================|
| PC | Dungreed | :| PC | FEAR 3 | :| | PC | Octopath Traveler | :| PC | Rocket League |
| PC | Everspace | :| PC | McPixel | :| | 3DS | Bravely Default | :| PC | Castle Crashers |
|______|________________________________________________________| :| PC | 12 Is Better Than 6 | :| | PC | Neon White | :| PC | FEAR 3 |
____________________________________ | :| PC | Stardew Valley | :| | PC | Dungreed | :| PC | McPixel |
____________// \\____________| :| PC | Worms Ultimate Mayhem | :| | PC | Everspace | :| PC | 12 Is Better Than 6 |
____________| Not Yet Owned (Wishlist) |____________| :| PC | Counter-Strike: Global Offensive | :| |______|________________________________________________________| :| PC | Stardew Valley |
\\____________________________________// [S006] | :| PC | The Beginner's Guide | :| | :| PC | Worms Ultimate Mayhem |
| :| PC | Stanley's Parable | :| ____________________________________ | :| PC | Counter-Strike: Global Offensive |
______ ________________________________________________________| :| PC | What Remains of Edith Finch | :| ____________// \\____________| :| PC | The Beginner's Guide |
|======|========================================================| :| PC | Ori and the Blind Forest | :| ____________| Not Yet Owned (Wishlist) |____________| :| PC | Stanley's Parable |
| PC | Hollow Knight: Silksong | :| PC | Realm of the Mad God | :| \\____________________________________// [S006] | :| PC | What Remains of Edith Finch |
| PC | Starfetchers - Episode 1 | :| PC | Raft | :| | :| PC | Ori and the Blind Forest |
| PC | Ghost Song | :| NX | The Legend of Zelda: Breath of the Wild | :| ______ ________________________________________________________| :| PC | Realm of the Mad God |
| PC | Slay the Spire | :| NX | Mario Odyssey | :| |======|========================================================| :| PC | Raft |
| PC | V Rising | :| NX | Snake Pass | :| | PC | Hollow Knight: Silksong | :| NX | The Legend of Zelda: Breath of the Wild |
| PC | Beacon Pines | :| NX | Mario Kart 8: Deluxe | :| | PC | Starfetchers - Episode 1 | :| NX | Mario Odyssey |
| PC | Switchcars | :|______|________________________________________________________| :| | PC | Ghost Song | :| NX | Snake Pass |
| PC | Into the Breach | :| ________________ | :| | PC | Slay the Spire | :| NX | Mario Kart 8: Deluxe |
| PS1 | Parasite Eve | :|______________________// \\_____________________| :| | PC | V Rising | :|______|________________________________________________________|
| PC | Sifu | :|______________________| 2020 |_____________________| :| | PC | Beacon Pines | :|
| PS4 | Dark Souls 2 | :| \\________________// [P004] | :| | PC | Switchcars | :| ________________
| PS4 | Dark Souls 3 | :| | :| | PC | Into the Breach | :|______________________// \\______________________
| PC | Griftlands | :|______ ________________________________________________________| :| | PS1 | Parasite Eve | :|______________________| 2020 |______________________
| PC | Tunic | :|======|========================================================| :| | PC | Sifu | :| \\________________// [P004]
| PC | Nine Sols | :| PC | NieR: Automata | :| | PS4 | Dark Souls 2 | :|
| PC | Psychonauts | :| PC | Celeste | :| | PS4 | Dark Souls 3 | :|______ ________________________________________________________
| PC | Psychonauts 2 | :| PC | Monster Hunter: World | :| | PC | Griftlands | :|======|========================================================|
| PC | Cave Story+ | :| PC | A Short Hike | :| | PC | Tunic | :| PC | NieR: Automata |
| PS2 | God Hand | :| PC | Risk of Rain 2 | :| | PC | Nine Sols | :| PC | Celeste |
| PC | Shovel Knight | :| PC | Subnautica | :| | PC | Psychonauts | :| PC | Monster Hunter: World |
| PS3 | Assassin's Creed | :| PC | Among Us | :| | PC | Psychonauts 2 | :| PC | A Short Hike |
| PC | Astalon: Tears of the Earth | :| PC | Phasmophobia | :| | PC | Cave Story+ | :| PC | Risk of Rain 2 |
| PC | Bloodstained: Ritual of the Night | :| PC | Helltaker | :| | PS2 | God Hand | :| PC | Subnautica |
| PC | Death Trash | :| PC | For The King | :| | PC | Shovel Knight | :| PC | Among Us |
| PC | Trails Rising | :| PC | Poppy Kart | :| | PS3 | Assassin's Creed | :| PC | Phasmophobia |
| PC | Hellblade: Senua's Sacrifice | :|______|________________________________________________________| :| | PC | Astalon: Tears of the Earth | :| PC | Helltaker |
| PC | Factorio | :| ________________ | :| | PC | Bloodstained: Ritual of the Night | :| PC | For The King |
| PC | VA-11 Hall-A: Cyberpunk Bartender Action | :|______________________// \\_____________________| :| | PC | Death Trash | :| PC | Poppy Kart |
| PC | Katana Zero | :|______________________| 2021 |_____________________| :| | PC | Trails Rising | :|______|________________________________________________________|
| PC | art of rally | :| \\________________// [P005] | :| | PC | Hellblade: Senua's Sacrifice | :|
| PC | Ooblets | :| | :| | PC | Factorio | :| ________________
| PC | Don't Escape: 4 Days to Survive | :|______ ________________________________________________________| :| | PC | VA-11 Hall-A: Cyberpunk Bartender Action | :|______________________// \\______________________
| PC | Journey | :|======|========================================================| :| | PC | Katana Zero | :|______________________| 2021 |______________________
| PC | Baba Is You | :| PS4 | Kingdom Hearts 0.2 Birth by Sleep | :| | PC | art of rally | :| \\________________// [P005]
| PC | Ni no Kuni: Wrath of the White Witch | :| PC | NieR: Replicant ver.1.22474487139... | :| | PC | Ooblets | :|
| PC | Ikenfell | :| PC | Portal Reloaded | :| | PC | Don't Escape: 4 Days to Survive | :|______ ________________________________________________________
| PC | Moonscars | :| GBA | Pokemon Gaia v3.2 | :| | PC | Journey | :|======|========================================================|
| PC | Control: Ultimate Edition | :| PC | Titan Souls | :| | PC | Baba Is You | :| PS4 | Kingdom Hearts 0.2 Birth by Sleep |
| PC | Carrion | :| PC | Midnight Castle Succubus | :| | PC | Ni no Kuni: Wrath of the White Witch | :| PC | NieR: Replicant ver.1.22474487139... |
| PC | Haven | :| PC | Valheim | :| | PC | Ikenfell | :| PC | Portal Reloaded |
| PC | The Unliving | :| PC | Bad North | :| | PC | Moonscars | :| GBA | Pokemon Gaia v3.2 |
| PC | Persona 4 Golden | :| PC | Star Fetchers Prologue | :| | PC | Control: Ultimate Edition | :| PC | Titan Souls |
| PC | Signs of the Sojourner | :| PC | Glyph | :| | PC | Carrion | :| PC | Midnight Castle Succubus |
| PC | A Space for the Unbound | :| PC | The Hex | :| | PC | Haven | :| PC | Valheim |
| PC | Card Shark | :| PC | Deepest Sword | :| | PC | The Unliving | :| PC | Bad North |
| PC | Strange Horticulture | :| PC | Prologue For A Vacant Kingdom | :| | PC | Persona 4 Golden | :| PC | Star Fetchers Prologue |
| PC | Crowsworn | :| PC | Unsighted | :| | PC | Signs of the Sojourner | :| PC | Glyph |
| PC | MO: Astray | :| PC | Voice of Cards: The Isle Dragon Roars | :| | PC | A Space for the Unbound | :| PC | The Hex |
| PC | Against The Storm | :| PC | To The Moon | :| | PC | Card Shark | :| PC | Deepest Sword |
| PC | Urbek City Builder | :|______|________________________________________________________| :| | PC | Strange Horticulture | :| PC | Prologue For A Vacant Kingdom |
| PC | Hyper Light Breaker | :| ________________ | :| | PC | Crowsworn | :| PC | Unsighted |
| PC | Crypt of the Necrodancer | :|______________________// \\_____________________| :| | PC | MO: Astray | :| PC | Voice of Cards: The Isle Dragon Roars |
| PC | Just Shapes & Beats | :|______________________| 2022 |_____________________| :| | PC | Against The Storm | :| PC | To The Moon |
| PC | Minit | :| \\________________// [P006] | :| | PC | Urbek City Builder | :|______|________________________________________________________|
| PC | A Short Hike | :| | :| | PC | Hyper Light Breaker | :|
| PC | Dysmantle | :|______ ________________________________________________________| :| | PC | Crypt of the Necrodancer | :| ________________
| PC | Omori | :|======|========================================================| :| | PC | Just Shapes & Beats | :|______________________// \\______________________
| PC | Sea of Stars | :| PC | Hollow Knight | :| | PC | Minit | :|______________________| 2022 |______________________
| PC | The Last Faith | :| PC | Black Mesa | :| | PC | A Short Hike | :| \\________________// [P006]
| PC | Arctic Awakening | :| PC | Warhammer: Vermintide 2 | :| | PC | Dysmantle | :|
| PC | Stray | :| PS4 | 13 Sentinels: Aegis Rim | :| | PC | Omori | :|______ ________________________________________________________
| PC | The Lords of the Fallen | :| PS4 | Bloodborne | :| | PC | Sea of Stars | :|======|========================================================|
| PC | Hunt the Night | :| PC | Vampire Survivors | :| | PC | The Last Faith | :| PC | Hollow Knight |
| PC | Solar Ash | :| PC | Elden Ring | :| | PC | Arctic Awakening | :| PC | Black Mesa |
| PC | Nightingale | :| PC | OPUS: Echo of Starsong | :| | PC | Stray | :| PC | Warhammer: Vermintide 2 |
| PC | Nara: Facing Fire | :| PC | Stacklands | :| | PC | The Lords of the Fallen | :| PS4 | 13 Sentinels: Aegis Rim |
| PC | Death's Gambit: Afterlife | :| PC | Paradise Killer | :| | PC | Hunt the Night | :| PS4 | Bloodborne |
| PC | SEASON: A letter to the future | :| PC | Webbed | :| | PC | Solar Ash | :| PC | Vampire Survivors |
| PC | Unbound: Worlds Apart | :| GBA | Pokemon Unbound | :| | PC | Nightingale | :| PC | Elden Ring |
| PC | Gloomwood | :| PC | Dark Souls: Remastered | :| | PC | Nara: Facing Fire | :| PC | OPUS: Echo of Starsong |
| PC | The Outbound Ghost | :| PC | Portal 2 | :| | PC | Death's Gambit: Afterlife | :| PC | Stacklands |
| PC | Cassette Beasts | :| PC | Inscryption | :| | PC | SEASON: A letter to the future | :| PC | Paradise Killer |
| PC | DREDGE | :| PC | There is no Game: Wrong Dimension | :| | PC | Unbound: Worlds Apart | :| PC | Webbed |
| PC | Sackboy: A Big Adventure | :| GBA | Castlevania - Aria Of Sorrow | :| | PC | Gloomwood | :| GBA | Pokemon Unbound |
| PC | Buck Up and Drive! | :| PC | Half-Life 2 | :| | PC | The Outbound Ghost | :| PC | Dark Souls: Remastered |
| PC | Mandragora | :| PS3 | Drakengard 3 | :| | PC | Cassette Beasts | :| PC | Portal 2 |
| PC | Return to Monkey Island | :| PC | Blasphemous | :| | PC | DREDGE | :| PC | Inscryption |
| PC | Escape: The Endless Dogwatch | :| PC | Sekiro - Shadows Die Twice (Demon Bell) | :| | PC | Sackboy: A Big Adventure | :| PC | There is no Game: Wrong Dimension |
| PC | Aero GPX | :| PC | The Pedestrian | :| | PC | Buck Up and Drive! | :| GBA | Castlevania - Aria Of Sorrow |
| PC | Final Fantasy XVI | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team | :| | PC | Mandragora | :| PC | Half-Life 2 |
| PC | Replaced | :| PC | Final Fantasy VII: New Threat 2.0 | :| | PC | Return to Monkey Island | :| PS3 | Drakengard 3 |
| PC | Earthblade | :| PC | OPUS: The Day We Found Earth | :| | PC | Escape: The Endless Dogwatch | :| PC | Blasphemous |
|______|________________________________________________________| :| PC | Need For Speed: Underground 2 | :| | PC | Aero GPX | :| PC | Sekiro - Shadows Die Twice (Demon Bell) |
| :| PC | OPUS: Rocket of Whispers | :| | PC | Final Fantasy XVI | :| PC | The Pedestrian |
| :| PC | Need for Speed: Undergound | :| | PC | Replaced | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
| :| PC | Loop Hero | :| | PC | Earthblade | :| PC | Final Fantasy VII: New Threat 2.0 |
| :| PC | Sekiro: Shadows Die Twice (Demon Bell) (again) | :| |______|________________________________________________________| :| PC | OPUS: The Day We Found Earth |
| :| PC | Crisis Core -Final Fantasy VII- REUNION | :| | :| PC | Need For Speed: Underground 2 |
| :| PS4 | Bloodborne (again) | :| | :| PC | OPUS: Rocket of Whispers |
| :|______|________________________________________________________| :| | :| PC | Need for Speed: Undergound |
| :| ________________ | :| | :| PC | Loop Hero |
| :|______________________// \\_____________________| :| | :| PC | Sekiro: Shadows Die Twice (Demon Bell) (again) |
| :|______________________| 2023 |_____________________| :| | :| PC | Crisis Core -Final Fantasy VII- REUNION |
| :| \\________________// [P007] | :| | :| PS4 | Bloodborne (again) |
| :| | :| | :|______|________________________________________________________|
| :|______ ________________________________________________________| :| | :|
| :|======|========================================================| :| | :| ________________
| :| PC | Pyre | :| | :|______________________// \\______________________
| :| PC | The Pinball Wizard | :| | :|______________________| 2023 |______________________
| :| PC | Sayonara Wild Hearts | :| | :| \\________________// [P007]
| :| PC | Manifold Garden | :| | :|
| :| PC | Bloodstained: Curse of the Moon | :| | :|______ ________________________________________________________
| :| PC | Undertale | :| | :|======|========================================================|
| :|______|________________________________________________________| :| | :| PC | Pyre |
| :| PC | The Pinball Wizard |
| :| PC | Sayonara Wild Hearts |
| :| PC | Manifold Garden |
| :| PC | Bloodstained: Curse of the Moon |
| :| PC | Undertale |
| :| PC | The Sexy Brutale |
| :|______|________________________________________________________|
| :|

View File

@ -1,169 +0,0 @@
title: "Wishlist"
prefix: "W"
sections:
- title: "Not Yet Owned"
games:
- name: "Hollow Knight: Silksong"
platform: "PC"
- name: "Starfetchers - Episode 1"
platform: "PC"
- name: "Ghost Song"
platform: "PC"
- name: "Slay the Spire"
platform: "PC"
- name: "V Rising"
platform: "PC"
- name: "Beacon Pines"
platform: "PC"
- name: "Switchcars"
platform: "PC"
- name: "Into the Breach"
platform: "PC"
- 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"
- name: "Tunic"
platform: "PC"
- name: "Nine Sols"
platform: "PC"
- name: "Psychonauts"
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"
platform: "PC"
- name: "Ni no Kuni: Wrath of the White Witch"
platform: "PC"
- name: "Ikenfell"
platform: "PC"
- name: "Moonscars"
platform: "PC"
- name: "Control: Ultimate Edition"
platform: "PC"
- name: "Carrion"
platform: "PC"
- name: "Haven"
platform: "PC"
- name: "The Unliving"
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: "Gloomwood"
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!"
platform: "PC"
- name: "Mandragora"
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"

View File

@ -172,3 +172,170 @@
platform: "PC" platform: "PC"
- name: "Everspace" - name: "Everspace"
platform: "PC" platform: "PC"
- title: "Not Yet Owned (Wishlist)"
games:
- name: "Hollow Knight: Silksong"
platform: "PC"
- name: "Starfetchers - Episode 1"
platform: "PC"
- name: "Ghost Song"
platform: "PC"
- name: "Slay the Spire"
platform: "PC"
- name: "V Rising"
platform: "PC"
- name: "Beacon Pines"
platform: "PC"
- name: "Switchcars"
platform: "PC"
- name: "Into the Breach"
platform: "PC"
- 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"
- name: "Tunic"
platform: "PC"
- name: "Nine Sols"
platform: "PC"
- name: "Psychonauts"
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"
platform: "PC"
- name: "Ni no Kuni: Wrath of the White Witch"
platform: "PC"
- name: "Ikenfell"
platform: "PC"
- name: "Moonscars"
platform: "PC"
- name: "Control: Ultimate Edition"
platform: "PC"
- name: "Carrion"
platform: "PC"
- name: "Haven"
platform: "PC"
- name: "The Unliving"
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: "Gloomwood"
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!"
platform: "PC"
- name: "Mandragora"
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"