From c24f4fe5029821d499c7f956d525cf667b07b794 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Tue, 25 Feb 2025 21:29:52 +0100 Subject: [PATCH] Ajout comp libres --- README.md | 2 +- modules/actors/tedeum-actor.js | 8 +++++++ modules/app/tedeum-character-creator.js | 10 ++++++++- modules/app/tedeum-combat.js | 2 +- packs/aides/{000025.log => 000029.log} | 0 packs/aides/CURRENT | 2 +- packs/aides/LOG | 16 ++++++------- packs/aides/LOG.old | 16 ++++++------- .../{MANIFEST-000023 => MANIFEST-000027} | Bin 220 -> 220 bytes packs/armes/{000127.log => 000131.log} | 0 packs/armes/CURRENT | 2 +- packs/armes/LOG | 14 ++++++------ packs/armes/LOG.old | 14 ++++++------ .../{MANIFEST-000125 => MANIFEST-000129} | Bin 174 -> 177 bytes packs/armures/{000127.log => 000131.log} | 0 packs/armures/CURRENT | 2 +- packs/armures/LOG | 14 ++++++------ packs/armures/LOG.old | 14 ++++++------ .../{MANIFEST-000125 => MANIFEST-000129} | Bin 173 -> 176 bytes packs/competences/{000124.log => 000128.log} | 0 packs/competences/CURRENT | 2 +- packs/competences/LOG | 14 ++++++------ packs/competences/LOG.old | 14 ++++++------ .../{MANIFEST-000122 => MANIFEST-000126} | Bin 173 -> 176 bytes packs/education/{000132.log => 000136.log} | 0 packs/education/{000055.ldb => 000138.ldb} | Bin 245904 -> 245910 bytes packs/education/CURRENT | 2 +- packs/education/LOG | 21 ++++++++++++------ packs/education/LOG.old | 14 ++++++------ packs/education/MANIFEST-000130 | Bin 177 -> 0 bytes packs/education/MANIFEST-000134 | Bin 0 -> 379 bytes packs/graces/{000126.log => 000130.log} | 0 packs/graces/CURRENT | 2 +- packs/graces/LOG | 14 ++++++------ packs/graces/LOG.old | 14 ++++++------ .../{MANIFEST-000124 => MANIFEST-000128} | Bin 170 -> 173 bytes packs/maladies/{000126.log => 000130.log} | 0 packs/maladies/CURRENT | 2 +- packs/maladies/LOG | 14 ++++++------ packs/maladies/LOG.old | 14 ++++++------ .../{MANIFEST-000124 => MANIFEST-000128} | Bin 169 -> 172 bytes packs/scenes/{000064.log => 000068.log} | 0 packs/scenes/CURRENT | 2 +- packs/scenes/LOG | 14 ++++++------ packs/scenes/LOG.old | 14 ++++++------ .../{MANIFEST-000062 => MANIFEST-000066} | Bin 207 -> 207 bytes packs/simples/{000126.log => 000130.log} | 0 packs/simples/CURRENT | 2 +- packs/simples/LOG | 14 ++++++------ packs/simples/LOG.old | 14 ++++++------ .../{MANIFEST-000124 => MANIFEST-000128} | Bin 170 -> 173 bytes .../dialogs/character-creator-finished.hbs | 9 ++++++++ 52 files changed, 172 insertions(+), 140 deletions(-) rename packs/aides/{000025.log => 000029.log} (100%) rename packs/aides/{MANIFEST-000023 => MANIFEST-000027} (58%) rename packs/armes/{000127.log => 000131.log} (100%) rename packs/armes/{MANIFEST-000125 => MANIFEST-000129} (72%) rename packs/armures/{000127.log => 000131.log} (100%) rename packs/armures/{MANIFEST-000125 => MANIFEST-000129} (77%) rename packs/competences/{000124.log => 000128.log} (100%) rename packs/competences/{MANIFEST-000122 => MANIFEST-000126} (72%) rename packs/education/{000132.log => 000136.log} (100%) rename packs/education/{000055.ldb => 000138.ldb} (99%) delete mode 100644 packs/education/MANIFEST-000130 create mode 100644 packs/education/MANIFEST-000134 rename packs/graces/{000126.log => 000130.log} (100%) rename packs/graces/{MANIFEST-000124 => MANIFEST-000128} (73%) rename packs/maladies/{000126.log => 000130.log} (100%) rename packs/maladies/{MANIFEST-000124 => MANIFEST-000128} (74%) rename packs/scenes/{000064.log => 000068.log} (100%) rename packs/scenes/{MANIFEST-000062 => MANIFEST-000066} (84%) rename packs/simples/{000126.log => 000130.log} (100%) rename packs/simples/{MANIFEST-000124 => MANIFEST-000128} (73%) diff --git a/README.md b/README.md index 6ebeba6..4e7d56f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Système Foundry pour Te Deum pour un massacre (French RPG, Open Sesam Games, Official) +# Système Foundry pour Te Deum pour un Massacre (French RPG, Open Sesame Games, Official) This is a base game system with functionnal character sheets for the game Te Deum pour un massacre. diff --git a/modules/actors/tedeum-actor.js b/modules/actors/tedeum-actor.js index f826b27..b9bc6c4 100644 --- a/modules/actors/tedeum-actor.js +++ b/modules/actors/tedeum-actor.js @@ -64,6 +64,14 @@ export class TeDeumActor extends Actor { super._preUpdate(changed, options, user); } + + getCompetenceScore(compName) { + let competence = this.items.find(item => item.type == "competence" && item.name.toLowerCase() == compName.toLowerCase()) + if (competence) { + return competence.system.score + } + return 0 + } /* -------------------------------------------- */ _onUpdate(changed, options, userId) { diff --git a/modules/app/tedeum-character-creator.js b/modules/app/tedeum-character-creator.js index 4038652..44dc2d4 100644 --- a/modules/app/tedeum-character-creator.js +++ b/modules/app/tedeum-character-creator.js @@ -581,9 +581,17 @@ export class TeDeumCharacterCreator { histoire += `

${reponse.question}
${reponse.reponse} (${reponse.compName})

` } await actor.update({ "system.histoire": histoire}) - actor.render(true) + context.pointsCompetence = { + "savoir": { score: actor.getCompetenceScore("Mémoriser"), label: "Savoir" }, + "sensibilite": { score: actor.getCompetenceScore("Perception"), label: "Sensibilité" }, + "entregent": { score: actor.getCompetenceScore("Charme"), label: "Entregent" }, + "puissance": { score: actor.getCompetenceScore("Effort"), label: "Puissance" }, + "complexion": { score: actor.getCompetenceScore("Endurance"), label: "Complexion" }, + "adresse": { score: actor.getCompetenceScore("Initiative"), label: "Adresse" }, + } + const content = await renderTemplate("systems/fvtt-te-deum/templates/dialogs/character-creator-finished.hbs", context) const label = "Terminer" const choiceResult = await foundry.applications.api.DialogV2.wait({ diff --git a/modules/app/tedeum-combat.js b/modules/app/tedeum-combat.js index 5851b20..74745c0 100644 --- a/modules/app/tedeum-combat.js +++ b/modules/app/tedeum-combat.js @@ -5,7 +5,7 @@ export class TeDeumCombat extends Combat { /* -------------------------------------------- */ async rollInitiative(ids, formula = undefined, messageOptions = {} ) { - console.log("Roll INIT !") + //console.log("Roll INIT !") ids = typeof ids === "string" ? [ids] : ids; for (let cId of ids) { const c = this.combatants.get(cId); diff --git a/packs/aides/000025.log b/packs/aides/000029.log similarity index 100% rename from packs/aides/000025.log rename to packs/aides/000029.log diff --git a/packs/aides/CURRENT b/packs/aides/CURRENT index 7fbb623..3bf5164 100644 --- a/packs/aides/CURRENT +++ b/packs/aides/CURRENT @@ -1 +1 @@ -MANIFEST-000023 +MANIFEST-000027 diff --git a/packs/aides/LOG b/packs/aides/LOG index b79f7c1..13de709 100644 --- a/packs/aides/LOG +++ b/packs/aides/LOG @@ -1,8 +1,8 @@ -2025/02/22-22:33:49.671443 7f59317fa6c0 Recovering log #21 -2025/02/22-22:33:49.682157 7f59317fa6c0 Delete type=3 #19 -2025/02/22-22:33:49.682211 7f59317fa6c0 Delete type=0 #21 -2025/02/22-22:43:19.821691 7f5693fff6c0 Level-0 table #26: started -2025/02/22-22:43:19.821739 7f5693fff6c0 Level-0 table #26: 0 bytes OK -2025/02/22-22:43:19.827819 7f5693fff6c0 Delete type=0 #24 -2025/02/22-22:43:19.828050 7f5693fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) -2025/02/22-22:43:19.841442 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.885720 7fcd22ffd6c0 Recovering log #25 +2025/02/25-20:49:36.980833 7fcd22ffd6c0 Delete type=3 #23 +2025/02/25-20:49:36.980955 7fcd22ffd6c0 Delete type=0 #25 +2025/02/25-21:29:18.220253 7fcd20bff6c0 Level-0 table #30: started +2025/02/25-21:29:18.220310 7fcd20bff6c0 Level-0 table #30: 0 bytes OK +2025/02/25-21:29:18.251218 7fcd20bff6c0 Delete type=0 #28 +2025/02/25-21:29:18.384283 7fcd20bff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) +2025/02/25-21:29:18.384413 7fcd20bff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) diff --git a/packs/aides/LOG.old b/packs/aides/LOG.old index 1f39cc3..b79f7c1 100644 --- a/packs/aides/LOG.old +++ b/packs/aides/LOG.old @@ -1,8 +1,8 @@ -2025/02/21-17:44:00.297169 7f5931ffb6c0 Recovering log #16 -2025/02/21-17:44:00.350341 7f5931ffb6c0 Delete type=3 #14 -2025/02/21-17:44:00.350497 7f5931ffb6c0 Delete type=0 #16 -2025/02/21-17:47:55.710312 7f5693fff6c0 Level-0 table #22: started -2025/02/21-17:47:55.710349 7f5693fff6c0 Level-0 table #22: 0 bytes OK -2025/02/21-17:47:55.716766 7f5693fff6c0 Delete type=0 #20 -2025/02/21-17:47:55.743124 7f5693fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) -2025/02/21-17:47:55.743202 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.671443 7f59317fa6c0 Recovering log #21 +2025/02/22-22:33:49.682157 7f59317fa6c0 Delete type=3 #19 +2025/02/22-22:33:49.682211 7f59317fa6c0 Delete type=0 #21 +2025/02/22-22:43:19.821691 7f5693fff6c0 Level-0 table #26: started +2025/02/22-22:43:19.821739 7f5693fff6c0 Level-0 table #26: 0 bytes OK +2025/02/22-22:43:19.827819 7f5693fff6c0 Delete type=0 #24 +2025/02/22-22:43:19.828050 7f5693fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) +2025/02/22-22:43:19.841442 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) diff --git a/packs/aides/MANIFEST-000023 b/packs/aides/MANIFEST-000027 similarity index 58% rename from packs/aides/MANIFEST-000023 rename to packs/aides/MANIFEST-000027 index 84b0a97255bd272fbd6b1123853d5389f3d94867..aae82958e11e26c398cf5505f4917f3ac3de700f 100644 GIT binary patch delta 37 pcmcb^c!zPqJ~@wOc@qu>MkX0f24-0nv4(>)`9NG*AXlD63;?kD2Lu2B delta 37 pcmcb^c!zPqKDj41dcSZmFfvJSGB8WBh^^^n4gzr{fm~@8F#zY42)6(L diff --git a/packs/armes/000127.log b/packs/armes/000131.log similarity index 100% rename from packs/armes/000127.log rename to packs/armes/000131.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index 70936fe..ea072ca 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000125 +MANIFEST-000129 diff --git a/packs/armes/LOG b/packs/armes/LOG index f49a87b..b140047 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,7 +1,7 @@ -2025/02/22-22:33:49.571959 7f5930ff96c0 Recovering log #123 -2025/02/22-22:33:49.581451 7f5930ff96c0 Delete type=3 #121 -2025/02/22-22:33:49.581507 7f5930ff96c0 Delete type=0 #123 -2025/02/22-22:43:19.756476 7f5693fff6c0 Level-0 table #128: started -2025/02/22-22:43:19.756512 7f5693fff6c0 Level-0 table #128: 0 bytes OK -2025/02/22-22:43:19.763078 7f5693fff6c0 Delete type=0 #126 -2025/02/22-22:43:19.770534 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.106601 7fcd21ffb6c0 Recovering log #127 +2025/02/25-20:49:36.195396 7fcd21ffb6c0 Delete type=3 #125 +2025/02/25-20:49:36.195529 7fcd21ffb6c0 Delete type=0 #127 +2025/02/25-21:29:17.947467 7fcd20bff6c0 Level-0 table #132: started +2025/02/25-21:29:17.947511 7fcd20bff6c0 Level-0 table #132: 0 bytes OK +2025/02/25-21:29:17.987072 7fcd20bff6c0 Delete type=0 #130 +2025/02/25-21:29:17.987251 7fcd20bff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index d7bb137..f49a87b 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:43:59.860699 7f59317fa6c0 Recovering log #119 -2025/02/21-17:43:59.916350 7f59317fa6c0 Delete type=3 #117 -2025/02/21-17:43:59.916493 7f59317fa6c0 Delete type=0 #119 -2025/02/21-17:47:55.663886 7f5693fff6c0 Level-0 table #124: started -2025/02/21-17:47:55.663923 7f5693fff6c0 Level-0 table #124: 0 bytes OK -2025/02/21-17:47:55.670649 7f5693fff6c0 Delete type=0 #122 -2025/02/21-17:47:55.677247 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.571959 7f5930ff96c0 Recovering log #123 +2025/02/22-22:33:49.581451 7f5930ff96c0 Delete type=3 #121 +2025/02/22-22:33:49.581507 7f5930ff96c0 Delete type=0 #123 +2025/02/22-22:43:19.756476 7f5693fff6c0 Level-0 table #128: started +2025/02/22-22:43:19.756512 7f5693fff6c0 Level-0 table #128: 0 bytes OK +2025/02/22-22:43:19.763078 7f5693fff6c0 Delete type=0 #126 +2025/02/22-22:43:19.770534 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) diff --git a/packs/armes/MANIFEST-000125 b/packs/armes/MANIFEST-000129 similarity index 72% rename from packs/armes/MANIFEST-000125 rename to packs/armes/MANIFEST-000129 index bcf15be51c370561ccadc3b8d17600248e9fdd13..012ca58eee36748b104be69189b2a02743c92003 100644 GIT binary patch delta 41 rcmZ3-xRG%}ztWQbcxYt2lw&dLXxvkwqN<#jFT! diff --git a/packs/armures/000127.log b/packs/armures/000131.log similarity index 100% rename from packs/armures/000127.log rename to packs/armures/000131.log diff --git a/packs/armures/CURRENT b/packs/armures/CURRENT index 70936fe..ea072ca 100644 --- a/packs/armures/CURRENT +++ b/packs/armures/CURRENT @@ -1 +1 @@ -MANIFEST-000125 +MANIFEST-000129 diff --git a/packs/armures/LOG b/packs/armures/LOG index bdcb609..2242412 100644 --- a/packs/armures/LOG +++ b/packs/armures/LOG @@ -1,7 +1,7 @@ -2025/02/22-22:33:49.584858 7f59317fa6c0 Recovering log #123 -2025/02/22-22:33:49.595075 7f59317fa6c0 Delete type=3 #121 -2025/02/22-22:33:49.595272 7f59317fa6c0 Delete type=0 #123 -2025/02/22-22:43:19.749434 7f5693fff6c0 Level-0 table #128: started -2025/02/22-22:43:19.749479 7f5693fff6c0 Level-0 table #128: 0 bytes OK -2025/02/22-22:43:19.756348 7f5693fff6c0 Delete type=0 #126 -2025/02/22-22:43:19.770523 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.212555 7fcd22ffd6c0 Recovering log #127 +2025/02/25-20:49:36.305645 7fcd22ffd6c0 Delete type=3 #125 +2025/02/25-20:49:36.305755 7fcd22ffd6c0 Delete type=0 #127 +2025/02/25-21:29:17.834303 7fcd20bff6c0 Level-0 table #132: started +2025/02/25-21:29:17.834368 7fcd20bff6c0 Level-0 table #132: 0 bytes OK +2025/02/25-21:29:17.871779 7fcd20bff6c0 Delete type=0 #130 +2025/02/25-21:29:17.987222 7fcd20bff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) diff --git a/packs/armures/LOG.old b/packs/armures/LOG.old index a9a9b07..bdcb609 100644 --- a/packs/armures/LOG.old +++ b/packs/armures/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:43:59.921453 7f5931ffb6c0 Recovering log #119 -2025/02/21-17:43:59.978668 7f5931ffb6c0 Delete type=3 #117 -2025/02/21-17:43:59.978782 7f5931ffb6c0 Delete type=0 #119 -2025/02/21-17:47:55.657052 7f5693fff6c0 Level-0 table #124: started -2025/02/21-17:47:55.657095 7f5693fff6c0 Level-0 table #124: 0 bytes OK -2025/02/21-17:47:55.663742 7f5693fff6c0 Delete type=0 #122 -2025/02/21-17:47:55.677232 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.584858 7f59317fa6c0 Recovering log #123 +2025/02/22-22:33:49.595075 7f59317fa6c0 Delete type=3 #121 +2025/02/22-22:33:49.595272 7f59317fa6c0 Delete type=0 #123 +2025/02/22-22:43:19.749434 7f5693fff6c0 Level-0 table #128: started +2025/02/22-22:43:19.749479 7f5693fff6c0 Level-0 table #128: 0 bytes OK +2025/02/22-22:43:19.756348 7f5693fff6c0 Delete type=0 #126 +2025/02/22-22:43:19.770523 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) diff --git a/packs/armures/MANIFEST-000125 b/packs/armures/MANIFEST-000129 similarity index 77% rename from packs/armures/MANIFEST-000125 rename to packs/armures/MANIFEST-000129 index 192a27f205f74ac26f99baaf9d8e91934df7da0b..a88c8c9dbbe93f77f06876ecf615993013ad6c21 100644 GIT binary patch delta 41 rcmZ3>xPfs(pHjQ&9b+yAMy4i4P6p;?Miw~((G9yn0?ixPfs(uky1`%xPQTb6}x&ycbC%r2fiU4;JiV)fU4X_s(`$TwoXLM>rLO3~9W;HWB}4w(#>aliu?mw>h($ delta 240 zcmVU+ z4ox})Vs8$6LlPPn0AvlfynO=$0TBo=E;*sV7;rj``I{_#Jhy+zPw^@G!-8vG^>khaG000000RR9108K*lhPOz% z1GoeVw<{Tn0Cy3J5Yv|mzXKd8h?WlYy)Z<1LS{p9I5kIDQ*e4{Qfo#5JV_iNfwB(U q8UP6eA`xE@;kQq}0}}xa0Py1Mi}VgM!t@TA43}}h109!)zyk{J&`vx6 diff --git a/packs/education/CURRENT b/packs/education/CURRENT index 00d8c47..f816b37 100644 --- a/packs/education/CURRENT +++ b/packs/education/CURRENT @@ -1 +1 @@ -MANIFEST-000130 +MANIFEST-000134 diff --git a/packs/education/LOG b/packs/education/LOG index a3b789c..62d19c9 100644 --- a/packs/education/LOG +++ b/packs/education/LOG @@ -1,7 +1,14 @@ -2025/02/22-22:33:49.598250 7f5931ffb6c0 Recovering log #128 -2025/02/22-22:33:49.609114 7f5931ffb6c0 Delete type=3 #126 -2025/02/22-22:33:49.609187 7f5931ffb6c0 Delete type=0 #128 -2025/02/22-22:43:19.742523 7f5693fff6c0 Level-0 table #133: started -2025/02/22-22:43:19.742609 7f5693fff6c0 Level-0 table #133: 0 bytes OK -2025/02/22-22:43:19.749216 7f5693fff6c0 Delete type=0 #131 -2025/02/22-22:43:19.770500 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.314175 7fcd217fa6c0 Recovering log #132 +2025/02/25-20:49:36.403485 7fcd217fa6c0 Delete type=3 #130 +2025/02/25-20:49:36.403607 7fcd217fa6c0 Delete type=0 #132 +2025/02/25-21:29:17.987386 7fcd20bff6c0 Level-0 table #137: started +2025/02/25-21:29:18.006349 7fcd20bff6c0 Level-0 table #137: 5726 bytes OK +2025/02/25-21:29:18.041844 7fcd20bff6c0 Delete type=0 #135 +2025/02/25-21:29:18.159515 7fcd20bff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at '!items!v4mzjKOYibOsJ9Wn' @ 334 : 1 +2025/02/25-21:29:18.159529 7fcd20bff6c0 Compacting 1@0 + 1@1 files +2025/02/25-21:29:18.179100 7fcd20bff6c0 Generated table #138@0: 71 keys, 245910 bytes +2025/02/25-21:29:18.179146 7fcd20bff6c0 Compacted 1@0 + 1@1 files => 245910 bytes +2025/02/25-21:29:18.219660 7fcd20bff6c0 compacted to: files[ 0 1 0 0 0 0 0 ] +2025/02/25-21:29:18.219809 7fcd20bff6c0 Delete type=2 #55 +2025/02/25-21:29:18.220047 7fcd20bff6c0 Delete type=2 #137 +2025/02/25-21:29:18.220167 7fcd20bff6c0 Manual compaction at level-0 from '!items!v4mzjKOYibOsJ9Wn' @ 334 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) diff --git a/packs/education/LOG.old b/packs/education/LOG.old index 2707eb0..a3b789c 100644 --- a/packs/education/LOG.old +++ b/packs/education/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:43:59.982694 7f59327fc6c0 Recovering log #124 -2025/02/21-17:44:00.043945 7f59327fc6c0 Delete type=3 #122 -2025/02/21-17:44:00.044048 7f59327fc6c0 Delete type=0 #124 -2025/02/21-17:47:55.670798 7f5693fff6c0 Level-0 table #129: started -2025/02/21-17:47:55.670851 7f5693fff6c0 Level-0 table #129: 0 bytes OK -2025/02/21-17:47:55.677050 7f5693fff6c0 Delete type=0 #127 -2025/02/21-17:47:55.677262 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.598250 7f5931ffb6c0 Recovering log #128 +2025/02/22-22:33:49.609114 7f5931ffb6c0 Delete type=3 #126 +2025/02/22-22:33:49.609187 7f5931ffb6c0 Delete type=0 #128 +2025/02/22-22:43:19.742523 7f5693fff6c0 Level-0 table #133: started +2025/02/22-22:43:19.742609 7f5693fff6c0 Level-0 table #133: 0 bytes OK +2025/02/22-22:43:19.749216 7f5693fff6c0 Delete type=0 #131 +2025/02/22-22:43:19.770500 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) diff --git a/packs/education/MANIFEST-000130 b/packs/education/MANIFEST-000130 deleted file mode 100644 index fed89fb8ecedfc97c263669745294001a0a4c09d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 177 zcmX?c_*qpO10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAei18!ykcfaYHqQjMP^`b zLAs@fK}C3uW0i3Uqa7my2(UAnPiW*xQcN?x4iixaaIlnMy6U$2Ie{z!-9ZmH#mXZIv}@!k;M=Ix7r9w diff --git a/packs/maladies/000126.log b/packs/maladies/000130.log similarity index 100% rename from packs/maladies/000126.log rename to packs/maladies/000130.log diff --git a/packs/maladies/CURRENT b/packs/maladies/CURRENT index f8370cf..a8d9908 100644 --- a/packs/maladies/CURRENT +++ b/packs/maladies/CURRENT @@ -1 +1 @@ -MANIFEST-000124 +MANIFEST-000128 diff --git a/packs/maladies/LOG b/packs/maladies/LOG index b048d98..f9e2054 100644 --- a/packs/maladies/LOG +++ b/packs/maladies/LOG @@ -1,7 +1,7 @@ -2025/02/22-22:33:49.629130 7f5930ff96c0 Recovering log #122 -2025/02/22-22:33:49.639881 7f5930ff96c0 Delete type=3 #120 -2025/02/22-22:33:49.639935 7f5930ff96c0 Delete type=0 #122 -2025/02/22-22:43:19.777079 7f5693fff6c0 Level-0 table #127: started -2025/02/22-22:43:19.777104 7f5693fff6c0 Level-0 table #127: 0 bytes OK -2025/02/22-22:43:19.783503 7f5693fff6c0 Delete type=0 #125 -2025/02/22-22:43:19.797421 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.541079 7fcd21ffb6c0 Recovering log #126 +2025/02/25-20:49:36.646693 7fcd21ffb6c0 Delete type=3 #124 +2025/02/25-20:49:36.646854 7fcd21ffb6c0 Delete type=0 #126 +2025/02/25-21:29:18.042069 7fcd20bff6c0 Level-0 table #131: started +2025/02/25-21:29:18.042179 7fcd20bff6c0 Level-0 table #131: 0 bytes OK +2025/02/25-21:29:18.079407 7fcd20bff6c0 Delete type=0 #129 +2025/02/25-21:29:18.220125 7fcd20bff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) diff --git a/packs/maladies/LOG.old b/packs/maladies/LOG.old index 285af23..b048d98 100644 --- a/packs/maladies/LOG.old +++ b/packs/maladies/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:44:00.115577 7f59317fa6c0 Recovering log #118 -2025/02/21-17:44:00.167423 7f59317fa6c0 Delete type=3 #116 -2025/02/21-17:44:00.167553 7f59317fa6c0 Delete type=0 #118 -2025/02/21-17:47:55.695434 7f5693fff6c0 Level-0 table #123: started -2025/02/21-17:47:55.695473 7f5693fff6c0 Level-0 table #123: 0 bytes OK -2025/02/21-17:47:55.701961 7f5693fff6c0 Delete type=0 #121 -2025/02/21-17:47:55.710108 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.629130 7f5930ff96c0 Recovering log #122 +2025/02/22-22:33:49.639881 7f5930ff96c0 Delete type=3 #120 +2025/02/22-22:33:49.639935 7f5930ff96c0 Delete type=0 #122 +2025/02/22-22:43:19.777079 7f5693fff6c0 Level-0 table #127: started +2025/02/22-22:43:19.777104 7f5693fff6c0 Level-0 table #127: 0 bytes OK +2025/02/22-22:43:19.783503 7f5693fff6c0 Delete type=0 #125 +2025/02/22-22:43:19.797421 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) diff --git a/packs/maladies/MANIFEST-000124 b/packs/maladies/MANIFEST-000128 similarity index 74% rename from packs/maladies/MANIFEST-000124 rename to packs/maladies/MANIFEST-000128 index 73cb9913130b351dc19a940f538129aa2681f97c..edef71a725ec94de86356a26f2de6d75e3e6bacc 100644 GIT binary patch delta 41 rcmZ31b6cro#O;@>ww$_MixN;;|U2? diff --git a/packs/scenes/000064.log b/packs/scenes/000068.log similarity index 100% rename from packs/scenes/000064.log rename to packs/scenes/000068.log diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT index 5ca571d..7873dc6 100644 --- a/packs/scenes/CURRENT +++ b/packs/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000062 +MANIFEST-000066 diff --git a/packs/scenes/LOG b/packs/scenes/LOG index c8c6c01..a2edf98 100644 --- a/packs/scenes/LOG +++ b/packs/scenes/LOG @@ -1,7 +1,7 @@ -2025/02/22-22:33:49.656683 7f5931ffb6c0 Recovering log #60 -2025/02/22-22:33:49.666865 7f5931ffb6c0 Delete type=3 #58 -2025/02/22-22:33:49.666921 7f5931ffb6c0 Delete type=0 #60 -2025/02/22-22:43:19.791156 7f5693fff6c0 Level-0 table #65: started -2025/02/22-22:43:19.791229 7f5693fff6c0 Level-0 table #65: 0 bytes OK -2025/02/22-22:43:19.797285 7f5693fff6c0 Delete type=0 #63 -2025/02/22-22:43:19.797477 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.767182 7fcd217fa6c0 Recovering log #64 +2025/02/25-20:49:36.873245 7fcd217fa6c0 Delete type=3 #62 +2025/02/25-20:49:36.873362 7fcd217fa6c0 Delete type=0 #64 +2025/02/25-21:29:18.123099 7fcd20bff6c0 Level-0 table #69: started +2025/02/25-21:29:18.123157 7fcd20bff6c0 Level-0 table #69: 0 bytes OK +2025/02/25-21:29:18.159308 7fcd20bff6c0 Delete type=0 #67 +2025/02/25-21:29:18.220157 7fcd20bff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old index 14ce44c..c8c6c01 100644 --- a/packs/scenes/LOG.old +++ b/packs/scenes/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:44:00.233536 7f59327fc6c0 Recovering log #56 -2025/02/21-17:44:00.291027 7f59327fc6c0 Delete type=3 #54 -2025/02/21-17:44:00.291155 7f59327fc6c0 Delete type=0 #56 -2025/02/21-17:47:55.702164 7f5693fff6c0 Level-0 table #61: started -2025/02/21-17:47:55.702213 7f5693fff6c0 Level-0 table #61: 0 bytes OK -2025/02/21-17:47:55.709876 7f5693fff6c0 Delete type=0 #59 -2025/02/21-17:47:55.710126 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.656683 7f5931ffb6c0 Recovering log #60 +2025/02/22-22:33:49.666865 7f5931ffb6c0 Delete type=3 #58 +2025/02/22-22:33:49.666921 7f5931ffb6c0 Delete type=0 #60 +2025/02/22-22:43:19.791156 7f5693fff6c0 Level-0 table #65: started +2025/02/22-22:43:19.791229 7f5693fff6c0 Level-0 table #65: 0 bytes OK +2025/02/22-22:43:19.797285 7f5693fff6c0 Delete type=0 #63 +2025/02/22-22:43:19.797477 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000062 b/packs/scenes/MANIFEST-000066 similarity index 84% rename from packs/scenes/MANIFEST-000062 rename to packs/scenes/MANIFEST-000066 index 110ff2db11f897d6f1b183a669f4c580f0882914..3032381be78f1c4d0c81fe44ef3fadb6be6a8a4d 100644 GIT binary patch delta 37 pcmX@lc%E^>MmZCM&-XbP7@3?o8JJyISQJnHo(1B%0J&}~ECALW2?hWF delta 37 pcmX@lc%E^>M!C04Y_mBS7@6!j8JHbdSa=%??}4}uK&}%D3jn*T2dn@9 diff --git a/packs/simples/000126.log b/packs/simples/000130.log similarity index 100% rename from packs/simples/000126.log rename to packs/simples/000130.log diff --git a/packs/simples/CURRENT b/packs/simples/CURRENT index f8370cf..a8d9908 100644 --- a/packs/simples/CURRENT +++ b/packs/simples/CURRENT @@ -1 +1 @@ -MANIFEST-000124 +MANIFEST-000128 diff --git a/packs/simples/LOG b/packs/simples/LOG index 70c29ff..88e7cf4 100644 --- a/packs/simples/LOG +++ b/packs/simples/LOG @@ -1,7 +1,7 @@ -2025/02/22-22:33:49.642688 7f59317fa6c0 Recovering log #122 -2025/02/22-22:33:49.653372 7f59317fa6c0 Delete type=3 #120 -2025/02/22-22:33:49.653442 7f59317fa6c0 Delete type=0 #122 -2025/02/22-22:43:19.783617 7f5693fff6c0 Level-0 table #127: started -2025/02/22-22:43:19.783640 7f5693fff6c0 Level-0 table #127: 0 bytes OK -2025/02/22-22:43:19.791036 7f5693fff6c0 Delete type=0 #125 -2025/02/22-22:43:19.797431 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) +2025/02/25-20:49:36.655819 7fcd22ffd6c0 Recovering log #126 +2025/02/25-20:49:36.756075 7fcd22ffd6c0 Delete type=3 #124 +2025/02/25-20:49:36.756252 7fcd22ffd6c0 Delete type=0 #126 +2025/02/25-21:29:18.079648 7fcd20bff6c0 Level-0 table #131: started +2025/02/25-21:29:18.079709 7fcd20bff6c0 Level-0 table #131: 0 bytes OK +2025/02/25-21:29:18.122915 7fcd20bff6c0 Delete type=0 #129 +2025/02/25-21:29:18.220147 7fcd20bff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) diff --git a/packs/simples/LOG.old b/packs/simples/LOG.old index 66a6822..70c29ff 100644 --- a/packs/simples/LOG.old +++ b/packs/simples/LOG.old @@ -1,7 +1,7 @@ -2025/02/21-17:44:00.171470 7f5931ffb6c0 Recovering log #118 -2025/02/21-17:44:00.229098 7f5931ffb6c0 Delete type=3 #116 -2025/02/21-17:44:00.229246 7f5931ffb6c0 Delete type=0 #118 -2025/02/21-17:47:55.687944 7f5693fff6c0 Level-0 table #123: started -2025/02/21-17:47:55.688004 7f5693fff6c0 Level-0 table #123: 0 bytes OK -2025/02/21-17:47:55.695229 7f5693fff6c0 Delete type=0 #121 -2025/02/21-17:47:55.710089 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) +2025/02/22-22:33:49.642688 7f59317fa6c0 Recovering log #122 +2025/02/22-22:33:49.653372 7f59317fa6c0 Delete type=3 #120 +2025/02/22-22:33:49.653442 7f59317fa6c0 Delete type=0 #122 +2025/02/22-22:43:19.783617 7f5693fff6c0 Level-0 table #127: started +2025/02/22-22:43:19.783640 7f5693fff6c0 Level-0 table #127: 0 bytes OK +2025/02/22-22:43:19.791036 7f5693fff6c0 Delete type=0 #125 +2025/02/22-22:43:19.797431 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) diff --git a/packs/simples/MANIFEST-000124 b/packs/simples/MANIFEST-000128 similarity index 73% rename from packs/simples/MANIFEST-000124 rename to packs/simples/MANIFEST-000128 index 6863457b0348d164713195ffa60c4bc5cb165324..6ea57cc59da2816827c620d02b1be49e97166635 100644 GIT binary patch delta 41 rcmZ3*xR!B3w^BgD>w{bjj7*J;oD9rOj4UcGJClxq1e!nsEkFSP_}B^O delta 38 rcmZ3>xQcN?xBQJ~U(+}k7@2B08JO!>ROU-o7;^%-bwF+dBZ~?E>)Q#5 diff --git a/templates/dialogs/character-creator-finished.hbs b/templates/dialogs/character-creator-finished.hbs index 1342664..59b29f9 100644 --- a/templates/dialogs/character-creator-finished.hbs +++ b/templates/dialogs/character-creator-finished.hbs @@ -5,6 +5,15 @@
L'ensemble des choix a été appliqué sur la fiche de personnage nouvellement créée.
+ +
+ Vous pouvez maintenant répartir les points suivants dans les compétences de votre personnage (score max 5): +
    + {{#each pointsCompetence as |comp idx|}} +
  • Compétences de {{comp.label}} : {{comp.score}} points
  • + {{/each}} +
+
Le Trousseau issu de l'Age Viril a été copié dans zone d'équipement libre de la fiche de personnage, à vous de créer