Update from obsidian - thinkpad
Affected files: .obsidian/community-plugins.json .obsidian/plugins/dataview/main.js .obsidian/plugins/dataview/manifest.json .obsidian/plugins/dataview/styles.css .obsidian/plugins/dbfolder/data.json .obsidian/plugins/dbfolder/main.js .obsidian/plugins/dbfolder/manifest.json .obsidian/plugins/dbfolder/styles.css .obsidian/plugins/obsidian-projects/data.json .obsidian/workspace.json games/Castlevania symphony of the Night.md games/Mega Man X2.md games/batman-arkham-asylum-game-of-the-year-edition.md games/batman-arkham-city.md games/celeste.md games/god-of-war--1.md games/god-of-war-ii.md games/god-of-war.md games/hollow-knight.md games/metroid-prime-remastered.md games/monster-hunter-rise.md games/nier-automata.md games/persona-4-golden--1.md games/persona-5-royal.md games/persona-5.md games/super-mario-galaxy-2.md games/the-elder-scrolls-v-skyrim.md games/the-last-of-us-part-ii.md games/the-last-of-us.md games/the-legend-of-zelda-twilight-princess--1.md games/uncharted-2-among-thieves.md games/uncharted-3-drake-s-deception.md games/uncharted-drake-s-fortune.md projects/games.md
This commit is contained in:
parent
4384f6d9dc
commit
d02c99f724
34 changed files with 22467 additions and 113 deletions
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
|
|
@ -4,5 +4,7 @@
|
||||||
"obsidian-style-settings",
|
"obsidian-style-settings",
|
||||||
"obsidian-projects",
|
"obsidian-projects",
|
||||||
"obsidian-kanban",
|
"obsidian-kanban",
|
||||||
"editor-width-slider"
|
"editor-width-slider",
|
||||||
|
"dbfolder",
|
||||||
|
"dataview"
|
||||||
]
|
]
|
||||||
19888
.obsidian/plugins/dataview/main.js
vendored
Normal file
19888
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
10
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"id": "dataview",
|
||||||
|
"name": "Dataview",
|
||||||
|
"version": "0.5.56",
|
||||||
|
"minAppVersion": "0.13.11",
|
||||||
|
"description": "Complex data views for the data-obsessed.",
|
||||||
|
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||||
|
"authorUrl": "https://github.com/blacksmithgu",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
|
|
@ -0,0 +1,146 @@
|
||||||
|
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||||
|
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||||
|
line-height: 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-language-dataview {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Table Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
/* List View Default Styling; rendered internally as a table. */
|
||||||
|
.table-view-table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr:hover {
|
||||||
|
background-color: var(--text-selection) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr > th {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: larger;
|
||||||
|
border-top: none;
|
||||||
|
border-left: none;
|
||||||
|
border-right: none;
|
||||||
|
border-bottom: solid;
|
||||||
|
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr > td {
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
font-weight: 400;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table ul, .table-view-table ol {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Rendered value styling for any view. */
|
||||||
|
.dataview-result-list-root-ul {
|
||||||
|
padding: 0em !important;
|
||||||
|
margin: 0em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-result-list-ul {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Generic grouping styling. */
|
||||||
|
.dataview.result-group {
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************/
|
||||||
|
/** Inline Fields **/
|
||||||
|
/*******************/
|
||||||
|
|
||||||
|
.dataview.inline-field-key {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-standalone-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/** Task View **/
|
||||||
|
/***************/
|
||||||
|
|
||||||
|
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
transition: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
box-shadow: -40px 0 0 var(--text-selection);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Error Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
div.dataview-error-box {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 150px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 4px dashed var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-error-message {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************/
|
||||||
|
/** Additional Metadata **/
|
||||||
|
/*************************/
|
||||||
|
|
||||||
|
.dataview.small-text {
|
||||||
|
font-size: smaller;
|
||||||
|
color: var(--text-muted);
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::before {
|
||||||
|
content: "(";
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::after {
|
||||||
|
content: ")";
|
||||||
|
}
|
||||||
48
.obsidian/plugins/dbfolder/data.json
vendored
Normal file
48
.obsidian/plugins/dbfolder/data.json
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
"global_settings": {
|
||||||
|
"enable_debug_mode": false,
|
||||||
|
"enable_show_state": false,
|
||||||
|
"enable_row_shadow": true,
|
||||||
|
"enable_auto_update": true,
|
||||||
|
"show_search_bar_by_default": false,
|
||||||
|
"logger_level_info": "error",
|
||||||
|
"csv_file_header_key": "File",
|
||||||
|
"media_settings": {
|
||||||
|
"link_alias_enabled": true,
|
||||||
|
"enable_media_view": true,
|
||||||
|
"width": 100,
|
||||||
|
"height": 100
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"local_settings": {
|
||||||
|
"remove_field_when_delete_column": true,
|
||||||
|
"cell_size": "normal",
|
||||||
|
"sticky_first_column": true,
|
||||||
|
"group_folder_column": "",
|
||||||
|
"remove_empty_folders": false,
|
||||||
|
"automatically_group_files": false,
|
||||||
|
"hoist_files_with_empty_attributes": true,
|
||||||
|
"show_metadata_created": false,
|
||||||
|
"show_metadata_modified": true,
|
||||||
|
"show_metadata_tasks": false,
|
||||||
|
"show_metadata_inlinks": false,
|
||||||
|
"show_metadata_outlinks": false,
|
||||||
|
"show_metadata_tags": true,
|
||||||
|
"source_data": "current_folder",
|
||||||
|
"source_form_result": "",
|
||||||
|
"source_destination_path": "/",
|
||||||
|
"row_templates_folder": "templates",
|
||||||
|
"current_row_template": "",
|
||||||
|
"pagination_size": 10,
|
||||||
|
"font_size": 16,
|
||||||
|
"enable_js_formulas": false,
|
||||||
|
"formula_folder_path": "/",
|
||||||
|
"inline_default": false,
|
||||||
|
"inline_new_position": "last_field",
|
||||||
|
"date_format": "yyyy-MM-dd",
|
||||||
|
"datetime_format": "yyyy-MM-dd HH:mm:ss",
|
||||||
|
"metadata_date_format": "yyyy-MM-dd HH:mm:ss",
|
||||||
|
"enable_footer": false,
|
||||||
|
"implementation": "default"
|
||||||
|
}
|
||||||
|
}
|
||||||
121
.obsidian/plugins/dbfolder/main.js
vendored
Normal file
121
.obsidian/plugins/dbfolder/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dbfolder/manifest.json
vendored
Normal file
11
.obsidian/plugins/dbfolder/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"id": "dbfolder",
|
||||||
|
"name": "DB Folder",
|
||||||
|
"version": "3.4.0",
|
||||||
|
"minAppVersion": "1.1.1",
|
||||||
|
"description": "Folder with the capability to store and retrieve data from a folder like database",
|
||||||
|
"author": "RafaelGB",
|
||||||
|
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",
|
||||||
|
"isDesktopOnly": false,
|
||||||
|
"fundingUrl": "https://www.buymeacoffee.com/5tsytn22v9Z"
|
||||||
|
}
|
||||||
1864
.obsidian/plugins/dbfolder/styles.css
vendored
Normal file
1864
.obsidian/plugins/dbfolder/styles.css
vendored
Normal file
File diff suppressed because it is too large
Load diff
34
.obsidian/plugins/obsidian-projects/data.json
vendored
34
.obsidian/plugins/obsidian-projects/data.json
vendored
|
|
@ -58,6 +58,40 @@
|
||||||
],
|
],
|
||||||
"id": "693ec588-0a43-4498-9428-7337ddef9516",
|
"id": "693ec588-0a43-4498-9428-7337ddef9516",
|
||||||
"name": "personal-page"
|
"name": "personal-page"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldConfig": {},
|
||||||
|
"defaultName": "",
|
||||||
|
"templates": [],
|
||||||
|
"excludedNotes": [],
|
||||||
|
"isDefault": false,
|
||||||
|
"dataSource": {
|
||||||
|
"kind": "folder",
|
||||||
|
"config": {
|
||||||
|
"path": "games",
|
||||||
|
"recursive": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"newNotesFolder": "",
|
||||||
|
"views": [
|
||||||
|
{
|
||||||
|
"config": {},
|
||||||
|
"filter": {
|
||||||
|
"conditions": []
|
||||||
|
},
|
||||||
|
"colors": {
|
||||||
|
"conditions": []
|
||||||
|
},
|
||||||
|
"sort": {
|
||||||
|
"criteria": []
|
||||||
|
},
|
||||||
|
"id": "29122e1a-d208-4203-ba3b-6b3373595e5b",
|
||||||
|
"name": "Table",
|
||||||
|
"type": "table"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"id": "3666070f-21b0-4bcd-97b9-54b21dde9fdd",
|
||||||
|
"name": "Games"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"preferences": {
|
"preferences": {
|
||||||
|
|
|
||||||
35
.obsidian/workspace.json
vendored
35
.obsidian/workspace.json
vendored
|
|
@ -4,15 +4,19 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "f88ca8150de95079",
|
"id": "ad6fbf876e5dec40",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "8155f681e9f56caf",
|
"id": "772303a551e0940a",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "empty",
|
"type": "markdown",
|
||||||
"state": {}
|
"state": {
|
||||||
|
"file": "games/Castlevania symphony of the Night.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -65,7 +69,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 241
|
"width": 245
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "fca86750b2867923",
|
"id": "fca86750b2867923",
|
||||||
|
|
@ -81,6 +85,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
|
"file": "games/Castlevania symphony of the Night.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
|
@ -97,6 +102,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
|
"file": "games/Castlevania symphony of the Night.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
|
|
@ -118,7 +124,9 @@
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {}
|
"state": {
|
||||||
|
"file": "games/Castlevania symphony of the Night.md"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -146,12 +154,18 @@
|
||||||
"obsidian-excalidraw-plugin:Create new drawing": false,
|
"obsidian-excalidraw-plugin:Create new drawing": false,
|
||||||
"zk-prefixer:Create new unique note": false,
|
"zk-prefixer:Create new unique note": false,
|
||||||
"workspaces:Manage workspace layouts": false,
|
"workspaces:Manage workspace layouts": false,
|
||||||
"obsidian-projects:Open projects": false
|
"obsidian-projects:Open projects": false,
|
||||||
|
"dbfolder:Create a new database table": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "8155f681e9f56caf",
|
"active": "772303a551e0940a",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"projects/games.md",
|
||||||
|
"games/Castlevania symphony of the Night.md",
|
||||||
|
"games/the-elder-scrolls-v-skyrim.md",
|
||||||
|
"games/metroid-prime-remastered.md",
|
||||||
"projects/personal-page.md",
|
"projects/personal-page.md",
|
||||||
|
"games/Untitled database.md",
|
||||||
"projects/todos-notes/Update dots.md",
|
"projects/todos-notes/Update dots.md",
|
||||||
"projects/todos.md",
|
"projects/todos.md",
|
||||||
"projects/todos-notes/Update tmux config.md",
|
"projects/todos-notes/Update tmux config.md",
|
||||||
|
|
@ -173,14 +187,9 @@
|
||||||
"projects/todos-notes/Improve VPN setup.md",
|
"projects/todos-notes/Improve VPN setup.md",
|
||||||
"projects/todos-notes/Setup notification services.md",
|
"projects/todos-notes/Setup notification services.md",
|
||||||
"projects/todos-notes/Rewrite neovim config.md",
|
"projects/todos-notes/Rewrite neovim config.md",
|
||||||
"templates/todo.md",
|
|
||||||
"projects/homelab-notes/Untitled",
|
"projects/homelab-notes/Untitled",
|
||||||
"blog/Pokerus Project.md",
|
|
||||||
"projects/todos-notes/Improve Remote Access Setup.md",
|
|
||||||
"projects/todos-notes",
|
"projects/todos-notes",
|
||||||
"notes/utils",
|
"notes/utils",
|
||||||
"notes/foo.md",
|
|
||||||
"notes/thoughts/Depression.md",
|
|
||||||
"blog",
|
"blog",
|
||||||
"projects/personal-page-notes/Landing_Page.excalidraw",
|
"projects/personal-page-notes/Landing_Page.excalidraw",
|
||||||
"projects/notes/Untitled",
|
"projects/notes/Untitled",
|
||||||
|
|
|
||||||
35
games/Castlevania symphony of the Night.md
Normal file
35
games/Castlevania symphony of the Night.md
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
---
|
||||||
|
Status: Playing
|
||||||
|
Genres:
|
||||||
|
- Platform
|
||||||
|
- Metroidvania
|
||||||
|
---
|
||||||
|
|
||||||
|
So far so good
|
||||||
|
|
||||||
|
At first it was a little disoriating because I didn't event have a goal in mind, okay, alucard wants to destroy the castle, but how?? maybe I need to kill dracula, so I wonder around until I found him??
|
||||||
|
|
||||||
|
nonetheless I just start going around and was find by myself, it took me a while to actually find a key that opens new paths though, and I need to get it from the shop, that was strange, it was to be this way?? or did I miss it and was made available in the shop??
|
||||||
|
|
||||||
|
Anyway, I never round out of options to go, and after doing somo back and forts, the castle is not that big to navigate but not that small eather, is just that sweet spot so you can navigate around even with the slow walking animation of alucard.
|
||||||
|
|
||||||
|
with the shop I also found the map, I like that thats reveals the principals areas of the castle, but not all of them (you can see some dors that leaves to nowhere), a make on doors would be appreciated though, and not with the lock type (like blue doors or bars), only the doors but I let it slip as is one of the game that started everything
|
||||||
|
|
||||||
|
What I think would have make this game better is a little guidance of where to go or what to do. Sure I managed but maybe a little hint would have been apreciated, some ideas:
|
||||||
|
|
||||||
|
- After the encounter with dead, alucard could have said something on the lines of "without my abilities I'm gonna need help, maybe the old man in the library has something for me..." so I would thing "Oh, I need to find the library".
|
||||||
|
- This would change anything gameplay wise because the encounter with dead is in the berry begining of the game and I don't know where the fuck is the library or where to search for it, but it would give me a more concrete objective
|
||||||
|
- Maria could have said something related to the doors and how "his magic abilities help her" or something
|
||||||
|
- idk but I think it would made the encounter a little more meaningful and also gives you a little hint
|
||||||
|
|
||||||
|
I said this because I spend some time trying to do a jump with the wolf that was imposible, is not a bad thing, it's a classic metroidvania moment, but since you can do the first jump in clock tower from the outer wall but not the second it seems like I was doing something wrong instead of "it's not that way", If I would have the hint of the blue doors maybe I would have leave sooner, idk
|
||||||
|
|
||||||
|
I'm really interested in the big clock in the center, in that room the left angel moves when the minutes are even, maybe I have to go back when the hours are even??
|
||||||
|
|
||||||
|
I spend some time trying to figure it how the clock works, I though it was a puzzle between the clocks in the left and right room but I could interact with them, then I though I could move the hands of the clock by myself because the minutes move when I attacked, but after some time I realize it was a coincidence, then I though "okay, maybe the further I go into the game, the later is in the night", you know, like, the game happends in one night, but the minute moves again by just being there
|
||||||
|
|
||||||
|
So how or why did it move?? I waited some time and... it moved it on it's own... like a real clock... Does this thing have a real seance of time!? but i'm not playing at 1:20 (neither AM/PM) and also the the PS1 didn't have an internal clock (not to my knoledge), and then it hits me...
|
||||||
|
|
||||||
|
I pause the game and yea, it's my playtime, I have been playing for 1 hours and 25 minutes, and that clock interacts with it.
|
||||||
|
|
||||||
|
I think that's brilliant, I big landmark (even more since there is the first time you encounter with maria), someplace you really remember, and a pourpose to get back to it eventually. I'm waiting to pass the 2 hours to go back and see what's happend when the hours and minutes are even, maybe nothing, but it's a little adventure to look forward to, and that is what make a metroidvania so good
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
---
|
||||||
|
Status: Played
|
||||||
|
---
|
||||||
Siento que este es una entrada particular en la saga mega man en general, para más contexto, jugue este juego luego de haber jugado mega man clasico del 1-8 y mega man maveric hunter x (remake de MMX1) y hasta el momento el loop del juego siempre ha sido el mismo: prueba y error hasta encontrar a un boss que pueda matar, luego prueba y error de nuevo hasta encontrar la debilidad y así, pero este juego introduce unos bosses opcionales que me hizo cambiar el aproach del juego.
|
Siento que este es una entrada particular en la saga mega man en general, para más contexto, jugue este juego luego de haber jugado mega man clasico del 1-8 y mega man maveric hunter x (remake de MMX1) y hasta el momento el loop del juego siempre ha sido el mismo: prueba y error hasta encontrar a un boss que pueda matar, luego prueba y error de nuevo hasta encontrar la debilidad y así, pero este juego introduce unos bosses opcionales que me hizo cambiar el aproach del juego.
|
||||||
|
|
||||||
Mientras que con los juegos anteriores solo "rusheaba" el juego hasta eventualmente terminarlo, encontrando ocacionalmente algo memorable o un pico de dificultad, era un o brainer en donde solo intentaba hasta que lo lograba.
|
Mientras que con los juegos anteriores solo "rusheaba" el juego hasta eventualmente terminarlo, encontrando ocacionalmente algo memorable o un pico de dificultad, era un o brainer en donde solo intentaba hasta que lo lograba.
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "Batman: Arkham Asylum - Game of the Year Edition"
|
alias: "Batman: Arkham Asylum - Game of the Year Edition"
|
||||||
Title: "Batman: Arkham Asylum - Game of the Year Edition"
|
Title: "Batman: Arkham Asylum - Game of the Year Edition"
|
||||||
Release: 2010-03-26
|
Release: 2010-03-26
|
||||||
Developer: "Rocksteady Studios"
|
Developer: Rocksteady Studios
|
||||||
Genres:
|
Genres:
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "Batman: Arkham City"
|
alias: "Batman: Arkham City"
|
||||||
Title: "Batman: Arkham City"
|
Title: "Batman: Arkham City"
|
||||||
Release: 2011-10-18
|
Release: 2011-10-18
|
||||||
Developer: "Rocksteady Studios"
|
Developer: Rocksteady Studios
|
||||||
Genres:
|
Genres:
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "Celeste"
|
alias: Celeste
|
||||||
Title: "Celeste"
|
Title: Celeste
|
||||||
Release: 2018-01-25
|
Release: 2018-01-25
|
||||||
Developer: "Extremely OK Games"
|
Developer: Extremely OK Games
|
||||||
Genres:
|
Genres:
|
||||||
- Platform
|
- Platform
|
||||||
- Adventure
|
- Adventure
|
||||||
- Indie
|
- Indie
|
||||||
Status: Played
|
Status: Played
|
||||||
Times_Played: 3
|
Times_Played: 3
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/ar7u5.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/ar7u5.jpg
|
||||||
banner_y: 0.496
|
banner_y: 0.496
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "God of War"
|
alias: God of War
|
||||||
Title: "God of War"
|
Title: God of War
|
||||||
Release: 2018-04-20
|
Release: 2018-04-20
|
||||||
Developer: "SIE Santa Monica Studio"
|
Developer: SIE Santa Monica Studio
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Played
|
Status: Played
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/vpr6s4gboxxmnhkdmqdg.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/vpr6s4gboxxmnhkdmqdg.jpg
|
||||||
banner_y: 0.296
|
banner_y: 0.296
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "God of War II"
|
alias: God of War II
|
||||||
Title: "God of War II"
|
Title: God of War II
|
||||||
Release: 2007-03-13
|
Release: 2007-03-13
|
||||||
Developer: "SIE Santa Monica Studio"
|
Developer: SIE Santa Monica Studio
|
||||||
Genres:
|
Genres:
|
||||||
- Platform
|
- Platform
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Played
|
Status: Played
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/yn4dkxb3hl1sa4bzsew6.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/yn4dkxb3hl1sa4bzsew6.jpg
|
||||||
banner_y: 0.288
|
banner_y: 0.288
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "God of War"
|
alias: God of War
|
||||||
Title: "God of War"
|
Title: God of War
|
||||||
Release: 2005-03-22
|
Release: 2005-03-22
|
||||||
Developer: "SCE Santa Monica Studio"
|
Developer: SCE Santa Monica Studio
|
||||||
Genres:
|
Genres:
|
||||||
- Strategy
|
- Strategy
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Played
|
Status: Played
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/co54jl.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/co54jl.jpg
|
||||||
banner_y: 0.06
|
banner_y: 0.06
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "Hollow Knight"
|
alias: Hollow Knight
|
||||||
Title: "Hollow Knight"
|
Title: Hollow Knight
|
||||||
Release: 2017-02-24
|
Release: 2017-02-24
|
||||||
Developer: "Team Cherry"
|
Developer: Team Cherry
|
||||||
Genres:
|
Genres:
|
||||||
- Platform
|
- Platform
|
||||||
- Adventure
|
- Adventure
|
||||||
- Indie
|
- Indie
|
||||||
Status: Played
|
Status: Played
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/rdlcclxpscvrpkiq5kkv.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/rdlcclxpscvrpkiq5kkv.jpg
|
||||||
banner_y: 0.756
|
banner_y: 0.756
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "Metroid Prime Remastered"
|
alias: Metroid Prime Remastered
|
||||||
Title: "Metroid Prime Remastered"
|
Title: Metroid Prime Remastered
|
||||||
Release: 2023-02-08
|
Release: 2023-02-08
|
||||||
Developer: "Retro Studios"
|
Developer: Retro Studios
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Platform
|
- Platform
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Playing
|
Status: Playing
|
||||||
Times_Played: 0
|
Times_Played: 0
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/ar2605.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/ar2605.jpg
|
||||||
banner_y: 0.052
|
banner_y: 0.052
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
alias: "Monster Hunter Rise"
|
alias: Monster Hunter Rise
|
||||||
Title: "Monster Hunter Rise"
|
Title: Monster Hunter Rise
|
||||||
Release: 2021-03-26
|
Release: 2021-03-26
|
||||||
Developer: "Capcom Development Division 2"
|
Developer: Capcom Development Division 2
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Always Playable
|
Status: Always Playable
|
||||||
Times_Played: -1
|
Times_Played: -1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/ar1ppe.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/ar1ppe.jpg
|
||||||
banner_y: 0.884
|
banner_y: 0.884
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
alias: "NieR: Automata"
|
alias: "NieR: Automata"
|
||||||
Title: "NieR: Automata"
|
Title: "NieR: Automata"
|
||||||
Release: 2017-02-23
|
Release: 2017-02-23
|
||||||
Developer: "PlatinumGames"
|
Developer: PlatinumGames
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Hack and slash/Beat 'em up
|
- Hack and slash/Beat 'em up
|
||||||
Status: Played
|
Status: Played
|
||||||
Owned: Lended to me
|
Owned: Lended to me
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://cdn2.steamgriddb.com/file/sgdb-cdn/thumb/342cc2299d027de7551768d5e5ddc12c.jpg"
|
banner: https://cdn2.steamgriddb.com/file/sgdb-cdn/thumb/342cc2299d027de7551768d5e5ddc12c.jpg
|
||||||
banner_y: 0.184
|
banner_y: 0.184
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
---
|
---
|
||||||
alias: "Persona 4 Golden"
|
alias: Persona 4 Golden
|
||||||
Title: "Persona 4 Golden"
|
Title: Persona 4 Golden
|
||||||
Release: 2020-06-13
|
Release: 2020-06-13
|
||||||
Developer: "Atlus"
|
Developer: Atlus
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Simulator
|
- Simulator
|
||||||
- Adventure
|
- Adventure
|
||||||
- Visual Novel
|
- Visual Novel
|
||||||
Status: On Line
|
Status: Playing
|
||||||
Owned: digitally
|
Owned: digitally
|
||||||
Times_Played: 0
|
Times_Played: 0
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
alias: "Persona 5 Royal"
|
alias: Persona 5 Royal
|
||||||
Title: "Persona 5 Royal"
|
Title: Persona 5 Royal
|
||||||
Release: 2019-10-31
|
Release: 2019-10-31
|
||||||
Developer: "Atlus"
|
Developer: Atlus
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Turn-based strategy (TBS)
|
- Turn-based strategy (TBS)
|
||||||
|
|
@ -10,7 +10,7 @@ Genres:
|
||||||
Status: Played
|
Status: Played
|
||||||
Owned: Lended to me
|
Owned: Lended to me
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://w.wallhaven.cc/full/2k/wallhaven-2kq85g.jpg"
|
banner: https://w.wallhaven.cc/full/2k/wallhaven-2kq85g.jpg
|
||||||
banner_y: 0.396
|
banner_y: 0.396
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
alias: "Persona 5"
|
alias: Persona 5
|
||||||
Title: "Persona 5"
|
Title: Persona 5
|
||||||
Release: 2016-09-15
|
Release: 2016-09-15
|
||||||
Developer: "Atlus"
|
Developer: Atlus
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Turn-based strategy (TBS)
|
- Turn-based strategy (TBS)
|
||||||
|
|
@ -10,7 +10,7 @@ Genres:
|
||||||
Status: Played
|
Status: Played
|
||||||
Owned: Not owned
|
Owned: Not owned
|
||||||
Times_Played: 2
|
Times_Played: 2
|
||||||
banner: "https://w.wallhaven.cc/full/ey/wallhaven-eymdww.jpg"
|
banner: https://w.wallhaven.cc/full/ey/wallhaven-eymdww.jpg
|
||||||
banner_y: 0.324
|
banner_y: 0.324
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
alias: "Super Mario Galaxy 2"
|
alias: Super Mario Galaxy 2
|
||||||
Title: "Super Mario Galaxy 2"
|
Title: Super Mario Galaxy 2
|
||||||
Release: 2010-05-23
|
Release: 2010-05-23
|
||||||
Developer: "Nintendo EAD"
|
Developer: Nintendo EAD
|
||||||
Genres:
|
Genres:
|
||||||
- Platform
|
- Platform
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "The Elder Scrolls V: Skyrim"
|
alias: "The Elder Scrolls V: Skyrim"
|
||||||
Title: "The Elder Scrolls V: Skyrim"
|
Title: "The Elder Scrolls V: Skyrim"
|
||||||
Release: 2011-11-10
|
Release: 2011-11-10
|
||||||
Developer: "Bethesda Game Studios"
|
Developer: Bethesda Game Studios
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
alias: "The Last of Us Part II"
|
alias: The Last of Us Part II
|
||||||
Title: "The Last of Us Part II"
|
Title: The Last of Us Part II
|
||||||
Release: 2020-06-19
|
Release: 2020-06-19
|
||||||
Developer: "Naughty Dog"
|
Developer: Naughty Dog
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
alias: "The Last of Us"
|
alias: The Last of Us
|
||||||
Title: "The Last of Us"
|
Title: The Last of Us
|
||||||
Release: 2013-06-14
|
Release: 2013-06-14
|
||||||
Developer: "Naughty Dog"
|
Developer: Naughty Dog
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Adventure
|
- Adventure
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
alias: "The Legend of Zelda: Twilight Princess"
|
alias: "The Legend of Zelda: Twilight Princess"
|
||||||
Title: "The Legend of Zelda: Twilight Princess"
|
Title: "The Legend of Zelda: Twilight Princess"
|
||||||
Release: 2006-11-19
|
Release: 2006-11-19
|
||||||
Developer: "Nintendo EAD Software Development Group No.3"
|
Developer: Nintendo EAD Software Development Group No.3
|
||||||
Genres:
|
Genres:
|
||||||
- Role-playing (RPG)
|
- Role-playing (RPG)
|
||||||
- Adventure
|
- Adventure
|
||||||
Status: Played
|
Status: Played
|
||||||
Owned: Physically
|
Owned: Physically
|
||||||
Times_Played: 1
|
Times_Played: 1
|
||||||
banner: "https://images.igdb.com/igdb/image/upload/t_original/ar21yd.jpg"
|
banner: https://images.igdb.com/igdb/image/upload/t_original/ar21yd.jpg
|
||||||
banner_y: 0.124
|
banner_y: 0.124
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "Uncharted 2: Among Thieves"
|
alias: "Uncharted 2: Among Thieves"
|
||||||
Title: "Uncharted 2: Among Thieves"
|
Title: "Uncharted 2: Among Thieves"
|
||||||
Release: 2009-10-13
|
Release: 2009-10-13
|
||||||
Developer: "Naughty Dog"
|
Developer: Naughty Dog
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Platform
|
- Platform
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "Uncharted 3: Drake's Deception"
|
alias: "Uncharted 3: Drake's Deception"
|
||||||
Title: "Uncharted 3: Drake's Deception"
|
Title: "Uncharted 3: Drake's Deception"
|
||||||
Release: 2011-11-01
|
Release: 2011-11-01
|
||||||
Developer: "Naughty Dog"
|
Developer: Naughty Dog
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Platform
|
- Platform
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
alias: "Uncharted: Drake's Fortune"
|
alias: "Uncharted: Drake's Fortune"
|
||||||
Title: "Uncharted: Drake's Fortune"
|
Title: "Uncharted: Drake's Fortune"
|
||||||
Release: 2007-11-16
|
Release: 2007-11-16
|
||||||
Developer: "Naughty Dog"
|
Developer: Naughty Dog
|
||||||
Genres:
|
Genres:
|
||||||
- Shooter
|
- Shooter
|
||||||
- Platform
|
- Platform
|
||||||
|
|
|
||||||
183
projects/games.md
Normal file
183
projects/games.md
Normal file
|
|
@ -0,0 +1,183 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
database-plugin: basic
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
```yaml:dbfolder
|
||||||
|
name: games
|
||||||
|
description: new description
|
||||||
|
columns:
|
||||||
|
__file__:
|
||||||
|
key: __file__
|
||||||
|
id: __file__
|
||||||
|
input: markdown
|
||||||
|
label: File
|
||||||
|
accessorKey: __file__
|
||||||
|
isMetadata: true
|
||||||
|
skipPersist: false
|
||||||
|
isDragDisabled: false
|
||||||
|
csvCandidate: true
|
||||||
|
position: 1
|
||||||
|
isHidden: false
|
||||||
|
sortIndex: -1
|
||||||
|
config:
|
||||||
|
enable_media_view: true
|
||||||
|
link_alias_enabled: true
|
||||||
|
media_width: 100
|
||||||
|
media_height: 100
|
||||||
|
isInline: true
|
||||||
|
task_hide_completed: true
|
||||||
|
footer_type: none
|
||||||
|
persist_changes: false
|
||||||
|
__modified__:
|
||||||
|
key: __modified__
|
||||||
|
id: __modified__
|
||||||
|
input: metadata_time
|
||||||
|
label: Modified
|
||||||
|
accessorKey: __modified__
|
||||||
|
isMetadata: true
|
||||||
|
isDragDisabled: false
|
||||||
|
skipPersist: false
|
||||||
|
csvCandidate: true
|
||||||
|
position: 2
|
||||||
|
isHidden: true
|
||||||
|
sortIndex: -1
|
||||||
|
config:
|
||||||
|
enable_media_view: true
|
||||||
|
link_alias_enabled: true
|
||||||
|
media_width: 100
|
||||||
|
media_height: 100
|
||||||
|
isInline: false
|
||||||
|
task_hide_completed: true
|
||||||
|
footer_type: none
|
||||||
|
persist_changes: false
|
||||||
|
__tags__:
|
||||||
|
key: __tags__
|
||||||
|
id: __tags__
|
||||||
|
input: metadata_tags
|
||||||
|
label: File Tags
|
||||||
|
accessorKey: __tags__
|
||||||
|
isMetadata: true
|
||||||
|
isDragDisabled: false
|
||||||
|
skipPersist: false
|
||||||
|
csvCandidate: false
|
||||||
|
position: 3
|
||||||
|
isHidden: true
|
||||||
|
sortIndex: -1
|
||||||
|
config:
|
||||||
|
enable_media_view: true
|
||||||
|
link_alias_enabled: true
|
||||||
|
media_width: 100
|
||||||
|
media_height: 100
|
||||||
|
isInline: false
|
||||||
|
task_hide_completed: true
|
||||||
|
footer_type: none
|
||||||
|
persist_changes: false
|
||||||
|
Status:
|
||||||
|
input: select
|
||||||
|
accessorKey: Status
|
||||||
|
key: Status
|
||||||
|
id: Status
|
||||||
|
label: Status
|
||||||
|
position: 4
|
||||||
|
skipPersist: false
|
||||||
|
isHidden: false
|
||||||
|
sortIndex: 1
|
||||||
|
width: 225
|
||||||
|
isSorted: true
|
||||||
|
isSortedDesc: true
|
||||||
|
options:
|
||||||
|
- { label: "Played", value: "Played", color: "hsl(204, 95%, 90%)"}
|
||||||
|
- { label: "Playing", value: "Playing", color: "hsl(127, 95%, 90%)"}
|
||||||
|
- { label: "Always Playable", value: "Always Playable", color: "hsl(256, 95%, 90%)"}
|
||||||
|
- { label: "On Line", value: "On Line", color: "hsl(271, 95%, 90%)"}
|
||||||
|
- { label: "Backlog", value: "Backlog", color: "hsl(207, 95%, 90%)"}
|
||||||
|
config:
|
||||||
|
enable_media_view: true
|
||||||
|
link_alias_enabled: true
|
||||||
|
media_width: 100
|
||||||
|
media_height: 100
|
||||||
|
isInline: false
|
||||||
|
task_hide_completed: true
|
||||||
|
footer_type: none
|
||||||
|
persist_changes: false
|
||||||
|
option_source: manual
|
||||||
|
Genres:
|
||||||
|
input: tags
|
||||||
|
accessorKey: Genres
|
||||||
|
key: Genres
|
||||||
|
id: Genres
|
||||||
|
label: Genres
|
||||||
|
position: 100
|
||||||
|
skipPersist: false
|
||||||
|
isHidden: false
|
||||||
|
sortIndex: -1
|
||||||
|
width: 583
|
||||||
|
options:
|
||||||
|
- { label: "Hack and slash/Beat 'em up,Adventure", value: "Hack and slash/Beat 'em up,Adventure", color: "hsl(209, 95%, 90%)"}
|
||||||
|
- { label: "Platform,Adventure,Indie", value: "Platform,Adventure,Indie", color: "hsl(151, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG),Hack and slash/Beat 'em up,Adventure", value: "Role-playing (RPG),Hack and slash/Beat 'em up,Adventure", color: "hsl(35, 95%, 90%)"}
|
||||||
|
- { label: "Platform,Hack and slash/Beat 'em up,Adventure", value: "Platform,Hack and slash/Beat 'em up,Adventure", color: "hsl(272, 95%, 90%)"}
|
||||||
|
- { label: "Strategy,Hack and slash/Beat 'em up,Adventure", value: "Strategy,Hack and slash/Beat 'em up,Adventure", color: "hsl(68, 95%, 90%)"}
|
||||||
|
- { label: "Shooter,Platform,Adventure", value: "Shooter,Platform,Adventure", color: "hsl(268, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG),Hack and slash/Beat 'em up", value: "Role-playing (RPG),Hack and slash/Beat 'em up", color: "hsl(205, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG),Simulator,Adventure,Visual Novel", value: "Role-playing (RPG),Simulator,Adventure,Visual Novel", color: "hsl(146, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG),Turn-based strategy (TBS),Adventure", value: "Role-playing (RPG),Turn-based strategy (TBS),Adventure", color: "hsl(342, 95%, 90%)"}
|
||||||
|
- { label: "Platform,Adventure", value: "Platform,Adventure", color: "hsl(108, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG),Adventure", value: "Role-playing (RPG),Adventure", color: "hsl(287, 95%, 90%)"}
|
||||||
|
- { label: "Shooter,Adventure", value: "Shooter,Adventure", color: "hsl(60, 95%, 90%)"}
|
||||||
|
- { label: "Shooter", value: "Shooter", color: "hsl(117, 95%, 90%)"}
|
||||||
|
- { label: "Platform", value: "Platform", color: "hsl(129, 95%, 90%)"}
|
||||||
|
- { label: "Adventure", value: "Adventure", color: "hsl(215, 95%, 90%)"}
|
||||||
|
- { label: "Role-playing (RPG)", value: "Role-playing (RPG)", color: "hsl(170, 95%, 90%)"}
|
||||||
|
- { label: "Simulator", value: "Simulator", color: "hsl(212, 95%, 90%)"}
|
||||||
|
- { label: "Visual Novel", value: "Visual Novel", color: "hsl(77, 95%, 90%)"}
|
||||||
|
- { label: "Hack and slash/Beat 'em up", value: "Hack and slash/Beat 'em up", color: "hsl(33, 95%, 90%)"}
|
||||||
|
- { label: "Indie", value: "Indie", color: "hsl(225, 95%, 90%)"}
|
||||||
|
- { label: "Strategy", value: "Strategy", color: "hsl(224, 95%, 90%)"}
|
||||||
|
- { label: "Turn-based strategy (TBS)", value: "Turn-based strategy (TBS)", color: "hsl(353, 95%, 90%)"}
|
||||||
|
- { label: "Metroidvania", value: "Metroidvania", color: "hsl(93, 95%, 90%)"}
|
||||||
|
config:
|
||||||
|
enable_media_view: true
|
||||||
|
link_alias_enabled: true
|
||||||
|
media_width: 100
|
||||||
|
media_height: 100
|
||||||
|
isInline: false
|
||||||
|
task_hide_completed: true
|
||||||
|
footer_type: none
|
||||||
|
persist_changes: false
|
||||||
|
config:
|
||||||
|
remove_field_when_delete_column: true
|
||||||
|
cell_size: normal
|
||||||
|
sticky_first_column: true
|
||||||
|
group_folder_column:
|
||||||
|
remove_empty_folders: false
|
||||||
|
automatically_group_files: false
|
||||||
|
hoist_files_with_empty_attributes: true
|
||||||
|
show_metadata_created: false
|
||||||
|
show_metadata_modified: true
|
||||||
|
show_metadata_tasks: false
|
||||||
|
show_metadata_inlinks: false
|
||||||
|
show_metadata_outlinks: false
|
||||||
|
show_metadata_tags: true
|
||||||
|
source_data: query
|
||||||
|
source_form_result: "FROM \"games\""
|
||||||
|
source_destination_path: games
|
||||||
|
row_templates_folder: templates
|
||||||
|
current_row_template:
|
||||||
|
pagination_size: 50
|
||||||
|
font_size: 16
|
||||||
|
enable_js_formulas: false
|
||||||
|
formula_folder_path: /
|
||||||
|
inline_default: false
|
||||||
|
inline_new_position: last_field
|
||||||
|
date_format: yyyy-MM-dd
|
||||||
|
datetime_format: "yyyy-MM-dd HH:mm:ss"
|
||||||
|
metadata_date_format: "yyyy-MM-dd HH:mm:ss"
|
||||||
|
enable_footer: true
|
||||||
|
implementation: default
|
||||||
|
filters:
|
||||||
|
enabled: false
|
||||||
|
conditions:
|
||||||
|
```
|
||||||
Loading…
Add table
Add a link
Reference in a new issue