diff --git a/CHANGELOG.md b/CHANGELOG.md
index 795aaf3..dac8b51 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,10 @@
# Changelog
Date format : day/month/year
-## 1.9.4 - ??/??/2022 - ?
+## 1.9.4 - 01/01/2023 - New Year bugfixes
+- Fix prepared settings bugs (trackers icons sometimes disappears).
- GM Toolbox : Left clic do only actors with an active player as owner.
+- Compendiums : Added Celestial Realms missing Titles : `Bond with a spirit` and `Moon cultist`.
## 1.9.3 - 29/09/2022 - Combat Tracker
- Fix for L5R combat tracker bar who have disappeared.
diff --git a/system/babele/fr/l5r5e.core-titles.json b/system/babele/fr/l5r5e.core-titles.json
index 966a2e0..1c4fc5c 100644
--- a/system/babele/fr/l5r5e.core-titles.json
+++ b/system/babele/fr/l5r5e.core-titles.json
@@ -274,6 +274,18 @@
"name": "Yōkai Hunter (WIP)",
"description": "
Cursus
",
"book_reference": "Décret de la nature"
+ },
+ {
+ "id": "Bond with a spirit",
+ "name": "Bond with a spirit (WIP)",
+ "description": "Cursus
",
+ "book_reference": "Les Royaumes Célestes"
+ },
+ {
+ "id": "Moon cultist",
+ "name": "Moon cultist (WIP)",
+ "description": "Cursus
",
+ "book_reference": "Les Royaumes Célestes"
}
]
}
diff --git a/system/packs/core-titles.db b/system/packs/core-titles.db
index 6512d09..be80db3 100644
--- a/system/packs/core-titles.db
+++ b/system/packs/core-titles.db
@@ -43,3 +43,5 @@
{"_id":"L5RCoreTit000043","name":"Forester","permission":{"default":0},"type":"title","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"24","description":"Curriculum
","book_reference":"Writ of the Wild p.142"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/title.svg","effects":[]}
{"_id":"L5RCoreTit000044","name":"Temple Abbot","permission":{"default":0},"type":"title","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"36","description":"Curriculum
","book_reference":"Writ of the Wild p.143"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/title.svg","effects":[]}
{"_id":"L5RCoreTit000045","name":"Yōkai Hunter","permission":{"default":0},"type":"title","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"36","description":"Curriculum
","book_reference":"Writ of the Wild p.143"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/title.svg","effects":[]}
+{"_id":"L5RCoreTit000046","name":"Bond with a spirit","permission":{"default":0},"type":"title","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"25","description":"Curriculum
","book_reference":"Celestial Realms p.140"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/title.svg","effects":[]}
+{"_id":"L5RCoreTit000047","name":"Moon cultist","permission":{"default":0},"type":"title","data":{"in_curriculum":false,"xp_used":0,"rank":1,"bought_at_rank":0,"ring":"void","xp_cost":"30","description":"Curriculum
","book_reference":"Celestial Realms p.140"},"sort":100001,"flags":{},"img":"systems/l5r5e/assets/icons/items/title.svg","effects":[]}
diff --git a/system/scripts/config.js b/system/scripts/config.js
index 742af4a..5b53ca8 100644
--- a/system/scripts/config.js
+++ b/system/scripts/config.js
@@ -1,31 +1,27 @@
-export const L5R5E = {};
-
-L5R5E.paths = {
- assets: `systems/l5r5e/assets/`,
- templates: `systems/l5r5e/templates/`,
-};
-
-L5R5E.money = [50, 10];
-L5R5E.stances = ["earth", "air", "water", "fire", "void"];
-L5R5E.roles = ["artisan", "bushi", "courtier", "monk", "sage", "shinobi", "shugenja"];
-
-L5R5E.xp = {
- costPerRank: [0, 20, 24, 32, 44, 60],
- bondCostPerRank: [0, 3, 4, 6, 8, 10],
- ringCostMultiplier: 3,
- skillCostMultiplier: 2,
- techniqueCost: 3,
-};
-
-L5R5E.regex = {
- techniqueDifficulty: /^@([TS]):([^|]+?)(?:\|(min|max)(?:\(([^)]+?)\))?)?$/,
-};
-
-L5R5E.initiativeSkills = {
- intrigue: "sentiment",
- duel: "meditation",
- skirmish: "tactics",
- mass_battle: "command",
+export const L5R5E = {
+ paths: {
+ assets: `systems/l5r5e/assets/`,
+ templates: `systems/l5r5e/templates/`,
+ },
+ money: [50, 10],
+ stances: ["earth", "air", "water", "fire", "void"],
+ roles: ["artisan", "bushi", "courtier", "monk", "sage", "shinobi", "shugenja"],
+ xp: {
+ costPerRank: [0, 20, 24, 32, 44, 60],
+ bondCostPerRank: [0, 3, 4, 6, 8, 10],
+ ringCostMultiplier: 3,
+ skillCostMultiplier: 2,
+ techniqueCost: 3,
+ },
+ regex: {
+ techniqueDifficulty: /^@([TS]):([^|]+?)(?:\|(min|max)(?:\(([^)]+?)\))?)?$/,
+ },
+ initiativeSkills: {
+ intrigue: "sentiment",
+ duel: "meditation",
+ skirmish: "tactics",
+ mass_battle: "command",
+ },
};
// *** Techniques ***
diff --git a/system/system.json b/system/system.json
index 500b126..b8f8f4a 100644
--- a/system/system.json
+++ b/system/system.json
@@ -7,11 +7,11 @@
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
- "download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.9.3/raw/l5r5e.zip?job=build",
- "version": "1.9.3",
+ "download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.9.4/raw/l5r5e.zip?job=build",
+ "version": "1.9.4",
"compatibility": {
"minimum": 10,
- "verified": "10.286"
+ "verified": "10.291"
},
"manifestPlusVersion": "1.2.0",
"socket": true,