Compare commits
6 commits
0b6f1247c2
...
65280abf8d
Author | SHA1 | Date | |
---|---|---|---|
65280abf8d | |||
e94b9ec5e2 | |||
dcb8169206 | |||
4ae97aba98 | |||
83cabefa12 | |||
29c2c54a49 |
16 changed files with 5959 additions and 205 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.obsidian/workspace.json
|
0
.gitkeep
Normal file
0
.gitkeep
Normal file
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
|
@ -2,5 +2,6 @@
|
||||||
"dataview",
|
"dataview",
|
||||||
"obsidian-icon-folder",
|
"obsidian-icon-folder",
|
||||||
"folder-notes",
|
"folder-notes",
|
||||||
"yet-another-obsidian-synchronizer"
|
"yet-another-obsidian-synchronizer",
|
||||||
|
"templater-obsidian"
|
||||||
]
|
]
|
31
.obsidian/plugins/templater-obsidian/data.json
vendored
Normal file
31
.obsidian/plugins/templater-obsidian/data.json
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"command_timeout": 5,
|
||||||
|
"templates_folder": "templates",
|
||||||
|
"templates_pairs": [
|
||||||
|
[
|
||||||
|
"",
|
||||||
|
""
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"trigger_on_file_creation": true,
|
||||||
|
"auto_jump_to_cursor": true,
|
||||||
|
"enable_system_commands": true,
|
||||||
|
"shell_path": "",
|
||||||
|
"user_scripts_folder": "",
|
||||||
|
"enable_folder_templates": true,
|
||||||
|
"folder_templates": [
|
||||||
|
{
|
||||||
|
"folder": "",
|
||||||
|
"template": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"syntax_highlighting": true,
|
||||||
|
"syntax_highlighting_mobile": false,
|
||||||
|
"enabled_templates_hotkeys": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"startup_templates": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"enable_ribbon_icon": true
|
||||||
|
}
|
5618
.obsidian/plugins/templater-obsidian/main.js
vendored
Normal file
5618
.obsidian/plugins/templater-obsidian/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/templater-obsidian/manifest.json
vendored
Normal file
11
.obsidian/plugins/templater-obsidian/manifest.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"id": "templater-obsidian",
|
||||||
|
"name": "Templater",
|
||||||
|
"version": "2.1.2",
|
||||||
|
"description": "Create and use templates",
|
||||||
|
"minAppVersion": "1.5.0",
|
||||||
|
"author": "SilentVoid",
|
||||||
|
"authorUrl": "https://github.com/SilentVoid13",
|
||||||
|
"helpUrl": "https://silentvoid13.github.io/Templater/",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
220
.obsidian/plugins/templater-obsidian/styles.css
vendored
Normal file
220
.obsidian/plugins/templater-obsidian/styles.css
vendored
Normal file
|
@ -0,0 +1,220 @@
|
||||||
|
.templater_search {
|
||||||
|
width: calc(100% - 20px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_div {
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_div > .setting-item {
|
||||||
|
border-top: none !important;
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_div > .setting-item > .setting-item-control {
|
||||||
|
justify-content: space-around;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_div
|
||||||
|
> .setting-item
|
||||||
|
> .setting-item-control
|
||||||
|
> .setting-editor-extra-setting-button {
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_donating {
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_title {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: 5px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_template {
|
||||||
|
align-self: center;
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-right: 5px;
|
||||||
|
width: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_cmd {
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-right: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater_div2 > .setting-item {
|
||||||
|
align-content: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater-prompt-div {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater-prompt-form {
|
||||||
|
display: flex;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater-prompt-input {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.templater-button-div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.templater-prompt-input {
|
||||||
|
height: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.templater-prompt-input:focus {
|
||||||
|
border-color: var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .templater-command-bg {
|
||||||
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command {
|
||||||
|
font-size: 0.85em;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
line-height: 1.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .templater-inline .cm-templater-command {
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-templater-opening-tag {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-templater-closing-tag {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
|
||||||
|
color: var(--code-property, #008bff);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
|
||||||
|
color: var(--code-function, #c0d700);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||||
|
color: var(--code-keyword, #00a7aa);
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-atom {
|
||||||
|
color: var(--code-normal, #f39b35);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-value,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-number,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-type {
|
||||||
|
color: var(--code-value, #a06fca);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-def,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-type.cm-def {
|
||||||
|
color: var(--code-normal, var(--text-normal));
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-property,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-property.cm-def,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-attribute {
|
||||||
|
color: var(--code-function, #98e342);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-variable,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-variable-2,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-variable-3,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-meta {
|
||||||
|
color: var(--code-property, #d4d4d4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-callee,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-operator,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-qualifier,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-builtin {
|
||||||
|
color: var(--code-operator, #fc4384);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-tag {
|
||||||
|
color: var(--code-tag, #fc4384);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-comment,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-comment.cm-tag,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
|
||||||
|
color: var(--code-comment, #696d70);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-string,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||||
|
color: var(--code-string, #e6db74);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-header,
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-hr {
|
||||||
|
color: var(--code-keyword, #da7dae);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-link {
|
||||||
|
color: var(--code-normal, #696d70);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian .cm-templater-command.cm-error {
|
||||||
|
border-bottom: 1px solid #c42412;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-hints {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 10;
|
||||||
|
overflow: hidden;
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
margin: 0;
|
||||||
|
padding: 2px;
|
||||||
|
|
||||||
|
-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
-moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid silver;
|
||||||
|
|
||||||
|
background: white;
|
||||||
|
font-size: 90%;
|
||||||
|
font-family: monospace;
|
||||||
|
|
||||||
|
max-height: 20em;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-hint {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 4px;
|
||||||
|
border-radius: 2px;
|
||||||
|
white-space: pre;
|
||||||
|
color: black;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.CodeMirror-hint-active {
|
||||||
|
background: #08f;
|
||||||
|
color: white;
|
||||||
|
}
|
199
.obsidian/workspace.json
vendored
199
.obsidian/workspace.json
vendored
|
@ -1,199 +0,0 @@
|
||||||
{
|
|
||||||
"main": {
|
|
||||||
"id": "be9deeb449429da4",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "d091904bde36fc31",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "8924268c85d25e84",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "markdown",
|
|
||||||
"state": {
|
|
||||||
"file": "fr/creatures/Chevalier vampirien.md",
|
|
||||||
"mode": "source",
|
|
||||||
"backlinks": true,
|
|
||||||
"source": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "vertical"
|
|
||||||
},
|
|
||||||
"left": {
|
|
||||||
"id": "d907bd8c452bf38e",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "4d110daeda144538",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "a2a9010619a6578a",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "file-explorer",
|
|
||||||
"state": {
|
|
||||||
"sortOrder": "alphabetical"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "aa7e81015e1ebc6c",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "search",
|
|
||||||
"state": {
|
|
||||||
"query": "",
|
|
||||||
"matchingCase": false,
|
|
||||||
"explainSearch": false,
|
|
||||||
"collapseAll": false,
|
|
||||||
"extraContext": false,
|
|
||||||
"sortOrder": "alphabetical"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "65467ece34b2afcb",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "bookmarks",
|
|
||||||
"state": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "horizontal",
|
|
||||||
"width": 297.5
|
|
||||||
},
|
|
||||||
"right": {
|
|
||||||
"id": "cf0a8b60d84c9464",
|
|
||||||
"type": "split",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "08a0bec17b7baacc",
|
|
||||||
"type": "tabs",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "c06742a3827dc484",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "backlink",
|
|
||||||
"state": {
|
|
||||||
"file": "fr/creatures/Chevalier vampirien.md",
|
|
||||||
"collapseAll": false,
|
|
||||||
"extraContext": false,
|
|
||||||
"sortOrder": "alphabetical",
|
|
||||||
"showSearch": false,
|
|
||||||
"searchQuery": "",
|
|
||||||
"backlinkCollapsed": false,
|
|
||||||
"unlinkedCollapsed": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "a72106ae733e2848",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "outgoing-link",
|
|
||||||
"state": {
|
|
||||||
"file": "fr/creatures/Chevalier vampirien.md",
|
|
||||||
"linksCollapsed": false,
|
|
||||||
"unlinkedCollapsed": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "8ac2069edbb3befa",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "tag",
|
|
||||||
"state": {
|
|
||||||
"sortOrder": "frequency",
|
|
||||||
"useHierarchy": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "b10c2ddf01a52bc7",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "outline",
|
|
||||||
"state": {
|
|
||||||
"file": "fr/creatures/Chevalier vampirien.md"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"currentTab": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"direction": "horizontal",
|
|
||||||
"width": 285.5
|
|
||||||
},
|
|
||||||
"left-ribbon": {
|
|
||||||
"hiddenItems": {
|
|
||||||
"switcher:Ouvrir le sélecteur rapide": false,
|
|
||||||
"graph:Ouvrir la vue graphique": false,
|
|
||||||
"templates:Insérer le modèle": false,
|
|
||||||
"command-palette:Ouvrir la palette de commandes": false,
|
|
||||||
"markdown-importer:Ouvrir l'importateur Markdown": false,
|
|
||||||
"yet-another-obsidian-synchronizer:YAOS": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"active": "8924268c85d25e84",
|
|
||||||
"lastOpenFiles": [
|
|
||||||
"fr/creatures/Aristocrate.md",
|
|
||||||
"fr/creatures/index.md",
|
|
||||||
"fr/creatures/Bête.md",
|
|
||||||
"fr/creatures/Humanoïde.md",
|
|
||||||
"fr/creatures/Redresseurs.md",
|
|
||||||
"fr/creatures/Bandits Vampiriens.md",
|
|
||||||
"fr/creatures/Mort-vivant.md",
|
|
||||||
"fr/creatures/Loup-Garou.md",
|
|
||||||
"fr/creatures/Loup.md",
|
|
||||||
"fr/creatures/Garde.md",
|
|
||||||
"fr/creatures/Fiélon.md",
|
|
||||||
"fr/creatures/Diablotin.md",
|
|
||||||
"fr/creatures/Créatures.md",
|
|
||||||
"fr/creatures/Corbeau-Garou.md",
|
|
||||||
"fr/creatures/Chevalier vampirien.md",
|
|
||||||
"fr/world/places/Eana.md",
|
|
||||||
"fr/books/Grimoire.md",
|
|
||||||
"fr/classes/scholar.md",
|
|
||||||
"fr/world/index.md",
|
|
||||||
"fr/world/awakening.md",
|
|
||||||
"fr/books/Adventurers.md",
|
|
||||||
"fr/creatures",
|
|
||||||
"en/books/Grimoire.md",
|
|
||||||
"en/books/Adventurers.md",
|
|
||||||
"index.md",
|
|
||||||
"media/logoDragons.png",
|
|
||||||
"en/books/index.md",
|
|
||||||
"fr/books/index.md",
|
|
||||||
"media/banners/banner_eana.jpeg",
|
|
||||||
"media/banners/banner_eana.jpeg.crdownload",
|
|
||||||
"media/banners",
|
|
||||||
"media/Nouveau dossier",
|
|
||||||
"fr/world/gods",
|
|
||||||
"fr/world/persons",
|
|
||||||
"fr/world/creatures",
|
|
||||||
"fr/world/places",
|
|
||||||
"fr/world",
|
|
||||||
"templates",
|
|
||||||
"media/classes/scholar.png",
|
|
||||||
"media/books/ADV01_BC_EN.png",
|
|
||||||
"media/Fateforge_Logo_white.png",
|
|
||||||
"media/Fateforge_Logo_black.png",
|
|
||||||
"media/Dragons-Fateforge-5e-logo.png",
|
|
||||||
"media/Dragons_logo.png",
|
|
||||||
"media/books/LEG12_BC_FR.png",
|
|
||||||
"media/books/LEG12_BC_EN.png"
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -6,10 +6,23 @@ aliases:
|
||||||
cssclasses:
|
cssclasses:
|
||||||
- book
|
- book
|
||||||
cover: "[[ADV01_BC_EN.png]]"
|
cover: "[[ADV01_BC_EN.png]]"
|
||||||
release-date:
|
release-date: 01/04/2018
|
||||||
|
book-type: Base book
|
||||||
|
tags:
|
||||||
|
- book
|
||||||
---
|
---
|
||||||
|
|
||||||
![[ADV01_BC_EN.png]]
|
> [!local] ![[fr_flag.svg|28]]
|
||||||
|
> [[fr/books/Adventurers|Aventuriers]]
|
||||||
|
|
||||||
|
> [!wiki] Aventuriers
|
||||||
|
> ![[ADV01_BC_EN.png]]
|
||||||
|
>
|
||||||
|
> | | |
|
||||||
|
> | ----------------------- | ------------- |
|
||||||
|
> | **Type** | Base book |
|
||||||
|
> | **Author(s)** | Team Agate |
|
||||||
|
> | **Published** | April 2018 |
|
||||||
|
|
||||||
Adventurers is the core rulebook of the Fateforge series. It is intended for the use of both players and leaders, and is composed of three parts:
|
Adventurers is the core rulebook of the Fateforge series. It is intended for the use of both players and leaders, and is composed of three parts:
|
||||||
|
|
||||||
|
|
0
en/world/places/Free City.md
Normal file
0
en/world/places/Free City.md
Normal file
|
@ -4,7 +4,7 @@ thumbnail: "[[ADV01_BC_FR.png]]"
|
||||||
cssclasses:
|
cssclasses:
|
||||||
- book
|
- book
|
||||||
tags:
|
tags:
|
||||||
- book
|
- livre
|
||||||
aliases:
|
aliases:
|
||||||
- Aventuriers
|
- Aventuriers
|
||||||
release-date: 01/04/2018
|
release-date: 01/04/2018
|
||||||
|
@ -13,6 +13,8 @@ authors:
|
||||||
- Équipe Agate
|
- Équipe Agate
|
||||||
link:
|
link:
|
||||||
---
|
---
|
||||||
|
> [!local] ![[us_flag.svg|28]]
|
||||||
|
> [[en/books/Adventurers|Adventurers]]
|
||||||
|
|
||||||
> [!wiki] Aventuriers
|
> [!wiki] Aventuriers
|
||||||
> ![[ADV01_BC_FR.png]]
|
> ![[ADV01_BC_FR.png]]
|
||||||
|
|
|
@ -4,7 +4,7 @@ thumbnail: "[[GRI01_BC_FR.png]]"
|
||||||
cssclasses:
|
cssclasses:
|
||||||
- book
|
- book
|
||||||
tags:
|
tags:
|
||||||
- book
|
- livre
|
||||||
aliases:
|
aliases:
|
||||||
- Grimoire
|
- Grimoire
|
||||||
release-date: 2019-10-01
|
release-date: 2019-10-01
|
||||||
|
@ -23,7 +23,7 @@ authors:
|
||||||
> | **Auteur(s)** | Équipe Agate |
|
> | **Auteur(s)** | Équipe Agate |
|
||||||
> | **Date de publication** | Octobre 2019 |
|
> | **Date de publication** | Octobre 2019 |
|
||||||
|
|
||||||
***Grimoire*** est le deuxième volume de la gamme Dragons. Dédié à la magie et aux lanceurs de sorts, il traite les sujets suivants :
|
**_Grimoire_** est le deuxième volume de la gamme Dragons. Dédié à la magie et aux lanceurs de sorts, il traite les sujets suivants :
|
||||||
|
|
||||||
**Magie modulaire.** Le système modulaire vous permet d’adapter le jeu à la mise en scène que vous souhaitez, d’une fantasy épique et débridée à une approche beaucoup plus sobre et subtile. Vous découvrirez par exemple des règles spécifiques pour des réussites critiques liées à la magie, le retour à la vie ou la modification de sort.
|
**Magie modulaire.** Le système modulaire vous permet d’adapter le jeu à la mise en scène que vous souhaitez, d’une fantasy épique et débridée à une approche beaucoup plus sobre et subtile. Vous découvrirez par exemple des règles spécifiques pour des réussites critiques liées à la magie, le retour à la vie ou la modification de sort.
|
||||||
|
|
||||||
|
|
20
fr/books/creatures-1.md
Normal file
20
fr/books/creatures-1.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
title: Créatures
|
||||||
|
aliases:
|
||||||
|
- Créatures
|
||||||
|
- Créatures 1
|
||||||
|
release-date:
|
||||||
|
cover: "[[CRE01_BC_FR.png]]"
|
||||||
|
book-type: Livre de Base
|
||||||
|
authors:
|
||||||
|
- Équipe Agate
|
||||||
|
---
|
||||||
|
|
||||||
|
> [!wiki]+ Créatures
|
||||||
|
> ![[CRE01_BC_FR.png]]
|
||||||
|
>
|
||||||
|
> | | |
|
||||||
|
> | ----------------------- | ------------- |
|
||||||
|
> | **Type** | Livre de Base |
|
||||||
|
> | **Auteur(s)** | Équipe Agate |
|
||||||
|
> | **Date de publication** | |
|
2
media/fr_flag.svg
Normal file
2
media/fr_flag.svg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>
|
After Width: | Height: | Size: 249 B |
26
media/us_flag.svg
Normal file
26
media/us_flag.svg
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1235" height="650" viewBox="0 0 7410 3900">
|
||||||
|
<rect width="7410" height="3900" fill="#b22234"/>
|
||||||
|
<path d="M0,450H7410m0,600H0m0,600H7410m0,600H0m0,600H7410m0,600H0" stroke="#fff" stroke-width="300"/>
|
||||||
|
<rect width="2964" height="2100" fill="#3c3b6e"/>
|
||||||
|
<g fill="#fff">
|
||||||
|
<g id="s18">
|
||||||
|
<g id="s9">
|
||||||
|
<g id="s5">
|
||||||
|
<g id="s4">
|
||||||
|
<path id="s" d="M247,90 317.534230,307.082039 132.873218,172.917961H361.126782L176.465770,307.082039z"/>
|
||||||
|
<use xlink:href="#s" y="420"/>
|
||||||
|
<use xlink:href="#s" y="840"/>
|
||||||
|
<use xlink:href="#s" y="1260"/>
|
||||||
|
</g>
|
||||||
|
<use xlink:href="#s" y="1680"/>
|
||||||
|
</g>
|
||||||
|
<use xlink:href="#s4" x="247" y="210"/>
|
||||||
|
</g>
|
||||||
|
<use xlink:href="#s9" x="494"/>
|
||||||
|
</g>
|
||||||
|
<use xlink:href="#s18" x="988"/>
|
||||||
|
<use xlink:href="#s9" x="1976"/>
|
||||||
|
<use xlink:href="#s5" x="2470"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 874 B |
8
templates/wiki book.md
Normal file
8
templates/wiki book.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
> [!wiki] <% tp.frontmatter.title %>
|
||||||
|
> !<% tp.frontmatter.cover %>
|
||||||
|
>
|
||||||
|
> | | |
|
||||||
|
> | ----------------------- | -------------------------------------------------------------- | --- | ----- |
|
||||||
|
> | **Type** | <% tp.frontmatter["book-type"] %> |
|
||||||
|
> | **Auteur(s)** | <% tp.frontmatter.authors.map(prop => `${prop}`).join(", ") %> |
|
||||||
|
> | **Date de publication** | <% tp.frontmatter["release-date"] | | "" %> |
|
Loading…
Reference in a new issue