vault backup: 2024-09-07 03:51:20
This commit is contained in:
parent
cdc49b58c0
commit
92280276c5
27 changed files with 376 additions and 31 deletions
2
Edikoyo/.obsidian/community-plugins.json
vendored
2
Edikoyo/.obsidian/community-plugins.json
vendored
|
@ -4,5 +4,5 @@
|
|||
"obsidian-linter",
|
||||
"dataview",
|
||||
"dataview-serializer",
|
||||
"obsidian-icon-folder"
|
||||
"iconic"
|
||||
]
|
7
Edikoyo/.obsidian/plugins/iconic/main.js
vendored
Normal file
7
Edikoyo/.obsidian/plugins/iconic/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
Edikoyo/.obsidian/plugins/iconic/manifest.json
vendored
Normal file
10
Edikoyo/.obsidian/plugins/iconic/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "iconic",
|
||||
"name": "Iconic",
|
||||
"version": "1.0.13",
|
||||
"minAppVersion": "1.6.0",
|
||||
"description": "Customize your app icons directly from the UI, including tabs, files, bookmarks, properties, and ribbon commands.",
|
||||
"author": "Holo",
|
||||
"authorUrl": "https://github.com/gfxholo",
|
||||
"isDesktopOnly": false
|
||||
}
|
318
Edikoyo/.obsidian/plugins/iconic/styles.css
vendored
Normal file
318
Edikoyo/.obsidian/plugins/iconic/styles.css
vendored
Normal file
|
@ -0,0 +1,318 @@
|
|||
body {
|
||||
--ltr-icons: .lucide-check, .lucide-help-circle, .sidebar-left, .sidebar-right;
|
||||
}
|
||||
|
||||
.iconic-icon > .iconic-emoji {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
overflow: clip;
|
||||
overflow-clip-margin: 5px;
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
font-size: calc(var(--icon-size) * 0.9);
|
||||
}
|
||||
|
||||
/* Tabs */
|
||||
.workspace .mod-root .workspace-tab-header[data-type="markdown"] .workspace-tab-header-inner-icon,
|
||||
.workspace .mod-root .workspace-tab-header[data-type="empty"] .workspace-tab-header-inner-icon {
|
||||
display: flex;
|
||||
}
|
||||
.workspace .mod-stacked .iconic-emoji {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
.iconic-bigger-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon > * {
|
||||
--icon-size: var(--icon-s);
|
||||
--icon-stroke: var(--icon-s-stroke-width);
|
||||
}
|
||||
.iconic-clickable-icons .mod-root .workspace-tab-header-inner-icon.iconic-icon:hover {
|
||||
cursor: pointer;
|
||||
filter: contrast(200%);
|
||||
}
|
||||
|
||||
/* List items */
|
||||
.tree-item-self > .iconic-icon > .iconic-emoji {
|
||||
--icon-size: var(--icon-xs);
|
||||
}
|
||||
.tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon {
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
stroke-width: var(--icon-stroke);
|
||||
color: unset;
|
||||
transform: unset;
|
||||
}
|
||||
.mod-rtl .tree-item-self > .tree-item-icon.collapse-icon.iconic-icon > .svg-icon:not(var(--ltr-icons)) {
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
.tree-item-self > .iconic-sidekick {
|
||||
display: flex;
|
||||
align-self: center;
|
||||
width: var(--size-4-4);
|
||||
margin-inline-end: var(--size-4-1);
|
||||
opacity: var(--icon-opacity);
|
||||
--icon-size: var(--icon-xs);
|
||||
--icon-stroke: var(--icon-s-stroke-width);
|
||||
}
|
||||
.iconic-bigger-icons .tree-item-self > .iconic-icon > .svg-icon {
|
||||
--icon-size: var(--icon-s);
|
||||
--icon-stroke: var(--icon-s-stroke-width);
|
||||
}
|
||||
.iconic-bigger-icons .tree-item-self > .iconic-icon > .iconic-emoji {
|
||||
--icon-size: var(--icon-s);
|
||||
}
|
||||
.iconic-bigger-icons .iconic-item > .tree-item-self > .tree-item-inner {
|
||||
margin-inline-start: 1.5px;
|
||||
}
|
||||
.is-mobile .iconic-bigger-icons .tree-item.iconic-item > .tree-item-self > .tree-item-inner {
|
||||
margin-inline-start: 3px;
|
||||
}
|
||||
.iconic-clickable-icons .tree-item-self > .iconic-icon:hover {
|
||||
cursor: pointer;
|
||||
filter: contrast(200%);
|
||||
}
|
||||
|
||||
/* Properties editor */
|
||||
.iconic-clickable-icons .metadata-property-icon.iconic-icon:hover {
|
||||
cursor: pointer;
|
||||
filter: contrast(200%);
|
||||
}
|
||||
|
||||
/* Ribbon */
|
||||
.side-dock-ribbon-action.iconic-icon > .iconic-emoji {
|
||||
--icon-size: var(--icon-l);
|
||||
}
|
||||
.mobile-option-setting-item-option-icon.iconic-icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Icon picker */
|
||||
.iconic-modal .setting-item-control input[type="color"] { width: auto; }
|
||||
.iconic-modal .setting-item-control input[type="text"] { width: 100%; }
|
||||
.iconic-modal .setting-item-control .search-input-container { width: 100%; }
|
||||
.is-tablet .iconic-button-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Search results container */
|
||||
.iconic-search-results { overflow-x: scroll; }
|
||||
.iconic-search-results > .setting-item-info { display: none; }
|
||||
.iconic-search-results > .setting-item-control { justify-content: center; }
|
||||
.is-phone .iconic-search-results { flex-direction: row !important; }
|
||||
.is-phone .iconic-search-results > .setting-item-control { width: auto !important; }
|
||||
|
||||
/* Search result */
|
||||
.iconic-search-result > * {
|
||||
height: var(--icon-size);
|
||||
--icon-size: calc(var(--icon-l) * 1.25);
|
||||
--icon-stroke: calc(var(--icon-l-stroke-width) * 6/7);
|
||||
}
|
||||
.iconic-bigger-search-results .iconic-search-result > * {
|
||||
--icon-size: var(--icon-xl);
|
||||
--icon-stroke: var(--icon-xl-stroke-width);
|
||||
}
|
||||
.is-mobile .iconic-search-result > * {
|
||||
--icon-size: var(--icon-l);
|
||||
--icon-stroke: var(--icon-l-stroke-width);
|
||||
}
|
||||
.is-mobile.iconic-bigger-search-results .iconic-search-result > * {
|
||||
--icon-size: var(--icon-xl);
|
||||
--icon-stroke: var(--icon-l-stroke-width);
|
||||
}
|
||||
|
||||
/* Indicators */
|
||||
.iconic-indicator { pointer-events: none; }
|
||||
|
||||
/* Invisibility */
|
||||
.iconic-invisible { visibility: hidden; }
|
||||
.is-phone .iconic-reset-color.iconic-invisible { display: none; }
|
||||
|
||||
/* Colorless settings */
|
||||
.iconic-uncolor-hover .workspace-tab-header:hover .iconic-icon > .svg-icon,
|
||||
.iconic-uncolor-hover .tree-item-self:hover > .tree-item-icon.iconic-icon > .svg-icon,
|
||||
.iconic-uncolor-hover .side-dock-ribbon-action.iconic-icon:hover > .svg-icon,
|
||||
.iconic-uncolor-hover .iconic-search-result:hover > .svg-icon {
|
||||
color: currentColor !important;
|
||||
}
|
||||
.iconic-uncolor-drag > .drag-ghost .svg-icon {
|
||||
color: currentColor !important;
|
||||
}
|
||||
.iconic-uncolor-select .workspace-tab-header.is-active .iconic-icon > .svg-icon,
|
||||
.iconic-uncolor-select .tree-item-self.is-active > .tree-item-icon.iconic-icon > .svg-icon {
|
||||
color: currentColor !important;
|
||||
}
|
||||
|
||||
/* Theme: Blue Topaz */
|
||||
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon:not(.collapse-icon) {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
|
||||
margin-inline-start: var(--size-4-5);
|
||||
}
|
||||
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-file-title .nav-file-title-content:not(.mk-tree-text)::before {
|
||||
display: none;
|
||||
}
|
||||
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon::before {
|
||||
display: none;
|
||||
}
|
||||
.iconic-theme-btopaz .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.collapse-icon.iconic-icon) > .collapse-icon > svg {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Theme: Border */
|
||||
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .nav-file-title::before {
|
||||
display: none;
|
||||
}
|
||||
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item > .tree-item-self.mod-collapsible > .collapse-icon {
|
||||
-webkit-mask-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
.iconic-theme-border .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-self.mod-collapsible > .collapse-icon > .svg-icon {
|
||||
color: unset;
|
||||
}
|
||||
.iconic-theme-border .workspace-leaf-content[data-type="file-explorer"] .tree-item > .tree-item-self:is(.nav-file-title, .nav-folder.mod-root > .nav-folder-title)::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Catppuccin */
|
||||
.iconic-theme-cat .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Cyber Glow */
|
||||
.iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-self > .tree-item-inner::before {
|
||||
display: none;
|
||||
}
|
||||
.iconic-theme-cglow .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon.collapse-icon.nav-folder-collapse-indicator {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Theme: Discordian */
|
||||
.iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title > .tree-item-icon {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
.iconic-theme-discord .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
|
||||
margin-inline-start: var(--size-4-5);
|
||||
}
|
||||
|
||||
/* Theme: ITS Theme */
|
||||
.iconic-theme-its .tree-item-self > .tree-item-icon {
|
||||
margin-right: 6px;
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .tree-item-icon {
|
||||
position: absolute;
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content {
|
||||
margin-inline-start: var(--size-4-5);
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before,
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title-content::before {
|
||||
display: none;
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-collapse-indicator {
|
||||
display: flex;
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:not(:has(.iconic-sidekick)) > .nav-folder-title-content {
|
||||
margin-inline-start: var(--size-4-5);
|
||||
}
|
||||
.iconic-theme-its .workspace-leaf-content[data-type="file-explorer"] .iconic-sidekick {
|
||||
margin-inline-start: var(--size-4-5);
|
||||
}
|
||||
|
||||
/* Theme: LYT Mode */
|
||||
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-inner {
|
||||
padding-inline-start: var(--size-4-2);
|
||||
}
|
||||
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .iconic-sidekick {
|
||||
margin-inline-start: var(--size-4-2);
|
||||
margin-inline-end: 0;
|
||||
}
|
||||
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item-icon:not(.collapse-icon) {
|
||||
margin-inline-start: calc(-0.5 * var(--size-4-5));
|
||||
}
|
||||
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .mod-collapsible:not(:has(.iconic-sidekick)) > .tree-item-inner {
|
||||
padding-inline-start: var(--size-4-2);
|
||||
margin-inline-start: var(--size-4-2);
|
||||
}
|
||||
.iconic-theme-lyt .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) :not(.mod-collapsible) > .tree-item-inner {
|
||||
margin-inline-start: var(--size-4-2);
|
||||
}
|
||||
.iconic-theme-lyt .workspace-leaf-content > :is(.nav-files-container, .view-content).node-insert-event {
|
||||
padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
|
||||
}
|
||||
|
||||
/* Theme: Mado Miniflow */
|
||||
.iconic-theme-mflow .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .tree-item:not(.mod-collapsible) {
|
||||
margin-inline-start: var(--size-4-2);
|
||||
}
|
||||
.iconic-theme-mflow .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .collapse-icon {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Theme: Sanctum */
|
||||
.iconic-theme-sanctum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title:has(.iconic-sidekick) > .nav-folder-title-content::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Shiba Inu */
|
||||
.iconic-theme-shiba.theme-light:not(.default-light-theme, .lily-light, .ivory-light, .sky-light, .stone-light) {
|
||||
--color-red: rgb(240, 68, 114);
|
||||
--color-orange: rgb(249, 102, 50);
|
||||
--color-yellow: rgb(228, 147, 32);
|
||||
--color-green: rgb(64, 155, 40);
|
||||
--color-cyan: rgb(23, 146, 153);
|
||||
--color-blue: rgb(71, 143, 238);
|
||||
--color-purple: rgb(176, 110, 201);
|
||||
--color-pink: rgb(215, 125, 146);
|
||||
}
|
||||
.iconic-theme-shiba.theme-dark:not(.default-dark-theme, .Lilac-dark, .pure-dark, .warm-dark) {
|
||||
--color-red: rgb(255, 98, 107);
|
||||
--color-orange: rgb(247, 157, 124);
|
||||
--color-yellow: rgb(249, 226, 175);
|
||||
--color-green: rgb(56, 198, 141);
|
||||
--color-cyan: rgb(104, 188, 204);
|
||||
--color-blue: rgb(147, 183, 245);
|
||||
--color-purple: rgb(196, 167, 231);
|
||||
--color-pink: rgb(243, 137, 143);
|
||||
}
|
||||
.iconic-theme-shiba .workspace-leaf-content[data-type="file-explorer"] .nav-file-title-content::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Shimmering Focus */
|
||||
.iconic-theme-shimmer :is(.style-settings-collapse-indicator, .collapse-icon) > .svg-icon.svg-icon.svg-icon.svg-icon {
|
||||
width: var(--icon-xs);
|
||||
stroke-width: var(--icon-xs-stroke-width);
|
||||
height: unset;
|
||||
margin-left: unset;
|
||||
}
|
||||
.iconic-theme-shimmer.iconic-bigger-icons :is(.style-settings-collapse-indicator, .collapse-icon) > .svg-icon.svg-icon.svg-icon.svg-icon {
|
||||
width: var(--icon-s);
|
||||
stroke-width: var(--icon-s-stroke-width);
|
||||
}
|
||||
|
||||
/* Theme: Sodalite */
|
||||
.iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .nav-files-container {
|
||||
padding-inline-start: var(--size-4-3);
|
||||
padding-inline-end: var(--size-4-3);
|
||||
}
|
||||
.iconic-theme-sodalite .workspace-leaf-content[data-type="file-explorer"] .tree-item-inner::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Spectrum */
|
||||
.iconic-theme-spectrum .workspace-leaf-content[data-type="file-explorer"] .nav-folder-title > .nav-folder-title-content::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Terminal */
|
||||
.iconic-theme-terminal .workspace-leaf-content:is([data-type="file-explorer"], [data-type="bookmarks"]) .collapse-icon.iconic-icon::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Theme: Ukiyo */
|
||||
.iconic-theme-ukiyo .workspace-leaf > .workspace-leaf-content[data-type="file-explorer"] > .nav-files-container.node-insert-event {
|
||||
padding: var(--size-4-1) var(--size-4-3) var(--size-4-6) var(--size-4-3);
|
||||
}
|
36
Edikoyo/.obsidian/workspace.json
vendored
36
Edikoyo/.obsidian/workspace.json
vendored
|
@ -73,7 +73,7 @@
|
|||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Countries/Vikogyna.md",
|
||||
"file": "Landmarks/Untitled.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
|
@ -146,7 +146,7 @@
|
|||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "Countries/Vikogyna.md",
|
||||
"file": "Landmarks/Untitled.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
|
@ -163,7 +163,7 @@
|
|||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "Countries/Vikogyna.md",
|
||||
"file": "Landmarks/Untitled.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
|
@ -186,7 +186,7 @@
|
|||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "Countries/Vikogyna.md"
|
||||
"file": "Landmarks/Untitled.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -217,8 +217,21 @@
|
|||
},
|
||||
"active": "e18161b255f8c3cb",
|
||||
"lastOpenFiles": [
|
||||
"Countries/Vosaka.md",
|
||||
"Countries/Batanoka.md",
|
||||
"Animals/Cat.md",
|
||||
"Animals/Dog.md",
|
||||
"Animals/Taura.md",
|
||||
"Animals/Slom.md",
|
||||
"Animals/Slimes/Sunflower Slime.md",
|
||||
"Animals/Slimes/Marsh Slime.md",
|
||||
"Animals/Slimes/Lagoon Slime.md",
|
||||
"Animals/Slimes/Honey Slime.md",
|
||||
"Animals/Slimes/Godot Slime.md",
|
||||
"Animals/Slimes/Garden Slime.md",
|
||||
"Animals/Slimes/Bark Slime.md",
|
||||
"Animals/Slimes/Ababa Slime.md",
|
||||
"Countries/Vikogyna.md",
|
||||
"Countries/Vosaka.md",
|
||||
"Countries/Vanatn.md",
|
||||
"Countries/Soljord.md",
|
||||
"Countries/Seraphis.md",
|
||||
|
@ -230,19 +243,6 @@
|
|||
"Countries/Mortham.md",
|
||||
"Countries/Mantine.md",
|
||||
"Countries/Llasuki.md",
|
||||
"Countries/Lekia.md",
|
||||
"Countries/Lavaki.md",
|
||||
"Countries/Krakala.md",
|
||||
"Countries/Hanoka.md",
|
||||
"Countries/Gudoko.md",
|
||||
"Countries/Gokolm.md",
|
||||
"Countries/Felmyr.md",
|
||||
"Countries/Falaka.md",
|
||||
"Countries/Faelani.md",
|
||||
"Countries/Drenvale.md",
|
||||
"Countries/Dratana.md",
|
||||
"Countries/Dolfeyja.md",
|
||||
"Countries/Dasona.md",
|
||||
"Images/Slimes/garden-1.png",
|
||||
"Images/Slimes/sunflower-2.png",
|
||||
"Images/Slimes/sunflower-1.png",
|
||||
|
|
|
@ -1 +1 @@
|
|||
Cat
|
||||
To be added
|
|
@ -0,0 +1 @@
|
|||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Common
|
|||
type: Nature
|
||||
requestor: Ategon
|
||||
---
|
||||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Common
|
|||
type: Nature
|
||||
requestor: Ategon
|
||||
---
|
||||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Uncommon
|
|||
type: Stone
|
||||
requestor: PracticalNPC
|
||||
---
|
||||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Common
|
|||
type: Nature
|
||||
requestor: SarahClick
|
||||
---
|
||||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Common
|
|||
type: Water
|
||||
requestor: Ategon
|
||||
---
|
||||
To be added
|
|
@ -14,3 +14,4 @@ rarity: Common
|
|||
type: Nature
|
||||
requestor: Ategon
|
||||
---
|
||||
To be added
|
|
@ -15,3 +15,4 @@ rarity: Common
|
|||
type: Nature
|
||||
requestor: GGlitchedOut
|
||||
---
|
||||
To be added
|
|
@ -0,0 +1 @@
|
|||
To be added
|
|
@ -0,0 +1 @@
|
|||
To be added
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
Cat
|
||||
To be added
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Nature
|
|||
requestor: Ategon
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Nature
|
|||
requestor: Ategon
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Stone
|
|||
requestor: PracticalNPC
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Nature
|
|||
requestor: SarahClick
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Water
|
|||
requestor: Ategon
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -15,4 +15,4 @@ type: Nature
|
|||
requestor: Ategon
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -16,4 +16,4 @@ type: Nature
|
|||
requestor: GGlitchedOut
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
---
|
||||
---
|
||||
|
||||
|
||||
To be added
|
||||
|
|
Loading…
Reference in a new issue