This commit is contained in:
Martin Švrčina 2025-07-25 01:30:00 +02:00
commit 256404b092
27 changed files with 27521 additions and 0 deletions

3
TTRPG/TTRPG/.obsidian/app.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"spellcheck": false
}

4
TTRPG/TTRPG/.obsidian/appearance.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"cssTheme": "AnuPpuccin",
"theme": "system"
}

View File

@ -0,0 +1,4 @@
[
"obsidian-leaflet-plugin",
"obsidian-icon-folder"
]

31
TTRPG/TTRPG/.obsidian/core-plugins.json vendored Normal file
View File

@ -0,0 +1,31 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": true,
"webviewer": false
}

22
TTRPG/TTRPG/.obsidian/graph.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": true
}

View File

@ -0,0 +1,43 @@
{
"settings": {
"migrated": 6,
"iconPacksPath": ".obsidian/icons",
"fontSize": 16,
"emojiStyle": "native",
"iconColor": null,
"recentlyUsedIcons": [
"🗺",
"🖼",
"💍",
"🌍",
"📕"
],
"recentlyUsedIconsSize": 5,
"rules": [],
"extraMargin": {
"top": 0,
"right": 4,
"bottom": 0,
"left": 0
},
"iconInTabsEnabled": false,
"iconInTitleEnabled": false,
"iconInTitlePosition": "above",
"iconInFrontmatterEnabled": false,
"iconInFrontmatterFieldName": "icon",
"iconColorInFrontmatterFieldName": "iconColor",
"iconsBackgroundCheckEnabled": false,
"iconsInNotesEnabled": true,
"iconsInLinksEnabled": true,
"iconIdentifier": ":",
"lucideIconPackType": "native",
"debugMode": false,
"useInternalPlugins": false
},
"Assets/Maps": "🗺",
"Assets": "🖼",
"Campaigns": "📕",
"NPCs": "🧍",
"Locations": "🗺",
"Items": "💍"
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "obsidian-icon-folder",
"name": "Iconize",
"version": "2.14.7",
"minAppVersion": "0.9.12",
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki",
"authorUrl": "https://florianwoelki.com/",
"isDesktopOnly": false
}

View File

@ -0,0 +1,120 @@
.iconize-inline-title-wrapper {
width: var(--line-width);
max-width: var(--max-width);
margin-inline: var(--content-margin);
}
.iconize-title-icon {
max-width: var(--max-width);
margin-right: var(--size-4-2);
}
.iconize-icon-in-link {
transform: translateY(20%);
margin-right: var(--size-2-2);
display: inline-flex;
}
.iconize-icon {
border: 1px solid transparent;
margin: 0px 4px 0px 0px;
display: flex;
align-self: center;
margin: auto 0;
}
.nav-folder-title,
.nav-file-title {
align-items: center;
}
.iconize-setting input[type='color'] {
margin: 0 6px;
}
.iconize-modal.prompt-results {
margin: 0;
overflow-y: auto;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
margin-top: 12px;
font-size: 12px;
color: gray;
grid-column-start: 1;
grid-column-end: 6;
}
@media (max-width: 640px) {
.iconize-modal.prompt-results {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prompt .iconize-subheadline {
grid-column-end: 4;
}
}
.iconize-modal.prompt-results .suggestion-item {
cursor: pointer;
white-space: pre-wrap;
display: flex;
justify-content: flex-end;
align-items: center;
flex-direction: column-reverse;
text-align: center;
font-size: 13px;
color: var(--text-muted);
padding: 16px 8px;
line-break: auto;
word-break: break-word;
line-height: 1.3;
}
.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
justify-content: center;
}
.iconize-icon-preview {
font-size: 22px;
}
.iconize-icon-preview img {
width: 16px;
height: 16px;
}
.iconize-icon-preview svg {
width: 24px;
height: 24px;
color: currentColor;
margin-bottom: 4px;
}
.iconize-dragover {
position: relative;
}
.iconize-dragover-el {
position: absolute;
width: 100%;
height: 100%;
color: var(--text-normal);
background-color: var(--background-secondary-alt);
display: flex;
align-items: center;
justify-content: center;
}
/* Custom rule modal. */
.iconize-custom-modal .modal-content {
display: flex;
align-items: center;
justify-content: center;
}
.iconize-custom-modal .modal-content input {
width: 100%;
margin-right: 0.5rem;
}

View File

@ -0,0 +1,182 @@
{
"mapMarkers": [
{
"id": "leaflet-map",
"locked": false,
"lastAccessed": 1741225347048,
"markers": [
{
"id": "ID_bacae83a1a8b",
"type": "default",
"loc": [
-7.32080078125,
9.30078125
],
"layer": "%5B%5Btest_map.png%5D%5D",
"mutable": true,
"command": false,
"percent": null,
"description": "gdfgdfg",
"minZoom": 2,
"maxZoom": 0,
"tooltip": "hover"
},
{
"id": "ID_0a18babb2918",
"type": "default",
"loc": [
-5.02001953125,
8.078125
],
"layer": "%5B%5Btest_map.png%5D%5D",
"mutable": true,
"command": false,
"percent": null,
"description": "tooltip",
"minZoom": 4,
"maxZoom": 0,
"tooltip": "hover"
},
{
"id": "ID_d83a097b1bc8",
"type": "default",
"loc": [
-5.03955078125,
7.96484375
],
"link": "marker test",
"layer": "%5B%5Btest_map.png%5D%5D",
"mutable": true,
"command": false,
"percent": null,
"description": "Link to note",
"minZoom": 8,
"maxZoom": null,
"tooltip": "hover"
}
],
"overlays": [],
"shapes": [],
"files": [
"TEST.md"
]
},
{
"id": "graveyard-campaign-overworld",
"lastAccessed": 1751500950477,
"markers": [
{
"id": "ID_ea4b3a4b4b68",
"type": "default",
"loc": [
-40.265625,
72.125
],
"layer": "%5B%5BGraveyard_4k.jpg%5D%5D",
"mutable": true,
"command": false,
"percent": null,
"description": null,
"minZoom": 3,
"maxZoom": null,
"tooltip": "hover"
},
{
"id": "ID_79f949ea3a19",
"type": "default",
"loc": [
-22.140625,
89.375
],
"layer": "%5B%5BGraveyard_4k.jpg%5D%5D",
"mutable": true,
"command": false,
"percent": null,
"description": null,
"minZoom": 3,
"maxZoom": null,
"tooltip": "hover"
}
],
"overlays": [],
"shapes": [],
"files": [
"marker test.md"
]
}
],
"defaultMarker": {
"type": "default",
"iconName": "map-marker",
"color": "#dddddd",
"transform": {
"size": 6,
"x": 0,
"y": -2
}
},
"markerIcons": [],
"color": "#dddddd",
"lat": 39.983334,
"long": -82.98333,
"notePreview": false,
"layerMarkers": true,
"previousVersion": "6.0.5",
"version": {
"major": 6,
"minor": 0,
"patch": 5
},
"warnedAboutMapMarker": false,
"copyOnClick": false,
"displayMarkerTooltips": "hover",
"displayOverlayTooltips": true,
"configDirectory": null,
"mapViewEnabled": true,
"mapViewParameters": {
"darkMode": false,
"defaultZoom": 5,
"distanceMultiplier": 1,
"drawColor": "#3388ff",
"geojson": [],
"geojsonColor": "#3388ff",
"gpx": [],
"gpxColor": "#3388ff",
"height": "500px",
"image": "[[test_map.png]]",
"imageOverlay": [],
"isMapView": false,
"layers": [
"[[test_map.png]]"
],
"linksFrom": [],
"linksTo": [],
"marker": [],
"commandMarker": [],
"markerFile": [],
"markerFolder": [],
"markerTag": [],
"maxZoom": 10,
"minZoom": 5,
"osmLayer": true,
"overlay": [],
"overlayColor": "blue",
"scale": 1,
"showAllMarkers": false,
"tileServer": [],
"verbose": false,
"zoomDelta": 1,
"zoomFeatures": false,
"id": "leaflet-map",
"lat": 50,
"long": 50,
"unit": "meters",
"filterTag": []
},
"enableDraw": true,
"defaultUnitType": "imperial",
"defaultTile": "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}.png",
"defaultTileDark": "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}.png",
"defaultAttribution": "&copy; <a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors &copy; <a href=\"https://carto.com/attributions\">CARTO</a>",
"defaultTileSubdomains": "a,b,c,d"
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "obsidian-leaflet-plugin",
"name": "Leaflet",
"description": "Interactive maps inside your notes",
"version": "6.0.5",
"minAppVersion": "0.12.12",
"author": "Jeremy Valentine",
"repo": "valentine195/obsidian-leaflet-plugin",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
{
"name": "AnuPpuccin",
"version": "1.5.0",
"minAppVersion": "1.6.0",
"author": "Anubis",
"authorUrl": "https://github.com/AnubisNekhet"
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,6 @@
{
"name": "Dune",
"version": "2.6.70",
"minAppVersion": "1.6.0",
"author": "ValCode"
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
{
"name": "Nier",
"version": "0.1.13",
"minAppVersion": "0.16.0",
"author": "exloseur3d"
}

File diff suppressed because one or more lines are too long

189
TTRPG/TTRPG/.obsidian/workspace.json vendored Normal file
View File

@ -0,0 +1,189 @@
{
"main": {
"id": "dfa74f5ee0f7c0af",
"type": "split",
"children": [
{
"id": "9966ee11395d0ffd",
"type": "tabs",
"children": [
{
"id": "20356acf8be3ea3e",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "marker test.md",
"mode": "preview",
"source": false
},
"icon": "lucide-file",
"title": "marker test"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "7ae1660c739a175a",
"type": "split",
"children": [
{
"id": "8127881bf08c236b",
"type": "tabs",
"children": [
{
"id": "604c54840b2fa670",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "230beae931cef910",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "ce463bfd0026379d",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "d5a4cd89f177917f",
"type": "split",
"children": [
{
"id": "7843dd82c07ea4d9",
"type": "tabs",
"children": [
{
"id": "c32d710ea4e3cac7",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Welcome.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Welcome"
}
},
{
"id": "51ee60b948395b16",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Welcome.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Welcome"
}
},
{
"id": "7837e1ae045aad53",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "f05397044a7e0a3e",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Welcome.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Welcome"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"obsidian-leaflet-plugin:Open Leaflet Map": false
}
},
"active": "20356acf8be3ea3e",
"lastOpenFiles": [
"Locations/Lokace.md",
"Campaigns/Hřbitov.md",
"Assets/Maps/Graveyard_4k.jpg",
"Assets/Maps/test_map.png",
"Assets/Maps/Kids DnD.jpg",
"marker test.md",
"TEST.md",
"Items",
"Locations",
"NPCs",
"Campaigns",
"Welcome.md",
"Assets/Maps",
"Assets"
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 MiB

View File

@ -0,0 +1,4 @@
```leaflet
map=[[Hřbitov]]
```

View File

@ -0,0 +1,19 @@
## 1 Domácí vesnice
## 2
## 3
## 4
## 5 Mlýn
## 6 Jezero
## 7
## 8
## 9
## 10 Kočičí hrad
## 11
## 12
## 13
## 14
## 15
## 16
## 17
## 18
## 19 Pramen

14
TTRPG/TTRPG/TEST.md Normal file
View File

@ -0,0 +1,14 @@
```leaflet
id: leaflet-map
image: [[test_map.png]]
height: 500px
lat: 50
long: 50
minZoom: 1
maxZoom: 10
defaultZoom: 5
unit: meters
scale: 1
darkMode: false
```

View File

@ -0,0 +1,13 @@
```leaflet
id: graveyard-campaign-overworld
image: [[Graveyard_4k.jpg]]
height: 500px
lat: 50
long: 50
minZoom: 1
maxZoom: 6
defaultZoom: 2
unit: meters
scale: 1
darkMode: false
```