Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
fanyx | 67ecd686a5 | |
fanyx | b68fc2ed1c | |
fanyx | 078a63c76d | |
fanyx | 2447ce2af3 |
|
@ -1 +1 @@
|
|||
list-of-game.txt
|
||||
gamelog.txt
|
282
build.py
282
build.py
|
@ -1,20 +1,27 @@
|
|||
#!/bin/env python
|
||||
|
||||
import yaml
|
||||
from yaml import safe_load
|
||||
from glob import glob
|
||||
from os.path import dirname
|
||||
|
||||
BASE = dirname(__file__) + '/src'
|
||||
FILES = glob(f'{BASE}/*.yaml')
|
||||
|
||||
TITLE_LEFT = "List of Shame"
|
||||
TITLE_RIGHT = "List of Pride"
|
||||
# GLOBAL VARIABLES
|
||||
|
||||
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
|
||||
|
||||
# CONSTANTS
|
||||
|
||||
MAX_WIDTH = 64
|
||||
MAX_WIDTH_TITLE = 40
|
||||
MAX_WIDTH_PLATFORM = 4
|
||||
MAX_WIDTH_NAME = 54
|
||||
MAX_WIDTH = 1 + MAX_WIDTH_PLATFORM + 3 + MAX_WIDTH_NAME + 1
|
||||
TITLE_PADDING = 7
|
||||
DELIMITER = "| :|"
|
||||
|
||||
# FUNCTIONS
|
||||
|
||||
# split strings longer than length into a list
|
||||
# strings are split at last index of delim
|
||||
def split_to_list(str, length, delim=' '):
|
||||
|
@ -29,187 +36,158 @@ def split_to_list(str, length, delim=' '):
|
|||
|
||||
return l
|
||||
|
||||
# build_header using section title
|
||||
def build_header(l_title, add_index=False, index_string=None):
|
||||
def len_wall(wl, wr):
|
||||
return len(wl + wr)
|
||||
|
||||
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 = []
|
||||
|
||||
# prepare left and right padding to center title
|
||||
len_title = len(l_title[0])
|
||||
pad, pad_left = divmod(MAX_WIDTH - (len_title + (TITLE_PADDING * 2)) - 2, 2)
|
||||
pad, pad_left = divmod((MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT)) - (len_title + (TITLE_PADDING * 2)) - 2, 2)
|
||||
len_border = len_title + ((TITLE_PADDING * 2) - 2)
|
||||
|
||||
# upper part
|
||||
header.append(' ' * (pad + pad_left + 2) + '_' * len_border + ' ' * (pad + 2))
|
||||
header.append('_' * (pad + pad_left) + '//' + ' ' * len_border + '\\\\' + '_' * pad)
|
||||
|
||||
# ' ' padded Title
|
||||
count = 1
|
||||
for title in l_title:
|
||||
c_pad = '_' if count == len(l_title) else ' '
|
||||
for title_index, title in enumerate(l_title):
|
||||
char_pad = '_' if title_index+1 == len(l_title) else ' '
|
||||
pad_right = len_title - len(title)
|
||||
header.append(c_pad * (pad + pad_left) + '|' + ' ' * TITLE_PADDING + title + ' ' * (TITLE_PADDING + pad_right) + '|' + c_pad * pad)
|
||||
count += 1
|
||||
header.append(char_pad * (pad + pad_left) + '|' + ' ' * TITLE_PADDING + title + ' ' * (TITLE_PADDING + pad_right) + '|' + char_pad * pad)
|
||||
|
||||
# lower part
|
||||
# optional navigation tag
|
||||
if add_index == True and index_string != None:
|
||||
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * (pad - 7) + f'[{index_string}] ')
|
||||
if add_index == True and index != None:
|
||||
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * (pad - 7) + f'[{index}] ')
|
||||
else:
|
||||
header.append(' ' * (pad + pad_left) + '\\\\' + '_' * len_border + '//' + ' ' * pad)
|
||||
|
||||
header.append(' ' * MAX_WIDTH)
|
||||
header.append(' ' * (MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT)))
|
||||
|
||||
return header
|
||||
|
||||
def index_string(prefix, index):
|
||||
def index_identifier(prefix, index):
|
||||
return f'{prefix}{index:>03d}'
|
||||
|
||||
def build_index(yaml, prefix):
|
||||
l_title = []
|
||||
for item in yaml:
|
||||
l_title += [item['title']]
|
||||
def build_index(titles, prefix):
|
||||
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
|
||||
|
||||
l_index = []
|
||||
for i, item in enumerate(l_title):
|
||||
l_index += [' - ' + item.ljust(MAX_WIDTH - 10) + f'[{index_string(prefix, i+1)}] ']
|
||||
index = [
|
||||
' - ' + item.ljust((MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT)) - 10) + '[' + index_identifier(prefix, i+1) + '] '
|
||||
for i, item in enumerate(titles)
|
||||
]
|
||||
|
||||
l_index += [' ' * MAX_WIDTH]
|
||||
# add one line of blank space for aesthetic reasons
|
||||
index += [' ' * (MAX_WIDTH + len_wall(WALL_LEFT, WALL_RIGHT))]
|
||||
|
||||
return l_index
|
||||
return index
|
||||
|
||||
def build_game(name, platform):
|
||||
s_platform = platform.ljust(MAX_WIDTH_PLATFORM)
|
||||
s_name = name.ljust(MAX_WIDTH_NAME)
|
||||
return f' {platform.ljust(MAX_WIDTH_PLATFORM)} | {name.ljust(MAX_WIDTH_NAME)} '
|
||||
|
||||
return f' {s_platform} | {s_name} '
|
||||
def build_table(index, games):
|
||||
global CORNER_LEFT, CORNER_RIGHT, WALL_LEFT, WALL_RIGHT
|
||||
|
||||
#
|
||||
# main
|
||||
#
|
||||
# top of table
|
||||
table_result = [
|
||||
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():
|
||||
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 = []
|
||||
i = 0
|
||||
while len(todo_result) > i:
|
||||
result += [todo_result[i] + DELIMITER + finished_result[i]]
|
||||
i += 1
|
||||
|
||||
with open('list-of-game.txt', 'w') as file:
|
||||
for i in result:
|
||||
file.write(f"{i}\n")
|
||||
# parse every file into list
|
||||
for file_index, file_item in enumerate(FILES):
|
||||
with open(file_item, 'r') as file:
|
||||
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')
|
||||
|
||||
|
|
|
@ -1,254 +1,246 @@
|
|||
_________________________ | :| _________________________
|
||||
__________________// \\_________________| :|__________________// \\_________________
|
||||
__________________| List of Shame |_________________| :|__________________| List of Pride |_________________
|
||||
\\_________________________// | :| \\_________________________//
|
||||
| :|
|
||||
- Currently Playing [S001] | :| - Early Days [P001]
|
||||
- Upcoming [S002] | :| - First PC [P002]
|
||||
- Soon(TM) 2022 [S003] | :| - The Multiplayer Phase [P003]
|
||||
- Unknown Future [S004] | :| - 2020 [P004]
|
||||
- Haunts my Dreams [S005] | :| - 2021 [P005]
|
||||
- Not Yet Owned (Wishlist) [S006] | :| - 2022 [P006]
|
||||
| :| - 2023 [P007]
|
||||
_____________________________ | :|
|
||||
________________// \\_______________| :| ______________________
|
||||
________________| Currently Playing |_______________| :|___________________// \\___________________
|
||||
\\_____________________________// [S001] | :|___________________| Early Days |___________________
|
||||
| :| \\______________________// [P001]
|
||||
______ ________________________________________________________| :|
|
||||
|======|========================================================| :|______ ________________________________________________________
|
||||
| PC | Kingdom Two Crowns | :|======|========================================================|
|
||||
| PC | CrossCode | :| GBC | Pokemon Silver |
|
||||
|______|________________________________________________________| :| GBC | Jungle Book: Mowgli's Adventure |
|
||||
| :| GBA | Pokemon Sapphire |
|
||||
____________________ | :| GBC | Pokemon Trading Card Game |
|
||||
____________________// \\____________________| :| GBC | Pokemon Crystal |
|
||||
____________________| Upcoming |____________________| :| PC | Colin McRae Rally 2.0 |
|
||||
\\____________________// [S002] | :| PC | Anno 1602 |
|
||||
| :| GBA | Pokemon Emerald |
|
||||
______ ________________________________________________________| :| PC | Need for Speed: Underground |
|
||||
|======|========================================================| :| PC | Need for Speed: Underground 2 |
|
||||
| PS4 | Persona 5 Royal | :| PC | Robin Hood: Legend of Sherwood |
|
||||
| PC | Gnosia | :| PC | Driver |
|
||||
| PC | Nioh: Complete Edition | :| PSP | Metal Gear Solid: Peacewalker |
|
||||
| PC | Death's Door | :| PSX | Metal Gear Solid |
|
||||
| PC | SNKRX | :| PC | F1 '02 |
|
||||
| PC | BAD END THEATER | :| GBA | Kim Possible: Revenge of the Monkey Fist |
|
||||
|______|________________________________________________________| :| PS2 | Dragon Quest VIII |
|
||||
| :| NDS | Final Fantasy III |
|
||||
_________________________ | :| GBA | Final Fantasy I & II: Dawn of Souls |
|
||||
__________________// \\_________________| :| NDS | Final Fantasy IV |
|
||||
__________________| Soon(TM) 2022 |_________________| :| GBA | Final Fantasy V Advance |
|
||||
\\_________________________// [S003] | :| GBA | Final Fantasy VI Advance |
|
||||
| :| PSP | Lego Star Wars |
|
||||
______ ________________________________________________________| :| PSP | Lego Star Wars II |
|
||||
|======|========================================================| :| PSP | Monster Hunter Freedom Unite |
|
||||
| PS4 | Kingdom Hearts: Dream Drops Distance HD | :| PSP | Dissidia: Final Fantasy |
|
||||
| PC | Wandersong | :| PSP | duodecim Dissidia: Final Fantasy |
|
||||
| PC | Outer Wilds | :| PS2 | Kingdom Hearts 2 |
|
||||
| PS4 | Gravity Rush: Remastered | :| GBA | Kingdom Hearts: Chain of Memories |
|
||||
| PC | LISA | :| PS2 | Kingdom Hearts |
|
||||
|______|________________________________________________________| :| PSP | Ratchet and Clank: Size Matters |
|
||||
| :| PSP | Exit |
|
||||
__________________________ | :| PC | Need for Speed: Most Wanted (2005) |
|
||||
_________________// \\_________________| :| GBA | The Legend of Zelda: Minish Cap |
|
||||
_________________| Unknown Future |_________________| :| PC | Moorhuhn 3: ...Es Gibt Huhn! |
|
||||
\\__________________________// [S004] | :| GBA | Pokemon Pinball: Ruby & Sapphire |
|
||||
| :| NDS | Mario Kart DS |
|
||||
______ ________________________________________________________| :| GBA | Pokemon Leaf Green |
|
||||
|======|========================================================| :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
|
||||
| PS4 | Theatrythm Final Fantasy: Final Bar Line | :| PC | Shrek 2 |
|
||||
| PC | Dragon's Dogma: Dark Arisen | :| NDS | SimCity Builder |
|
||||
| PC | Spiritfarer: Farewell Edition | :| NDS | Nintendogs: Labrador and Friends |
|
||||
| PC | Hades | :| PC | Yeti Sports |
|
||||
| PC | Final Fantasy VIII | :| PC | Asterix & Obelix XXL |
|
||||
| PC | Dungeon Munchies | :| GBA | Mario & Luigi: Superstar Saga |
|
||||
| PC | A Hat in Time | :| NDS | Mario & Luigi: Bowser's Story |
|
||||
| 3DS | Dragon Quest VIII | :| NDS | Bomberman Story DS |
|
||||
| PC | Ori and the Will of the Wisps | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky |
|
||||
| PC | Wizard of Legend | :| NDS | Pokemon Pearl |
|
||||
| PC | Disco Elysium (Director's Cut) | :| PSP | Crisis Core: Final Fantasy VII |
|
||||
| PC | Cuphead | :| PSP | Cars |
|
||||
| PC | Stanley Parable: Ultra Deluxe | :| NDS | Pokemon Platinum |
|
||||
| PC | Danganronpa: Trigger Happy Havoc | :| GBA | Sonic Battle |
|
||||
| PC | Yuppie Psycho | :| NDS | Hotel Dusk: Room 215 |
|
||||
| PC | Children of Morta | :| PC | Curse of Monkey Island |
|
||||
| PS4 | Kingdom Hearts 3 | :| PC | Edna & Harvey: The Breakout |
|
||||
| PC | Hyper Light Drifter | :| PC | Spy Fox in: Dry Cereal |
|
||||
| PC | Titanfall 2 | :| PC | Spy Fox in: Some Assembly Required |
|
||||
| PC | Kingdom Two Crowns | :| PC | Spy Fox in: Operation Ozone |
|
||||
| PC | Beyond Good and Evil | :| NDS | Kingdom Hearts 358/2 Days |
|
||||
| PC | Rayman Origins | :| NDS | Mario Hoops 3-on-3 |
|
||||
| PC | Asterix & Obelix XXL: Romastered | :| PC | N++ |
|
||||
| PC | Dishonored | :| NDS | Naruto: Ninja Council 3 |
|
||||
|______|________________________________________________________| :| PSP | Sid Meier's Pirates |
|
||||
| :| NDS | Pokemon Soul Silver |
|
||||
____________________________ | :| NDS | Pokemon Ranger |
|
||||
________________// \\________________| :| NDS | Professor Layton and the Curious Village |
|
||||
________________| Haunts my Dreams |________________| :| NDS | Professor Layton and the Diabolical Box |
|
||||
\\____________________________// [S005] | :| PC | Tachyon: The Fringe |
|
||||
| :| NDS | The Simpsons |
|
||||
______ ________________________________________________________| :| NDS | Spectrobes |
|
||||
|======|========================================================| :| PC | Trackmania Original |
|
||||
| NDS | The World Ends With You | :| GBA | Wario Ware |
|
||||
| PC | Return of the Obra Dinn | :| NDS | Yu-Gi-Oh!: World Championship 2008 |
|
||||
| PC | Voice of Cards: The Forsaken Maiden | :| PC | Rollercoaster Tycoon 2 |
|
||||
| PC | Distance | :| PC | Crashday |
|
||||
| PC | Forager | :|______|________________________________________________________|
|
||||
| PC | The Secret of Monkey Island | :|
|
||||
| PC | Monkey Island 2 | :| ____________________
|
||||
| GBA | Fire Emblem | :|____________________// \\____________________
|
||||
| PC | Deus Ex: Game of the Year | :|____________________| First PC |____________________
|
||||
| PS2 | Metal Gear Solid 2: Sons of Liberty | :| \\____________________// [P002]
|
||||
| PC | Bravery Network Online | :|
|
||||
| NES | Ninja Gaiden | :|______ ________________________________________________________
|
||||
| PS3 | Metal Gear Solid 3: Snake Eater | :|======|========================================================|
|
||||
| PS2 | Devil May Cry 3 | :| PC | Terraria |
|
||||
| PC | It Takes Two | :| PC | Minecraft |
|
||||
| PC | Potion Craft | :| PS3 | Little Big Planet |
|
||||
| PC | Grim Fandango Remastered | :| PS3 | F1 2015 |
|
||||
| PC | Hypnospace Outlaw | :| PC | Portal |
|
||||
| PC | FEZ | :| PC | Far Cry 3 |
|
||||
| PC | Tales of Arise | :| PC | Call of Duty: Modern Warfare 2 |
|
||||
| PC | One Step from Eden | :| PSP | Kingdom Hearts: Birth by Sleep |
|
||||
| PC | Death and Taxes | :| PSP | Wipeout Pulse |
|
||||
| PC | Quantum Protocol | :| PC | Worms 3D |
|
||||
| PC | Metal Gear Solid V: The Phantom Pain | :| PC | League of Legends |
|
||||
| PC | Metal Gear Solid IV: Guns of the Patriots | :| PC | Airmech |
|
||||
| PC | Lovely Planet | :| PC | Trackmania United Forever |
|
||||
| PC | Darkest Dungeon | :| PC | Party Hard |
|
||||
| PC | Kindred Spirits on the Roof | :| PC | Hotline Miami |
|
||||
| PC | Owlboy | :| PC | Papers, Please |
|
||||
| PC | Ys IX | :| SNES | Super Metroid |
|
||||
| PC | Faster Than Light | :| SNES | Super Mario RPG |
|
||||
| PC | Final Fantasy Type-0 | :|______|________________________________________________________|
|
||||
| PC | Final Fantasy IX | :|
|
||||
| PC | Final Fantasy X | :| _________________________________
|
||||
| PC | Final Fantasy XII | :|______________// \\_____________
|
||||
| PS3 | Final Fantasy XIII | :|______________| The Multiplayer Phase |_____________
|
||||
| PC | Lightning Returns: Final Fantasy XIII | :| \\_________________________________// [P003]
|
||||
| PC | Bastion | :|
|
||||
| PC | Crashlands | :|______ ________________________________________________________
|
||||
| NX | Xenoblade Chronicles | :|======|========================================================|
|
||||
| PC | Octopath Traveler | :| PC | Rocket League |
|
||||
| 3DS | Bravely Default | :| PC | Castle Crashers |
|
||||
| PC | Neon White | :| PC | FEAR 3 |
|
||||
| PC | Dungreed | :| PC | McPixel |
|
||||
| PC | Everspace | :| PC | 12 Is Better Than 6 |
|
||||
|______|________________________________________________________| :| PC | Stardew Valley |
|
||||
| :| PC | Worms Ultimate Mayhem |
|
||||
____________________________________ | :| PC | Counter-Strike: Global Offensive |
|
||||
____________// \\____________| :| PC | The Beginner's Guide |
|
||||
____________| Not Yet Owned (Wishlist) |____________| :| PC | Stanley's Parable |
|
||||
\\____________________________________// [S006] | :| PC | What Remains of Edith Finch |
|
||||
| :| PC | Ori and the Blind Forest |
|
||||
______ ________________________________________________________| :| PC | Realm of the Mad God |
|
||||
|======|========================================================| :| PC | Raft |
|
||||
| PC | Hollow Knight: Silksong | :| NX | The Legend of Zelda: Breath of the Wild |
|
||||
| PC | Starfetchers - Episode 1 | :| NX | Mario Odyssey |
|
||||
| PC | Ghost Song | :| NX | Snake Pass |
|
||||
| PC | Slay the Spire | :| NX | Mario Kart 8: Deluxe |
|
||||
| PC | V Rising | :|______|________________________________________________________|
|
||||
| PC | Beacon Pines | :|
|
||||
| PC | Switchcars | :| ________________
|
||||
| PC | Into the Breach | :|______________________// \\______________________
|
||||
| PS1 | Parasite Eve | :|______________________| 2020 |______________________
|
||||
| PC | Sifu | :| \\________________// [P004]
|
||||
| PS4 | Dark Souls 2 | :|
|
||||
| PS4 | Dark Souls 3 | :|______ ________________________________________________________
|
||||
| PC | Griftlands | :|======|========================================================|
|
||||
| PC | Tunic | :| PC | NieR: Automata |
|
||||
| PC | Nine Sols | :| PC | Celeste |
|
||||
| PC | Psychonauts | :| PC | Monster Hunter: World |
|
||||
| PC | Psychonauts 2 | :| PC | A Short Hike |
|
||||
| PC | Cave Story+ | :| PC | Risk of Rain 2 |
|
||||
| PS2 | God Hand | :| PC | Subnautica |
|
||||
| PC | Shovel Knight | :| PC | Among Us |
|
||||
| PS3 | Assassin's Creed | :| PC | Phasmophobia |
|
||||
| PC | Astalon: Tears of the Earth | :| PC | Helltaker |
|
||||
| PC | Bloodstained: Ritual of the Night | :| PC | For The King |
|
||||
| PC | Death Trash | :| PC | Poppy Kart |
|
||||
| PC | Trails Rising | :|______|________________________________________________________|
|
||||
| PC | Hellblade: Senua's Sacrifice | :|
|
||||
| PC | Factorio | :| ________________
|
||||
| PC | VA-11 Hall-A: Cyberpunk Bartender Action | :|______________________// \\______________________
|
||||
| PC | Katana Zero | :|______________________| 2021 |______________________
|
||||
| PC | art of rally | :| \\________________// [P005]
|
||||
| PC | Ooblets | :|
|
||||
| PC | Don't Escape: 4 Days to Survive | :|______ ________________________________________________________
|
||||
| PC | Journey | :|======|========================================================|
|
||||
| PC | Baba Is You | :| PS4 | Kingdom Hearts 0.2 Birth by Sleep |
|
||||
| PC | Ni no Kuni: Wrath of the White Witch | :| PC | NieR: Replicant ver.1.22474487139... |
|
||||
| PC | Ikenfell | :| PC | Portal Reloaded |
|
||||
| PC | Moonscars | :| GBA | Pokemon Gaia v3.2 |
|
||||
| PC | Control: Ultimate Edition | :| PC | Titan Souls |
|
||||
| PC | Carrion | :| PC | Midnight Castle Succubus |
|
||||
| PC | Haven | :| PC | Valheim |
|
||||
| PC | The Unliving | :| PC | Bad North |
|
||||
| PC | Persona 4 Golden | :| PC | Star Fetchers Prologue |
|
||||
| PC | Signs of the Sojourner | :| PC | Glyph |
|
||||
| PC | A Space for the Unbound | :| PC | The Hex |
|
||||
| PC | Card Shark | :| PC | Deepest Sword |
|
||||
| PC | Strange Horticulture | :| PC | Prologue For A Vacant Kingdom |
|
||||
| PC | Crowsworn | :| PC | Unsighted |
|
||||
| PC | MO: Astray | :| PC | Voice of Cards: The Isle Dragon Roars |
|
||||
| PC | Against The Storm | :| PC | To The Moon |
|
||||
| PC | Urbek City Builder | :|______|________________________________________________________|
|
||||
| PC | Hyper Light Breaker | :|
|
||||
| PC | Crypt of the Necrodancer | :| ________________
|
||||
| PC | Just Shapes & Beats | :|______________________// \\______________________
|
||||
| PC | Minit | :|______________________| 2022 |______________________
|
||||
| PC | A Short Hike | :| \\________________// [P006]
|
||||
| PC | Dysmantle | :|
|
||||
| PC | Omori | :|______ ________________________________________________________
|
||||
| PC | Sea of Stars | :|======|========================================================|
|
||||
| PC | The Last Faith | :| PC | Hollow Knight |
|
||||
| PC | Arctic Awakening | :| PC | Black Mesa |
|
||||
| PC | Stray | :| PC | Warhammer: Vermintide 2 |
|
||||
| PC | The Lords of the Fallen | :| PS4 | 13 Sentinels: Aegis Rim |
|
||||
| PC | Hunt the Night | :| PS4 | Bloodborne |
|
||||
| PC | Solar Ash | :| PC | Vampire Survivors |
|
||||
| PC | Nightingale | :| PC | Elden Ring |
|
||||
| PC | Nara: Facing Fire | :| PC | OPUS: Echo of Starsong |
|
||||
| PC | Death's Gambit: Afterlife | :| PC | Stacklands |
|
||||
| PC | SEASON: A letter to the future | :| PC | Paradise Killer |
|
||||
| PC | Unbound: Worlds Apart | :| PC | Webbed |
|
||||
| PC | Gloomwood | :| GBA | Pokemon Unbound |
|
||||
| PC | The Outbound Ghost | :| PC | Dark Souls: Remastered |
|
||||
| PC | Cassette Beasts | :| PC | Portal 2 |
|
||||
| PC | DREDGE | :| PC | Inscryption |
|
||||
| PC | Sackboy: A Big Adventure | :| PC | There is no Game: Wrong Dimension |
|
||||
| PC | Buck Up and Drive! | :| GBA | Castlevania - Aria Of Sorrow |
|
||||
| PC | Mandragora | :| PC | Half-Life 2 |
|
||||
| PC | Return to Monkey Island | :| PS3 | Drakengard 3 |
|
||||
| PC | Escape: The Endless Dogwatch | :| PC | Blasphemous |
|
||||
| PC | Aero GPX | :| PC | Sekiro - Shadows Die Twice (Demon Bell) |
|
||||
| PC | Final Fantasy XVI | :| PC | The Pedestrian |
|
||||
| PC | Replaced | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team |
|
||||
| PC | Earthblade | :| PC | Final Fantasy VII: New Threat 2.0 |
|
||||
|______|________________________________________________________| :| PC | OPUS: The Day We Found Earth |
|
||||
| :| PC | Need For Speed: Underground 2 |
|
||||
| :| PC | OPUS: Rocket of Whispers |
|
||||
| :| PC | Need for Speed: Undergound |
|
||||
| :| PC | Loop Hero |
|
||||
| :| PC | Sekiro: Shadows Die Twice (Demon Bell) (again) |
|
||||
| :| PC | Crisis Core -Final Fantasy VII- REUNION |
|
||||
| :| PS4 | Bloodborne (again) |
|
||||
| :|______|________________________________________________________|
|
||||
| :|
|
||||
| :| ________________
|
||||
| :|______________________// \\______________________
|
||||
| :|______________________| 2023 |______________________
|
||||
| :| \\________________// [P007]
|
||||
| :|
|
||||
| :|______ ________________________________________________________
|
||||
| :|======|========================================================|
|
||||
| :| 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 |
|
||||
| :|______|________________________________________________________|
|
||||
| :|
|
||||
_________________________ | :| _________________________ | :| ____________________
|
||||
__________________// \\_________________| :|_________________// \\_________________| :|____________________// \\____________________
|
||||
__________________| List of Shame |_________________| :|_________________| List of Pride |_________________| :|____________________| Wishlist |____________________
|
||||
\\_________________________// | :| \\_________________________// | :| \\____________________//
|
||||
| :| | :|
|
||||
- Currently Playing [S001] | :| - Early Days [P001] | :| - Not Yet Owned [W001]
|
||||
- Upcoming [S002] | :| - First PC [P002] | :|
|
||||
- Soon(TM) 2022 [S003] | :| - The Multiplayer Phase [P003] | :| _________________________
|
||||
- Unknown Future [S004] | :| - 2020 [P004] | :|__________________// \\_________________
|
||||
- Haunts my Dreams [S005] | :| - 2021 [P005] | :|__________________| Not Yet Owned |_________________
|
||||
- Not Yet Owned (Wishlist) [S006] | :| - 2022 [P006] | :| \\_________________________// [W001]
|
||||
| :| - 2023 [P007] | :|
|
||||
_____________________________ | :| | :|______ ________________________________________________________
|
||||
________________// \\_______________| :| ______________________ | :|======|========================================================|
|
||||
________________| Currently Playing |_______________| :|___________________// \\__________________| :| PC | Hollow Knight: Silksong |
|
||||
\\_____________________________// [S001] | :|___________________| Early Days |__________________| :| PC | Starfetchers - Episode 1 |
|
||||
| :| \\______________________// [P001] | :| PC | Ghost Song |
|
||||
______ ________________________________________________________| :| | :| PC | Slay the Spire |
|
||||
|======|========================================================| :|______ ________________________________________________________| :| PC | V Rising |
|
||||
| PC | Kingdom Two Crowns | :|======|========================================================| :| PC | Beacon Pines |
|
||||
| PC | The Sexy Brutale | :| GBC | Pokemon Silver | :| PC | Switchcars |
|
||||
| PC | CrossCode | :| GBC | Jungle Book: Mowgli's Adventure | :| PC | Into the Breach |
|
||||
|______|________________________________________________________| :| GBA | Pokemon Sapphire | :| PS1 | Parasite Eve |
|
||||
____________________ | :| GBC | Pokemon Trading Card Game | :| PC | Sifu |
|
||||
____________________// \\____________________| :| GBC | Pokemon Crystal | :| PS4 | Dark Souls 2 |
|
||||
____________________| Upcoming |____________________| :| PC | Colin McRae Rally 2.0 | :| PS4 | Dark Souls 3 |
|
||||
\\____________________// [S002] | :| PC | Anno 1602 | :| PC | Griftlands |
|
||||
| :| GBA | Pokemon Emerald | :| PC | Tunic |
|
||||
______ ________________________________________________________| :| PC | Need for Speed: Underground | :| PC | Nine Sols |
|
||||
|======|========================================================| :| PC | Need for Speed: Underground 2 | :| PC | Psychonauts |
|
||||
| PS4 | Persona 5 Royal | :| PC | Robin Hood: Legend of Sherwood | :| PC | Psychonauts 2 |
|
||||
| PC | Gnosia | :| PC | Driver | :| PC | Cave Story+ |
|
||||
| PC | Nioh: Complete Edition | :| PSP | Metal Gear Solid: Peacewalker | :| PS2 | God Hand |
|
||||
| PC | Death's Door | :| PSX | Metal Gear Solid | :| PC | Shovel Knight |
|
||||
| PC | SNKRX | :| PC | F1 '02 | :| PS3 | Assassin's Creed |
|
||||
| PC | BAD END THEATER | :| GBA | Kim Possible: Revenge of the Monkey Fist | :| PC | Astalon: Tears of the Earth |
|
||||
|______|________________________________________________________| :| PS2 | Dragon Quest VIII | :| PC | Bloodstained: Ritual of the Night |
|
||||
_________________________ | :| NDS | Final Fantasy III | :| PC | Death Trash |
|
||||
__________________// \\_________________| :| GBA | Final Fantasy I & II: Dawn of Souls | :| PC | Trails Rising |
|
||||
__________________| Soon(TM) 2022 |_________________| :| NDS | Final Fantasy IV | :| PC | Hellblade: Senua's Sacrifice |
|
||||
\\_________________________// [S003] | :| GBA | Final Fantasy V Advance | :| PC | Factorio |
|
||||
| :| GBA | Final Fantasy VI Advance | :| PC | VA-11 Hall-A: Cyberpunk Bartender Action |
|
||||
______ ________________________________________________________| :| PSP | Lego Star Wars | :| PC | Katana Zero |
|
||||
|======|========================================================| :| PSP | Lego Star Wars II | :| PC | art of rally |
|
||||
| PS4 | Kingdom Hearts: Dream Drops Distance HD | :| PSP | Monster Hunter Freedom Unite | :| PC | Ooblets |
|
||||
| PC | Wandersong | :| PSP | Dissidia: Final Fantasy | :| PC | Don't Escape: 4 Days to Survive |
|
||||
| PC | Outer Wilds | :| PSP | duodecim Dissidia: Final Fantasy | :| PC | Journey |
|
||||
| PS4 | Gravity Rush: Remastered | :| PS2 | Kingdom Hearts 2 | :| PC | Baba Is You |
|
||||
| PC | LISA | :| GBA | Kingdom Hearts: Chain of Memories | :| PC | Ni no Kuni: Wrath of the White Witch |
|
||||
|______|________________________________________________________| :| PS2 | Kingdom Hearts | :| PC | Ikenfell |
|
||||
__________________________ | :| PSP | Ratchet and Clank: Size Matters | :| PC | Moonscars |
|
||||
_________________// \\_________________| :| PSP | Exit | :| PC | Control: Ultimate Edition |
|
||||
_________________| Unknown Future |_________________| :| PC | Need for Speed: Most Wanted (2005) | :| PC | Carrion |
|
||||
\\__________________________// [S004] | :| GBA | The Legend of Zelda: Minish Cap | :| PC | Haven |
|
||||
| :| PC | Moorhuhn 3: ...Es Gibt Huhn! | :| PC | The Unliving |
|
||||
______ ________________________________________________________| :| GBA | Pokemon Pinball: Ruby & Sapphire | :| PC | Persona 4 Golden |
|
||||
|======|========================================================| :| NDS | Mario Kart DS | :| PC | Signs of the Sojourner |
|
||||
| PS4 | Theatrythm Final Fantasy: Final Bar Line | :| GBA | Pokemon Leaf Green | :| PC | A Space for the Unbound |
|
||||
| PC | Dragon's Dogma: Dark Arisen | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team | :| PC | Card Shark |
|
||||
| PC | Spiritfarer: Farewell Edition | :| PC | Shrek 2 | :| PC | Strange Horticulture |
|
||||
| PC | Hades | :| NDS | SimCity Builder | :| PC | Crowsworn |
|
||||
| PC | Final Fantasy VIII | :| NDS | Nintendogs: Labrador and Friends | :| PC | MO: Astray |
|
||||
| PC | Dungeon Munchies | :| PC | Yeti Sports | :| PC | Against The Storm |
|
||||
| PC | A Hat in Time | :| PC | Asterix & Obelix XXL | :| PC | Urbek City Builder |
|
||||
| 3DS | Dragon Quest VIII | :| GBA | Mario & Luigi: Superstar Saga | :| PC | Hyper Light Breaker |
|
||||
| PC | Ori and the Will of the Wisps | :| NDS | Mario & Luigi: Bowser's Story | :| PC | Crypt of the Necrodancer |
|
||||
| PC | Wizard of Legend | :| NDS | Bomberman Story DS | :| PC | Just Shapes & Beats |
|
||||
| PC | Disco Elysium (Director's Cut) | :| NDS | Pokemon Mystery Dungeon: Explorers of Sky | :| PC | Minit |
|
||||
| PC | Cuphead | :| NDS | Pokemon Pearl | :| PC | A Short Hike |
|
||||
| PC | Stanley Parable: Ultra Deluxe | :| PSP | Crisis Core: Final Fantasy VII | :| PC | Dysmantle |
|
||||
| PC | Danganronpa: Trigger Happy Havoc | :| PSP | Cars | :| PC | Omori |
|
||||
| PC | Yuppie Psycho | :| NDS | Pokemon Platinum | :| PC | Sea of Stars |
|
||||
| PC | Children of Morta | :| GBA | Sonic Battle | :| PC | The Last Faith |
|
||||
| PS4 | Kingdom Hearts 3 | :| NDS | Hotel Dusk: Room 215 | :| PC | Arctic Awakening |
|
||||
| PC | Hyper Light Drifter | :| PC | Curse of Monkey Island | :| PC | Stray |
|
||||
| PC | Titanfall 2 | :| PC | Edna & Harvey: The Breakout | :| PC | The Lords of the Fallen |
|
||||
| PC | Kingdom Two Crowns | :| PC | Spy Fox in: Dry Cereal | :| PC | Hunt the Night |
|
||||
| PC | Beyond Good and Evil | :| PC | Spy Fox in: Some Assembly Required | :| PC | Solar Ash |
|
||||
| PC | Rayman Origins | :| PC | Spy Fox in: Operation Ozone | :| PC | Nightingale |
|
||||
| PC | Asterix & Obelix XXL: Romastered | :| NDS | Kingdom Hearts 358/2 Days | :| PC | Nara: Facing Fire |
|
||||
| PC | Dishonored | :| NDS | Mario Hoops 3-on-3 | :| PC | Death's Gambit: Afterlife |
|
||||
|______|________________________________________________________| :| PC | N++ | :| PC | SEASON: A letter to the future |
|
||||
____________________________ | :| NDS | Naruto: Ninja Council 3 | :| PC | Unbound: Worlds Apart |
|
||||
________________// \\________________| :| PSP | Sid Meier's Pirates | :| PC | Gloomwood |
|
||||
________________| Haunts my Dreams |________________| :| NDS | Pokemon Soul Silver | :| PC | The Outbound Ghost |
|
||||
\\____________________________// [S005] | :| NDS | Pokemon Ranger | :| PC | Cassette Beasts |
|
||||
| :| NDS | Professor Layton and the Curious Village | :| PC | DREDGE |
|
||||
______ ________________________________________________________| :| NDS | Professor Layton and the Diabolical Box | :| PC | Sackboy: A Big Adventure |
|
||||
|======|========================================================| :| PC | Tachyon: The Fringe | :| PC | Buck Up and Drive! |
|
||||
| NDS | The World Ends With You | :| NDS | The Simpsons | :| PC | Mandragora |
|
||||
| PC | Return of the Obra Dinn | :| NDS | Spectrobes | :| PC | Return to Monkey Island |
|
||||
| PC | Voice of Cards: The Forsaken Maiden | :| PC | Trackmania Original | :| PC | Escape: The Endless Dogwatch |
|
||||
| PC | Distance | :| GBA | Wario Ware | :| PC | Aero GPX |
|
||||
| PC | Forager | :| NDS | Yu-Gi-Oh!: World Championship 2008 | :| PC | Final Fantasy XVI |
|
||||
| PC | The Secret of Monkey Island | :| PC | Rollercoaster Tycoon 2 | :| PC | Replaced |
|
||||
| PC | Monkey Island 2 | :| PC | Crashday | :| PC | Earthblade |
|
||||
| GBA | Fire Emblem | :|______|________________________________________________________| :|______|________________________________________________________|
|
||||
| PC | Deus Ex: Game of the Year | :| ____________________ | :|
|
||||
| PS2 | Metal Gear Solid 2: Sons of Liberty | :|____________________// \\___________________| :|
|
||||
| PC | Bravery Network Online | :|____________________| First PC |___________________| :|
|
||||
| NES | Ninja Gaiden | :| \\____________________// [P002] | :|
|
||||
| PS3 | Metal Gear Solid 3: Snake Eater | :| | :|
|
||||
| PS2 | Devil May Cry 3 | :|______ ________________________________________________________| :|
|
||||
| PC | It Takes Two | :|======|========================================================| :|
|
||||
| PC | Potion Craft | :| PC | Terraria | :|
|
||||
| PC | Grim Fandango Remastered | :| PC | Minecraft | :|
|
||||
| PC | Hypnospace Outlaw | :| PS3 | Little Big Planet | :|
|
||||
| PC | FEZ | :| PS3 | F1 2015 | :|
|
||||
| PC | Tales of Arise | :| PC | Portal | :|
|
||||
| PC | One Step from Eden | :| PC | Far Cry 3 | :|
|
||||
| PC | Death and Taxes | :| PC | Call of Duty: Modern Warfare 2 | :|
|
||||
| PC | Quantum Protocol | :| PSP | Kingdom Hearts: Birth by Sleep | :|
|
||||
| PC | Metal Gear Solid V: The Phantom Pain | :| PSP | Wipeout Pulse | :|
|
||||
| PC | Metal Gear Solid IV: Guns of the Patriots | :| PC | Worms 3D | :|
|
||||
| PC | Lovely Planet | :| PC | League of Legends | :|
|
||||
| PC | Darkest Dungeon | :| PC | Airmech | :|
|
||||
| PC | Kindred Spirits on the Roof | :| PC | Trackmania United Forever | :|
|
||||
| PC | Owlboy | :| PC | Party Hard | :|
|
||||
| PC | Ys IX | :| PC | Hotline Miami | :|
|
||||
| PC | Faster Than Light | :| PC | Papers, Please | :|
|
||||
| PC | Final Fantasy Type-0 | :| SNES | Super Metroid | :|
|
||||
| PC | Final Fantasy IX | :| SNES | Super Mario RPG | :|
|
||||
| PC | Final Fantasy X | :|______|________________________________________________________| :|
|
||||
| PC | Final Fantasy XII | :| _________________________________ | :|
|
||||
| PS3 | Final Fantasy XIII | :|_____________// \\_____________| :|
|
||||
| PC | Lightning Returns: Final Fantasy XIII | :|_____________| The Multiplayer Phase |_____________| :|
|
||||
| PC | Bastion | :| \\_________________________________// [P003] | :|
|
||||
| PC | Crashlands | :| | :|
|
||||
| NX | Xenoblade Chronicles | :|______ ________________________________________________________| :|
|
||||
| PC | Octopath Traveler | :|======|========================================================| :|
|
||||
| 3DS | Bravely Default | :| PC | Rocket League | :|
|
||||
| PC | Neon White | :| PC | Castle Crashers | :|
|
||||
| PC | Dungreed | :| PC | FEAR 3 | :|
|
||||
| PC | Everspace | :| PC | McPixel | :|
|
||||
|______|________________________________________________________| :| PC | 12 Is Better Than 6 | :|
|
||||
____________________________________ | :| PC | Stardew Valley | :|
|
||||
____________// \\____________| :| PC | Worms Ultimate Mayhem | :|
|
||||
____________| Not Yet Owned (Wishlist) |____________| :| PC | Counter-Strike: Global Offensive | :|
|
||||
\\____________________________________// [S006] | :| PC | The Beginner's Guide | :|
|
||||
| :| PC | Stanley's Parable | :|
|
||||
______ ________________________________________________________| :| PC | What Remains of Edith Finch | :|
|
||||
|======|========================================================| :| PC | Ori and the Blind Forest | :|
|
||||
| PC | Hollow Knight: Silksong | :| PC | Realm of the Mad God | :|
|
||||
| PC | Starfetchers - Episode 1 | :| PC | Raft | :|
|
||||
| PC | Ghost Song | :| NX | The Legend of Zelda: Breath of the Wild | :|
|
||||
| PC | Slay the Spire | :| NX | Mario Odyssey | :|
|
||||
| PC | V Rising | :| NX | Snake Pass | :|
|
||||
| PC | Beacon Pines | :| NX | Mario Kart 8: Deluxe | :|
|
||||
| PC | Switchcars | :|______|________________________________________________________| :|
|
||||
| PC | Into the Breach | :| ________________ | :|
|
||||
| PS1 | Parasite Eve | :|______________________// \\_____________________| :|
|
||||
| PC | Sifu | :|______________________| 2020 |_____________________| :|
|
||||
| PS4 | Dark Souls 2 | :| \\________________// [P004] | :|
|
||||
| PS4 | Dark Souls 3 | :| | :|
|
||||
| PC | Griftlands | :|______ ________________________________________________________| :|
|
||||
| PC | Tunic | :|======|========================================================| :|
|
||||
| PC | Nine Sols | :| PC | NieR: Automata | :|
|
||||
| PC | Psychonauts | :| PC | Celeste | :|
|
||||
| PC | Psychonauts 2 | :| PC | Monster Hunter: World | :|
|
||||
| PC | Cave Story+ | :| PC | A Short Hike | :|
|
||||
| PS2 | God Hand | :| PC | Risk of Rain 2 | :|
|
||||
| PC | Shovel Knight | :| PC | Subnautica | :|
|
||||
| PS3 | Assassin's Creed | :| PC | Among Us | :|
|
||||
| PC | Astalon: Tears of the Earth | :| PC | Phasmophobia | :|
|
||||
| PC | Bloodstained: Ritual of the Night | :| PC | Helltaker | :|
|
||||
| PC | Death Trash | :| PC | For The King | :|
|
||||
| PC | Trails Rising | :| PC | Poppy Kart | :|
|
||||
| PC | Hellblade: Senua's Sacrifice | :|______|________________________________________________________| :|
|
||||
| PC | Factorio | :| ________________ | :|
|
||||
| PC | VA-11 Hall-A: Cyberpunk Bartender Action | :|______________________// \\_____________________| :|
|
||||
| PC | Katana Zero | :|______________________| 2021 |_____________________| :|
|
||||
| PC | art of rally | :| \\________________// [P005] | :|
|
||||
| PC | Ooblets | :| | :|
|
||||
| PC | Don't Escape: 4 Days to Survive | :|______ ________________________________________________________| :|
|
||||
| PC | Journey | :|======|========================================================| :|
|
||||
| PC | Baba Is You | :| PS4 | Kingdom Hearts 0.2 Birth by Sleep | :|
|
||||
| PC | Ni no Kuni: Wrath of the White Witch | :| PC | NieR: Replicant ver.1.22474487139... | :|
|
||||
| PC | Ikenfell | :| PC | Portal Reloaded | :|
|
||||
| PC | Moonscars | :| GBA | Pokemon Gaia v3.2 | :|
|
||||
| PC | Control: Ultimate Edition | :| PC | Titan Souls | :|
|
||||
| PC | Carrion | :| PC | Midnight Castle Succubus | :|
|
||||
| PC | Haven | :| PC | Valheim | :|
|
||||
| PC | The Unliving | :| PC | Bad North | :|
|
||||
| PC | Persona 4 Golden | :| PC | Star Fetchers Prologue | :|
|
||||
| PC | Signs of the Sojourner | :| PC | Glyph | :|
|
||||
| PC | A Space for the Unbound | :| PC | The Hex | :|
|
||||
| PC | Card Shark | :| PC | Deepest Sword | :|
|
||||
| PC | Strange Horticulture | :| PC | Prologue For A Vacant Kingdom | :|
|
||||
| PC | Crowsworn | :| PC | Unsighted | :|
|
||||
| PC | MO: Astray | :| PC | Voice of Cards: The Isle Dragon Roars | :|
|
||||
| PC | Against The Storm | :| PC | To The Moon | :|
|
||||
| PC | Urbek City Builder | :|______|________________________________________________________| :|
|
||||
| PC | Hyper Light Breaker | :| ________________ | :|
|
||||
| PC | Crypt of the Necrodancer | :|______________________// \\_____________________| :|
|
||||
| PC | Just Shapes & Beats | :|______________________| 2022 |_____________________| :|
|
||||
| PC | Minit | :| \\________________// [P006] | :|
|
||||
| PC | A Short Hike | :| | :|
|
||||
| PC | Dysmantle | :|______ ________________________________________________________| :|
|
||||
| PC | Omori | :|======|========================================================| :|
|
||||
| PC | Sea of Stars | :| PC | Hollow Knight | :|
|
||||
| PC | The Last Faith | :| PC | Black Mesa | :|
|
||||
| PC | Arctic Awakening | :| PC | Warhammer: Vermintide 2 | :|
|
||||
| PC | Stray | :| PS4 | 13 Sentinels: Aegis Rim | :|
|
||||
| PC | The Lords of the Fallen | :| PS4 | Bloodborne | :|
|
||||
| PC | Hunt the Night | :| PC | Vampire Survivors | :|
|
||||
| PC | Solar Ash | :| PC | Elden Ring | :|
|
||||
| PC | Nightingale | :| PC | OPUS: Echo of Starsong | :|
|
||||
| PC | Nara: Facing Fire | :| PC | Stacklands | :|
|
||||
| PC | Death's Gambit: Afterlife | :| PC | Paradise Killer | :|
|
||||
| PC | SEASON: A letter to the future | :| PC | Webbed | :|
|
||||
| PC | Unbound: Worlds Apart | :| GBA | Pokemon Unbound | :|
|
||||
| PC | Gloomwood | :| PC | Dark Souls: Remastered | :|
|
||||
| PC | The Outbound Ghost | :| PC | Portal 2 | :|
|
||||
| PC | Cassette Beasts | :| PC | Inscryption | :|
|
||||
| PC | DREDGE | :| PC | There is no Game: Wrong Dimension | :|
|
||||
| PC | Sackboy: A Big Adventure | :| GBA | Castlevania - Aria Of Sorrow | :|
|
||||
| PC | Buck Up and Drive! | :| PC | Half-Life 2 | :|
|
||||
| PC | Mandragora | :| PS3 | Drakengard 3 | :|
|
||||
| PC | Return to Monkey Island | :| PC | Blasphemous | :|
|
||||
| PC | Escape: The Endless Dogwatch | :| PC | Sekiro - Shadows Die Twice (Demon Bell) | :|
|
||||
| PC | Aero GPX | :| PC | The Pedestrian | :|
|
||||
| PC | Final Fantasy XVI | :| GBA | Pokemon Mystery Dungeon: Red Rescue Team | :|
|
||||
| PC | Replaced | :| PC | Final Fantasy VII: New Threat 2.0 | :|
|
||||
| PC | Earthblade | :| PC | OPUS: The Day We Found Earth | :|
|
||||
|______|________________________________________________________| :| PC | Need For Speed: Underground 2 | :|
|
||||
| :| PC | OPUS: Rocket of Whispers | :|
|
||||
| :| PC | Need for Speed: Undergound | :|
|
||||
| :| PC | Loop Hero | :|
|
||||
| :| PC | Sekiro: Shadows Die Twice (Demon Bell) (again) | :|
|
||||
| :| PC | Crisis Core -Final Fantasy VII- REUNION | :|
|
||||
| :| PS4 | Bloodborne (again) | :|
|
||||
| :|______|________________________________________________________| :|
|
||||
| :| ________________ | :|
|
||||
| :|______________________// \\_____________________| :|
|
||||
| :|______________________| 2023 |_____________________| :|
|
||||
| :| \\________________// [P007] | :|
|
||||
| :| | :|
|
||||
| :|______ ________________________________________________________| :|
|
||||
| :|======|========================================================| :|
|
||||
| :| PC | Pyre | :|
|
||||
| :| PC | The Pinball Wizard | :|
|
||||
| :| PC | Sayonara Wild Hearts | :|
|
||||
| :| PC | Manifold Garden | :|
|
||||
| :| PC | Bloodstained: Curse of the Moon | :|
|
||||
| :| PC | Undertale | :|
|
||||
| :|______|________________________________________________________| :|
|
|
@ -172,170 +172,3 @@
|
|||
platform: "PC"
|
||||
- name: "Everspace"
|
||||
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"
|
||||
|
|
@ -0,0 +1,169 @@
|
|||
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"
|
Loading…
Reference in New Issue