merge
This commit is contained in:
commit
64da944e85
11 changed files with 11962 additions and 9638 deletions
2
.obsidian/plugins/fantasy-calendar/data.json
vendored
2
.obsidian/plugins/fantasy-calendar/data.json
vendored
|
@ -373,7 +373,7 @@
|
|||
"event": false,
|
||||
"calendar": false
|
||||
},
|
||||
"eventFrontmatter": true,
|
||||
"eventFrontmatter": false,
|
||||
"parseDates": true,
|
||||
"settingsToggleState": {
|
||||
"calendars": true,
|
||||
|
|
44
.obsidian/plugins/fantasy-calendar/main.js
vendored
44
.obsidian/plugins/fantasy-calendar/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "fantasy-calendar",
|
||||
"name": "Fantasy Calendar",
|
||||
"version": "2.3.10",
|
||||
"version": "2.3.11",
|
||||
"minAppVersion": "0.12.10",
|
||||
"author": "Jeremy Valentine",
|
||||
"description": "Fantasy calendars in Obsidian!",
|
||||
|
|
41
.obsidian/plugins/homepage/main.js
vendored
41
.obsidian/plugins/homepage/main.js
vendored
|
@ -1699,6 +1699,7 @@ var DEFAULT = {
|
|||
momentFormat: "YYYY-MM-DD",
|
||||
workspace: "Home",
|
||||
workspaceEnabled: false,
|
||||
openOnStartup: true,
|
||||
hasRibbonIcon: true,
|
||||
openMode: Mode.ReplaceAll,
|
||||
manualOpenMode: Mode.Retain,
|
||||
|
@ -1725,15 +1726,13 @@ var HomepageSettingTab = class extends import_obsidian2.PluginSettingTab {
|
|||
display() {
|
||||
var _a;
|
||||
const workspacesMode = this.plugin.workspacesMode();
|
||||
const dailynotesAutorun = getDailynotesAutorun(this.app);
|
||||
this.containerEl.empty();
|
||||
if (getDailynotesAutorun(this.app)) {
|
||||
this.containerEl.insertAdjacentHTML("afterbegin", "<div class='mod-warning' style='margin-bottom: 20px'>Daily Notes' 'Open daily note on startup' setting is not compatible with this plugin, so functionality has been disabled.</div>");
|
||||
}
|
||||
const suggestor = workspacesMode ? WorkspaceSuggest : FileSuggest;
|
||||
const homepageDesc = `The name of the ${workspacesMode ? "workspace" : "note or canvas"} to open on startup.`;
|
||||
const homepageDesc = `The name of the ${workspacesMode ? "workspace" : "note or canvas"} to open.`;
|
||||
const homepage = workspacesMode ? "workspace" : "defaultNote";
|
||||
if (this.plugin.settings.useMoment && !workspacesMode) {
|
||||
let dateSetting = new import_obsidian2.Setting(this.containerEl).setName("Homepage format").setDesc("A valid Moment format specification determining the note or canvas to be opened on startup.").addMomentFormat((text) => text.setDefaultFormat("YYYY-MM-DD").setValue(this.plugin.settings.momentFormat).onChange((value) => __async(this, null, function* () {
|
||||
let dateSetting = new import_obsidian2.Setting(this.containerEl).setName("Homepage format").setDesc("A valid Moment format specification determining the note or canvas to open.").addMomentFormat((text) => text.setDefaultFormat("YYYY-MM-DD").setValue(this.plugin.settings.momentFormat).onChange((value) => __async(this, null, function* () {
|
||||
this.plugin.settings.momentFormat = value;
|
||||
yield this.plugin.saveSettings();
|
||||
})));
|
||||
|
@ -1755,10 +1754,18 @@ var HomepageSettingTab = class extends import_obsidian2.PluginSettingTab {
|
|||
if ((_a = this.plugin.workspacePlugin) == null ? void 0 : _a.enabled) {
|
||||
this.addToggle("Use workspaces", "Open a workspace, instead of a note or canvas, as the homepage.", "workspaceEnabled", (_) => this.display(), true);
|
||||
}
|
||||
let ribbonSetting = this.addToggle("Use ribbon icon", "Show a little house on the ribbon, allowing you to quickly access the homepage.", "hasRibbonIcon", (value) => this.plugin.setIcon(value), true);
|
||||
ribbonSetting.settingEl.setAttribute("style", "padding-top: 70px; border-top: none !important");
|
||||
let startupSetting = this.addToggle("Open on startup", "When launching Obsidian, open the homepage.", "openOnStartup", (_) => this.display(), true);
|
||||
if (dailynotesAutorun) {
|
||||
startupSetting.descEl.createDiv({
|
||||
text: `This setting has been disabled, as it isn't compatible with Daily Notes' "Open daily note on startup" functionality. To use it, disable the Daily Notes setting.`,
|
||||
attr: { class: "mod-warning" }
|
||||
});
|
||||
this.disableSetting(startupSetting.settingEl);
|
||||
}
|
||||
startupSetting.settingEl.style.cssText += "padding-top: 30px; border-top: none !important";
|
||||
this.addToggle("Use ribbon icon", "Show a little house on the ribbon, allowing you to quickly access the homepage.", "hasRibbonIcon", (value) => this.plugin.setIcon(value), true);
|
||||
this.addHeading("Vault environment");
|
||||
this.addDropdown("Opening method", "Determine how extant tabs and panes are affected on startup.", "openMode", Mode);
|
||||
let openingSetting = this.addDropdown("Opening method", "Determine how extant tabs and panes are affected on startup.", "openMode", Mode);
|
||||
this.addDropdown("Manual opening method", "Determine how extant tabs and panes are affected when opening with commands or the ribbon button.", "manualOpenMode", Mode);
|
||||
this.addToggle("Auto-create", "If the homepage doesn't exist, create a note with the specified name.", "autoCreate");
|
||||
this.addToggle("Pin", "Pin the homepage when opening.", "pin");
|
||||
|
@ -1767,15 +1774,18 @@ var HomepageSettingTab = class extends import_obsidian2.PluginSettingTab {
|
|||
this.addToggle("Revert view on close", "When navigating away from the homepage, restore the default view.", "revertView", (value) => this.plugin.setReversion(value));
|
||||
this.addToggle("Auto-scroll", "When opening the homepage, scroll to the bottom and focus on the last line.", "autoScroll");
|
||||
if (getDataviewPlugin(this.plugin.app)) {
|
||||
let refreshSetting = this.addToggle("Refresh Dataview", "Always attempt to reload Dataview views when opening the homepage.", "refreshDataview");
|
||||
refreshSetting.descEl.createDiv({
|
||||
this.addToggle("Refresh Dataview", "Always attempt to reload Dataview views when opening the homepage.", "refreshDataview").descEl.createDiv({
|
||||
text: "Requires Dataview auto-refresh to be enabled.",
|
||||
attr: { class: "mod-warning" }
|
||||
});
|
||||
}
|
||||
if (workspacesMode) {
|
||||
Array.from(document.getElementsByClassName(HIDDEN)).forEach((s) => s.setAttribute("style", "opacity: .5; pointer-events: none !important"));
|
||||
}
|
||||
if (workspacesMode)
|
||||
Array.from(document.getElementsByClassName(HIDDEN)).forEach(this.disableSetting);
|
||||
if (!this.settings.openOnStartup || dailynotesAutorun)
|
||||
this.disableSetting(openingSetting.settingEl);
|
||||
}
|
||||
disableSetting(setting) {
|
||||
setting.setAttribute("style", "opacity: .5; pointer-events: none !important;");
|
||||
}
|
||||
addHeading(name) {
|
||||
const heading = new import_obsidian2.Setting(this.containerEl).setHeading().setName(name);
|
||||
|
@ -1894,7 +1904,7 @@ var Homepage = class extends import_obsidian3.Plugin {
|
|||
return yield ntp._checkForNewTab(e);
|
||||
});
|
||||
}
|
||||
if (activeInitially)
|
||||
if (activeInitially && this.settings.openOnStartup)
|
||||
yield this.openHomepage();
|
||||
this.loaded = true;
|
||||
}));
|
||||
|
@ -1961,8 +1971,7 @@ var Homepage = class extends import_obsidian3.Plugin {
|
|||
});
|
||||
this.executing = true;
|
||||
this.homepage = this.getHomepageName();
|
||||
if (getDailynotesAutorun(this.app)) {
|
||||
new import_obsidian3.Notice("Daily Notes' 'Open daily note on startup' setting is not compatible with Homepage. Disable one of the conflicting plugins.");
|
||||
if (getDailynotesAutorun(this.app) && !this.loaded) {
|
||||
return;
|
||||
} else if (!this.settings.autoCreate && (yield nonextant())) {
|
||||
new import_obsidian3.Notice(`Homepage "${this.homepage}" does not exist.`);
|
||||
|
|
2
.obsidian/plugins/homepage/manifest.json
vendored
2
.obsidian/plugins/homepage/manifest.json
vendored
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "homepage",
|
||||
"name": "Homepage",
|
||||
"version": "2.7.4",
|
||||
"version": "2.8.1",
|
||||
"minAppVersion": "1.0",
|
||||
"description": "Open a specified note, canvas, or workspace on startup.",
|
||||
"author": "novov",
|
||||
|
|
265
.obsidian/plugins/obsidian-projects/data.json
vendored
265
.obsidian/plugins/obsidian-projects/data.json
vendored
|
@ -1,17 +1,33 @@
|
|||
{
|
||||
"version": 2,
|
||||
"projects": [
|
||||
{
|
||||
"id": "6fad7d3e-5f03-47ae-8c3d-847630a0286c",
|
||||
"name": "PNJ",
|
||||
"path": "PNJ",
|
||||
"recursive": true,
|
||||
"id": "6fad7d3e-5f03-47ae-8c3d-847630a0286c",
|
||||
"fieldConfig": {
|
||||
"class": {
|
||||
"options": [
|
||||
"Prolétariat",
|
||||
"Religieux",
|
||||
"Politique",
|
||||
"Divin",
|
||||
"Pègre"
|
||||
]
|
||||
},
|
||||
"status": {
|
||||
"options": [
|
||||
"TODO",
|
||||
"WIP",
|
||||
"DONE"
|
||||
]
|
||||
}
|
||||
},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"views": [
|
||||
{
|
||||
"id": "abe285ba-ef0c-48f8-9b1e-947d7b45fc83",
|
||||
"name": "Table",
|
||||
"type": "table",
|
||||
"config": {
|
||||
"fieldConfig": {
|
||||
"Avatars": {
|
||||
|
@ -72,6 +88,9 @@
|
|||
"sortField": "class",
|
||||
"sortAsc": true
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": [
|
||||
{
|
||||
|
@ -106,12 +125,12 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"id": "abe285ba-ef0c-48f8-9b1e-947d7b45fc83",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
},
|
||||
{
|
||||
"id": "63645eb2-4562-4c61-842f-b7a5dd4e3d17",
|
||||
"name": "Board",
|
||||
"type": "board",
|
||||
"config": {
|
||||
"groupByField": "status",
|
||||
"columns": {
|
||||
|
@ -128,52 +147,52 @@
|
|||
"weight": 3
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "63645eb2-4562-4c61-842f-b7a5dd4e3d17",
|
||||
"name": "Board",
|
||||
"type": "board"
|
||||
},
|
||||
{
|
||||
"id": "01f7e93f-eae0-45d9-b8e9-e2390d99593a",
|
||||
"name": "Gallery",
|
||||
"type": "gallery",
|
||||
"config": {
|
||||
"coverField": "image",
|
||||
"fitStyle": "contain"
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "01f7e93f-eae0-45d9-b8e9-e2390d99593a",
|
||||
"name": "Gallery",
|
||||
"type": "gallery"
|
||||
}
|
||||
],
|
||||
"dataview": false,
|
||||
"query": "TABLE type AS \"Type\", image AS image\n",
|
||||
"excludedNotes": [],
|
||||
"fieldConfig": {
|
||||
"class": {
|
||||
"options": [
|
||||
"Prolétariat",
|
||||
"Religieux",
|
||||
"Politique",
|
||||
"Divin",
|
||||
"Pègre"
|
||||
]
|
||||
},
|
||||
"status": {
|
||||
"options": [
|
||||
"TODO",
|
||||
"WIP",
|
||||
"DONE"
|
||||
]
|
||||
"newNotesFolder": "",
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "PNJ",
|
||||
"recursive": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "c404306f-e64f-44a4-8420-f1f305c0724c",
|
||||
"name": "Lieux",
|
||||
"path": "Locations",
|
||||
"recursive": true,
|
||||
"id": "c404306f-e64f-44a4-8420-f1f305c0724c",
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"views": [
|
||||
{
|
||||
"id": "f8a8c207-7a4e-43ed-b688-24c130d7c36e",
|
||||
"name": "Table",
|
||||
"type": "table",
|
||||
"config": {
|
||||
"fieldConfig": {
|
||||
"banner": {
|
||||
|
@ -183,20 +202,32 @@
|
|||
"hide": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "f8a8c207-7a4e-43ed-b688-24c130d7c36e",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
},
|
||||
{
|
||||
"id": "eebb97fd-6a92-4e58-b47b-f10f1c269043",
|
||||
"name": "Board",
|
||||
"type": "board",
|
||||
"config": {
|
||||
"groupByField": "status"
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "eebb97fd-6a92-4e58-b47b-f10f1c269043",
|
||||
"name": "Board",
|
||||
"type": "board"
|
||||
},
|
||||
{
|
||||
"id": "88e6a45b-648f-4a7c-b0ff-18ee0c78128a",
|
||||
"name": "Board 1",
|
||||
"type": "board",
|
||||
"config": {
|
||||
"groupByField": "type",
|
||||
"columns": {
|
||||
|
@ -213,66 +244,107 @@
|
|||
"weight": 3
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "b748eaec-7198-4404-b03d-6187c3d1f8f7",
|
||||
"name": "Quêtes",
|
||||
"path": "Scénario/Quêtes",
|
||||
"recursive": true,
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"fieldConfig": {},
|
||||
"views": [
|
||||
{
|
||||
"id": "fc505f4f-5c5e-41fd-8d8c-a24d26cd43b5",
|
||||
"name": "Table",
|
||||
"type": "table",
|
||||
"config": {}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "88e6a45b-648f-4a7c-b0ff-18ee0c78128a",
|
||||
"name": "Board 1",
|
||||
"type": "board"
|
||||
}
|
||||
],
|
||||
"dataview": false
|
||||
"newNotesFolder": "",
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "Locations",
|
||||
"recursive": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "a75ff437-fb86-47f2-9a08-0b5f664d3124",
|
||||
"name": "Scenes",
|
||||
"path": "Scenes",
|
||||
"recursive": true,
|
||||
"name": "Quêtes",
|
||||
"id": "b748eaec-7198-4404-b03d-6187c3d1f8f7",
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"fieldConfig": {},
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"views": [
|
||||
{
|
||||
"id": "4dc257c7-7fbd-43f6-a2ce-6fa1121ece84",
|
||||
"config": {},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "fc505f4f-5c5e-41fd-8d8c-a24d26cd43b5",
|
||||
"name": "Table",
|
||||
"type": "table",
|
||||
"type": "table"
|
||||
}
|
||||
],
|
||||
"newNotesFolder": "",
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "Scénario/Quêtes",
|
||||
"recursive": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Scenes",
|
||||
"id": "a75ff437-fb86-47f2-9a08-0b5f664d3124",
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"views": [
|
||||
{
|
||||
"config": {
|
||||
"fieldConfig": {
|
||||
"alias": {
|
||||
"hide": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "4dc257c7-7fbd-43f6-a2ce-6fa1121ece84",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
}
|
||||
]
|
||||
],
|
||||
"newNotesFolder": "",
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "Scenes",
|
||||
"recursive": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "f96d231c-f717-4738-b055-3923edb416ac",
|
||||
"name": "Factions",
|
||||
"path": "Factions",
|
||||
"recursive": true,
|
||||
"id": "f96d231c-f717-4738-b055-3923edb416ac",
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [
|
||||
"Templates/Organisations.md"
|
||||
],
|
||||
"fieldConfig": {},
|
||||
"excludedNotes": [],
|
||||
"isDefault": false,
|
||||
"views": [
|
||||
{
|
||||
"id": "71c6b47a-9b3d-4023-be85-35b9e3a96ef5",
|
||||
"name": "Table",
|
||||
"type": "table",
|
||||
"config": {
|
||||
"fieldConfig": {
|
||||
"banner_y": {
|
||||
|
@ -291,11 +363,32 @@
|
|||
"hide": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"id": "71c6b47a-9b3d-4023-be85-35b9e3a96ef5",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
}
|
||||
],
|
||||
"dataview": false
|
||||
"newNotesFolder": "",
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "Factions",
|
||||
"recursive": true
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": 1
|
||||
"preferences": {
|
||||
"projectSizeLimit": 1000,
|
||||
"frontmatter": {
|
||||
"quoteStrings": "PLAIN"
|
||||
}
|
||||
}
|
||||
}
|
21228
.obsidian/plugins/obsidian-projects/main.js
vendored
21228
.obsidian/plugins/obsidian-projects/main.js
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "obsidian-projects",
|
||||
"name": "Projects",
|
||||
"version": "1.8.0",
|
||||
"version": "1.11.5",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Project management for Obsidian.",
|
||||
"author": "Marcus Olsson",
|
||||
|
|
3
.obsidian/vault-stats.json
vendored
3
.obsidian/vault-stats.json
vendored
|
@ -1 +1,2 @@
|
|||
{"history":{"2023-03-01":{"words":845,"characters":1255,"sentences":0,"files":123,"totalWords":29296,"totalCharacters":231518,"totalSentences":821},"2023-03-02":{"words":39,"characters":281,"sentences":0,"files":123,"totalWords":29296,"totalCharacters":231518,"totalSentences":821},"2023-03-03":{"words":644,"characters":3897,"sentences":23,"files":123,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-05":{"words":0,"characters":0,"sentences":0,"files":0,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-06":{"words":0,"characters":0,"sentences":0,"files":0,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-07":{"words":16,"characters":103,"sentences":0,"files":123,"totalWords":29956,"totalCharacters":233253,"totalSentences":844},"2023-03-08":{"words":6,"characters":47,"sentences":1,"files":123,"totalWords":29964,"totalCharacters":233304,"totalSentences":845},"2023-03-10":{"words":15,"characters":102,"sentences":0,"files":124,"totalWords":30010,"totalCharacters":233650,"totalSentences":846},"2023-03-14":{"words":68,"characters":445,"sentences":4,"files":126,"totalWords":30274,"totalCharacters":235667,"totalSentences":857},"2023-03-15":{"words":585,"characters":3851,"sentences":9,"files":129,"totalWords":30998,"totalCharacters":240608,"totalSentences":868}},"modifiedFiles":{"Notes/Cyrillane - Rencontres.md":{"words":{"initial":68,"current":96},"characters":{"initial":423,"current":643},"sentences":{"initial":3,"current":3}},"Notes/Rencontres.md":{"words":{"initial":67,"current":3},"characters":{"initial":433,"current":24},"sentences":{"initial":3,"current":1}},"Dashboard.md":{"words":{"initial":95,"current":95},"characters":{"initial":766,"current":765},"sentences":{"initial":3,"current":3}},"Factions/Empire de Kartaçöl.md":{"words":{"initial":113,"current":246},"characters":{"initial":991,"current":1970},"sentences":{"initial":4,"current":4}},"Locations/Le Temple Bucolique.md":{"words":{"initial":112,"current":425},"characters":{"initial":922,"current":2882},"sentences":{"initial":1,"current":9}},"Locations/Cyrillane.md":{"words":{"initial":225,"current":234},"characters":{"initial":1602,"current":1662},"sentences":{"initial":6,"current":6}},"Tables/Tableaux de rencontres.md":{"words":{"initial":19,"current":72},"characters":{"initial":131,"current":444},"sentences":{"initial":1,"current":1}},"Notes/Cité Franche - Rencontres.md":{"words":{"initial":1,"current":5},"characters":{"initial":1,"current":27},"sentences":{"initial":1,"current":1}},"Scénario/Chapitre 1.3 - Cyrillane.md":{"words":{"initial":7,"current":7},"characters":{"initial":37,"current":38},"sentences":{"initial":1,"current":1}},"Scénario/Absolue Nécessitée.md":{"words":{"initial":1700,"current":1745},"characters":{"initial":11166,"current":11458},"sentences":{"initial":67,"current":68}},"Locations/Kratéïra.md":{"words":{"initial":109,"current":109},"characters":{"initial":889,"current":888},"sentences":{"initial":1,"current":1}}}}
|
||||
|
||||
{"history":{"2023-03-01":{"words":845,"characters":1255,"sentences":0,"files":123,"totalWords":29296,"totalCharacters":231518,"totalSentences":821},"2023-03-02":{"words":39,"characters":281,"sentences":0,"files":123,"totalWords":29296,"totalCharacters":231518,"totalSentences":821},"2023-03-03":{"words":644,"characters":3897,"sentences":23,"files":123,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-05":{"words":0,"characters":0,"sentences":0,"files":0,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-06":{"words":0,"characters":0,"sentences":0,"files":0,"totalWords":29940,"totalCharacters":233149,"totalSentences":844},"2023-03-07":{"words":16,"characters":103,"sentences":0,"files":123,"totalWords":29956,"totalCharacters":233253,"totalSentences":844},"2023-03-08":{"words":6,"characters":47,"sentences":1,"files":123,"totalWords":29964,"totalCharacters":233304,"totalSentences":845},"2023-03-10":{"words":15,"characters":102,"sentences":0,"files":124,"totalWords":30010,"totalCharacters":233650,"totalSentences":846},"2023-03-14":{"words":68,"characters":445,"sentences":4,"files":126,"totalWords":30274,"totalCharacters":235667,"totalSentences":857},"2023-03-15":{"words":585,"characters":3851,"sentences":9,"files":129,"totalWords":30998,"totalCharacters":240608,"totalSentences":868}},"modifiedFiles":{"Notes/Cyrillane - Rencontres.md":{"words":{"initial":68,"current":96},"characters":{"initial":423,"current":643},"sentences":{"initial":3,"current":3}},"Notes/Rencontres.md":{"words":{"initial":67,"current":3},"characters":{"initial":433,"current":24},"sentences":{"initial":3,"current":1}},"Dashboard.md":{"words":{"initial":95,"current":95},"characters":{"initial":766,"current":765},"sentences":{"initial":3,"current":3}},"Factions/Empire de Kartaçöl.md":{"words":{"initial":113,"current":246},"characters":{"initial":991,"current":1970},"sentences":{"initial":4,"current":4}},"Locations/Le Temple Bucolique.md":{"words":{"initial":112,"current":425},"characters":{"initial":922,"current":2882},"sentences":{"initial":1,"current":9}},"Locations/Cyrillane.md":{"words":{"initial":225,"current":234},"characters":{"initial":1602,"current":1662},"sentences":{"initial":6,"current":6}},"Tables/Tableaux de rencontres.md":{"words":{"initial":19,"current":72},"characters":{"initial":131,"current":444},"sentences":{"initial":1,"current":1}},"Notes/Cité Franche - Rencontres.md":{"words":{"initial":1,"current":5},"characters":{"initial":1,"current":27},"sentences":{"initial":1,"current":1}},"Scénario/Chapitre 1.3 - Cyrillane.md":{"words":{"initial":7,"current":7},"characters":{"initial":37,"current":38},"sentences":{"initial":1,"current":1}},"Scénario/Absolue Nécessitée.md":{"words":{"initial":1700,"current":1745},"characters":{"initial":11166,"current":11458},"sentences":{"initial":67,"current":68}},"Locations/Kratéïra.md":{"words":{"initial":109,"current":109},"characters":{"initial":889,"current":888},"sentences":{"initial":1,"current":1}}}}
|
||||
|
|
|
@ -103,6 +103,14 @@ A l'assemblée, les débats sont monopolisé par 5 groupes majoritaires. Aucun n
|
|||
# Chapitre 3 : Vivépine
|
||||
|
||||
# Chapitre 4 : La Cyrillane
|
||||
## Plan
|
||||
- Présenter la situation du pays par une ou deux quêtes
|
||||
- Arrivée à [Kratéïra](../Locations/Kratéïra.md)
|
||||
- Presenter les différentes factions (toutes en même temps ?)
|
||||
- Guerre civile : les joueurs participent à l'émeute et soutiennent l'une ou l'autre faction.
|
||||
- Négociations avec
|
||||
|
||||
|
||||
|
||||
# Chapitre 6 : Retour à la Cité
|
||||
|
||||
|
|
|
@ -2,4 +2,5 @@
|
|||
tags:
|
||||
- ch1
|
||||
type: Scénario
|
||||
---
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in a new issue