From cc7de0e53c54bc0346c2be7e708e17ccbb969b34 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Sun, 14 Sep 2025 20:12:02 +0200 Subject: [PATCH] Amelioration diverses pour la magie --- modules/heritiers-actor.js | 21 +++++-- modules/heritiers-utility.js | 2 +- .../{000242.log => 000258.log} | 0 packs/archetypes-fees/CURRENT | 2 +- packs/archetypes-fees/LOG | 16 +++--- packs/archetypes-fees/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 174 -> 174 bytes .../{000242.log => 000258.log} | 0 packs/armes-et-protection/CURRENT | 2 +- packs/armes-et-protection/LOG | 16 +++--- packs/armes-et-protection/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 176 -> 176 bytes .../{000242.log => 000258.log} | 0 packs/atouts-feeriques/CURRENT | 2 +- packs/atouts-feeriques/LOG | 16 +++--- packs/atouts-feeriques/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 176 -> 176 bytes packs/avantages/{000242.log => 000258.log} | 0 packs/avantages/CURRENT | 2 +- packs/avantages/LOG | 16 +++--- packs/avantages/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 176 -> 176 bytes packs/capacites/{000242.log => 000258.log} | 0 packs/capacites/CURRENT | 2 +- packs/capacites/LOG | 16 +++--- packs/capacites/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 174 -> 174 bytes packs/competences/{000246.log => 000262.log} | 0 packs/competences/CURRENT | 2 +- packs/competences/LOG | 16 +++--- packs/competences/LOG.old | 16 +++--- .../{MANIFEST-000244 => MANIFEST-000260} | Bin 178 -> 178 bytes packs/desavantages/{000242.log => 000258.log} | 0 packs/desavantages/CURRENT | 2 +- packs/desavantages/LOG | 16 +++--- packs/desavantages/LOG.old | 16 +++--- .../{MANIFEST-000240 => MANIFEST-000256} | Bin 176 -> 176 bytes packs/magie-sorts/{000043.log => 000059.log} | 0 packs/magie-sorts/CURRENT | 2 +- packs/magie-sorts/LOG | 16 +++--- packs/magie-sorts/LOG.old | 16 +++--- .../{MANIFEST-000041 => MANIFEST-000057} | Bin 173 -> 173 bytes packs/pouvoirs/{000243.log => 000259.log} | 0 packs/pouvoirs/CURRENT | 2 +- packs/pouvoirs/LOG | 16 +++--- packs/pouvoirs/LOG.old | 16 +++--- .../{MANIFEST-000241 => MANIFEST-000257} | Bin 176 -> 176 bytes packs/profils/{000240.log => 000256.log} | 0 packs/profils/CURRENT | 2 +- packs/profils/LOG | 14 ++--- packs/profils/LOG.old | 14 ++--- packs/profils/MANIFEST-000238 | Bin 69 -> 0 bytes packs/profils/MANIFEST-000254 | Bin 0 -> 69 bytes packs/scenes/{000211.log => 000227.log} | 0 packs/scenes/CURRENT | 2 +- packs/scenes/LOG | 16 +++--- packs/scenes/LOG.old | 16 +++--- .../{MANIFEST-000209 => MANIFEST-000225} | Bin 176 -> 176 bytes system.json | 4 +- template.json | 1 + templates/actor-sheet.html | 7 +-- templates/chat-generic-result.html | 53 +++++++++++++++--- templates/item-sort-sheet.html | 7 +++ 63 files changed, 260 insertions(+), 205 deletions(-) rename packs/archetypes-fees/{000242.log => 000258.log} (100%) rename packs/archetypes-fees/{MANIFEST-000240 => MANIFEST-000256} (73%) rename packs/armes-et-protection/{000242.log => 000258.log} (100%) rename packs/armes-et-protection/{MANIFEST-000240 => MANIFEST-000256} (72%) rename packs/atouts-feeriques/{000242.log => 000258.log} (100%) rename packs/atouts-feeriques/{MANIFEST-000240 => MANIFEST-000256} (72%) rename packs/avantages/{000242.log => 000258.log} (100%) rename packs/avantages/{MANIFEST-000240 => MANIFEST-000256} (72%) rename packs/capacites/{000242.log => 000258.log} (100%) rename packs/capacites/{MANIFEST-000240 => MANIFEST-000256} (73%) rename packs/competences/{000246.log => 000262.log} (100%) rename packs/competences/{MANIFEST-000244 => MANIFEST-000260} (71%) rename packs/desavantages/{000242.log => 000258.log} (100%) rename packs/desavantages/{MANIFEST-000240 => MANIFEST-000256} (72%) rename packs/magie-sorts/{000043.log => 000059.log} (100%) rename packs/magie-sorts/{MANIFEST-000041 => MANIFEST-000057} (73%) rename packs/pouvoirs/{000243.log => 000259.log} (100%) rename packs/pouvoirs/{MANIFEST-000241 => MANIFEST-000257} (72%) rename packs/profils/{000240.log => 000256.log} (100%) delete mode 100644 packs/profils/MANIFEST-000238 create mode 100644 packs/profils/MANIFEST-000254 rename packs/scenes/{000211.log => 000227.log} (100%) rename packs/scenes/{MANIFEST-000209 => MANIFEST-000225} (72%) diff --git a/modules/heritiers-actor.js b/modules/heritiers-actor.js index 0133ce4..4e99972 100644 --- a/modules/heritiers-actor.js +++ b/modules/heritiers-actor.js @@ -724,12 +724,12 @@ export class HeritiersActor extends Actor { inDecCarac(key, incDec) { let carac = this.system.caracteristiques[key] carac.value += incDec - if (carac.value < 0 || carac.value > carac.max) { - ui.notifications.warn("Pas assez de points dans cette caractéristique !") + if (carac.value < 0 || carac.value > carac.rang) { + ui.notifications.warn("Pas assez de points dans cette caractéristique ou rang max atteint !") return false } carac.value = Math.max(carac.value, 0) - carac.value = Math.min(carac.value, carac.max) + carac.value = Math.min(carac.value, carac.rang) this.update({ [`system.caracteristiques.${key}`]: carac }) return true } @@ -747,15 +747,24 @@ export class HeritiersActor extends Actor { rollData.mode = "sort" rollData.sort = foundry.utils.duplicate(sort) rollData.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau)) + if (Number(sort.system.sdspecial) && Number(sort.system.sdspecial) > 0) { + rollData.sdValue = Number(sort.system.sdspecial) + } rollData.sortPointsAme = Number(sort.system.niveau) + rollData.totalEsprit = 1 + if (sort.system.competence == "Grand Langage") { + rollData.sortPointsAme *= 2 + rollData.totalEsprit = Math.floor((rollData.sortPointsAme) / 3) + } if (rollData.sortPointsAme > this.system.magie.pointsame.value) { // Vérifier si au moins 1 point d'Esprit est disponible - if (this.system.caracteristiques.esp.value < 1) { - ui.notifications.warn("Pas assez de Points d'Esprit ni de Points d'Ame pour lancer ce sort (requis: 1, disponible: " + this.system.caracteristiques.esp.value + ")") + if (this.system.caracteristiques.esp.value <= rollData.totalEsprit) { + ui.notifications.warn(`Pas assez de Points d'Esprit ni de Points d'Ame pour lancer ce sort (requis: ${rollData.totalEsprit}, disponible: ${this.system.caracteristiques.esp.value})`) return } else { rollData.spendEsprit = true - ui.notifications.warn(`Vous n'avez pas assez de Points d'Ame pour lancer ce sort (requis: ${rollData.sortPointsAme}, disponible: ${this.system.magie.pointsame.value}). Un Point d'Esprit sera utilisé à la place si vous effectuez le lancer.`) + ui.notifications.warn(`Vous n'avez pas assez de Points d'Ame pour lancer ce sort (requis: ${rollData.sortPointsAme}, disponible: ${this.system.magie.pointsame.value}).`) + ui.notifications.warn(`${rollData.totalEsprit} Points d'Esprit seront utilisés à la place si vous effectuez le lancer.`) } } diff --git a/modules/heritiers-utility.js b/modules/heritiers-utility.js index c56b62b..8fc6c9a 100644 --- a/modules/heritiers-utility.js +++ b/modules/heritiers-utility.js @@ -583,7 +583,7 @@ export class HeritiersUtility { // Gestion sort et points d'âme if (rollData.mode == "sort") { if (rollData.spendEsprit) { - actor.inDecCarac("esp", -1) + actor.inDecCarac("esp", rollData.totalEsprit) } else { actor.incDecPointsAme(-rollData.sortPointsAme) if (rollData.sort.system.competence == "Magie du Clan") { diff --git a/packs/archetypes-fees/000242.log b/packs/archetypes-fees/000258.log similarity index 100% rename from packs/archetypes-fees/000242.log rename to packs/archetypes-fees/000258.log diff --git a/packs/archetypes-fees/CURRENT b/packs/archetypes-fees/CURRENT index 803ffe2..0002b46 100644 --- a/packs/archetypes-fees/CURRENT +++ b/packs/archetypes-fees/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/archetypes-fees/LOG b/packs/archetypes-fees/LOG index 4baaa1c..030a8ea 100644 --- a/packs/archetypes-fees/LOG +++ b/packs/archetypes-fees/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.334396 7fa5077fe6c0 Recovering log #238 -2025/09/13-00:19:21.344951 7fa5077fe6c0 Delete type=3 #236 -2025/09/13-00:19:21.345013 7fa5077fe6c0 Delete type=0 #238 -2025/09/13-00:23:49.906242 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.906282 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.919621 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.943471 7fa506bff6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.943533 7fa506bff6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.231652 7f4e4bfff6c0 Recovering log #254 +2025/09/14-18:44:06.327997 7f4e4bfff6c0 Delete type=3 #252 +2025/09/14-18:44:06.328106 7f4e4bfff6c0 Delete type=0 #254 +2025/09/14-20:11:26.870045 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.870068 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.876035 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.890009 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.890094 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) diff --git a/packs/archetypes-fees/LOG.old b/packs/archetypes-fees/LOG.old index fc48637..b0fc3a7 100644 --- a/packs/archetypes-fees/LOG.old +++ b/packs/archetypes-fees/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.465809 7fa507fff6c0 Recovering log #234 -2025/09/12-22:42:55.475838 7fa507fff6c0 Delete type=3 #232 -2025/09/12-22:42:55.475940 7fa507fff6c0 Delete type=0 #234 -2025/09/13-00:19:16.157291 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.157318 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.169152 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.189346 7fa506bff6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.189422 7fa506bff6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.936465 7f4e4b7fe6c0 Recovering log #250 +2025/09/14-18:32:45.947148 7f4e4b7fe6c0 Delete type=3 #248 +2025/09/14-18:32:45.947197 7f4e4b7fe6c0 Delete type=0 #250 +2025/09/14-18:44:00.803313 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:00.803346 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:00.859097 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:00.958916 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2025/09/14-18:44:01.052684 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) diff --git a/packs/archetypes-fees/MANIFEST-000240 b/packs/archetypes-fees/MANIFEST-000256 similarity index 73% rename from packs/archetypes-fees/MANIFEST-000240 rename to packs/archetypes-fees/MANIFEST-000256 index 9c845051988628cb170ad7a5fd8449bbae975773..107ed655b7419ba79fb2fe92c85768cf7d43cc5b 100644 GIT binary patch delta 41 rcmZ3-xQ=l`kJ7~t35Hw@j7*J8oD9rOOf0diE8m2G1e!nsEkFSP_lF7M delta 41 scmZ3-xQ=l`kCOQwkx5((j7%RHIT@HgF|x!ahpsFI348(xd;tmo0QZFo%>V!Z diff --git a/packs/armes-et-protection/000242.log b/packs/armes-et-protection/000258.log similarity index 100% rename from packs/armes-et-protection/000242.log rename to packs/armes-et-protection/000258.log diff --git a/packs/armes-et-protection/CURRENT b/packs/armes-et-protection/CURRENT index 803ffe2..0002b46 100644 --- a/packs/armes-et-protection/CURRENT +++ b/packs/armes-et-protection/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/armes-et-protection/LOG b/packs/armes-et-protection/LOG index a7c31ca..a18ffb6 100644 --- a/packs/armes-et-protection/LOG +++ b/packs/armes-et-protection/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.364108 7fa50cbf96c0 Recovering log #238 -2025/09/13-00:19:21.373869 7fa50cbf96c0 Delete type=3 #236 -2025/09/13-00:19:21.373934 7fa50cbf96c0 Delete type=0 #238 -2025/09/13-00:23:49.943627 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.943672 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.953247 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.997730 7fa506bff6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.997793 7fa506bff6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.392750 7f4e4b7fe6c0 Recovering log #254 +2025/09/14-18:44:06.445647 7f4e4b7fe6c0 Delete type=3 #252 +2025/09/14-18:44:06.445742 7f4e4b7fe6c0 Delete type=0 #254 +2025/09/14-20:11:26.907829 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.907864 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.914179 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.922012 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.932255 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) diff --git a/packs/armes-et-protection/LOG.old b/packs/armes-et-protection/LOG.old index 0e941df..06918ad 100644 --- a/packs/armes-et-protection/LOG.old +++ b/packs/armes-et-protection/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.493084 7fa50d3fa6c0 Recovering log #234 -2025/09/12-22:42:55.503204 7fa50d3fa6c0 Delete type=3 #232 -2025/09/12-22:42:55.503264 7fa50d3fa6c0 Delete type=0 #234 -2025/09/13-00:19:16.181338 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.181386 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.189077 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.189385 7fa506bff6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.189457 7fa506bff6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.963809 7f4e4bfff6c0 Recovering log #250 +2025/09/14-18:32:45.973991 7f4e4bfff6c0 Delete type=3 #248 +2025/09/14-18:32:45.974092 7f4e4bfff6c0 Delete type=0 #250 +2025/09/14-18:44:01.015826 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:01.015851 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:01.052522 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:01.082840 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2025/09/14-18:44:01.145583 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) diff --git a/packs/armes-et-protection/MANIFEST-000240 b/packs/armes-et-protection/MANIFEST-000256 similarity index 72% rename from packs/armes-et-protection/MANIFEST-000240 rename to packs/armes-et-protection/MANIFEST-000256 index 49eebe21dc3a7d308325c5b66cf2ac2a34099d2a..ede17efe5e9dc344be551e24d278c036a114446b 100644 GIT binary patch delta 43 scmdnMxPfs(kBV+=>tb#OMy5t4P6p;CCYBqFeP@eqf<&4?A}t^h00>eF`Tzg` delta 43 tcmdnMxPfs(k4jW$^$KnVMy8L9oD9sL7+G#GTK=4V1tjtbB=Q9$0st?R4FLcE diff --git a/packs/atouts-feeriques/000242.log b/packs/atouts-feeriques/000258.log similarity index 100% rename from packs/atouts-feeriques/000242.log rename to packs/atouts-feeriques/000258.log diff --git a/packs/atouts-feeriques/CURRENT b/packs/atouts-feeriques/CURRENT index 803ffe2..0002b46 100644 --- a/packs/atouts-feeriques/CURRENT +++ b/packs/atouts-feeriques/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/atouts-feeriques/LOG b/packs/atouts-feeriques/LOG index b99393f..b163831 100644 --- a/packs/atouts-feeriques/LOG +++ b/packs/atouts-feeriques/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.308006 7fa50d3fa6c0 Recovering log #238 -2025/09/13-00:19:21.319049 7fa50d3fa6c0 Delete type=3 #236 -2025/09/13-00:19:21.319109 7fa50d3fa6c0 Delete type=0 #238 -2025/09/13-00:23:49.894650 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.894688 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.906014 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.943452 7fa506bff6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.943519 7fa506bff6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.094503 7f4e4affd6c0 Recovering log #254 +2025/09/14-18:44:06.148796 7f4e4affd6c0 Delete type=3 #252 +2025/09/14-18:44:06.148856 7f4e4affd6c0 Delete type=0 #254 +2025/09/14-20:11:26.862468 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.862531 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.869915 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.889984 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.890073 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) diff --git a/packs/atouts-feeriques/LOG.old b/packs/atouts-feeriques/LOG.old index e650254..0737ada 100644 --- a/packs/atouts-feeriques/LOG.old +++ b/packs/atouts-feeriques/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.438389 7fa5077fe6c0 Recovering log #234 -2025/09/12-22:42:55.449024 7fa5077fe6c0 Delete type=3 #232 -2025/09/12-22:42:55.449158 7fa5077fe6c0 Delete type=0 #234 -2025/09/13-00:19:16.107423 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.107448 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.119476 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.144823 7fa506bff6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.144857 7fa506bff6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.910946 7f4e4affd6c0 Recovering log #250 +2025/09/14-18:32:45.921365 7f4e4affd6c0 Delete type=3 #248 +2025/09/14-18:32:45.921475 7f4e4affd6c0 Delete type=0 #250 +2025/09/14-18:44:00.762129 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:00.762193 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:00.803110 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:00.958892 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.958971 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) diff --git a/packs/atouts-feeriques/MANIFEST-000240 b/packs/atouts-feeriques/MANIFEST-000256 similarity index 72% rename from packs/atouts-feeriques/MANIFEST-000240 rename to packs/atouts-feeriques/MANIFEST-000256 index a5146af2c43f75a44e0d136e1294840bd85a62cd..31209e65c9c5ebe2ea016168bc2b103c927fc18f 100644 GIT binary patch delta 43 scmdnMxPfs(kBa@ogsDgG8D@A}t^h0RL+V=l}o! delta 43 tcmdnMxPfs(k4lH>svq18j7%RHIT@HgF|wRy);{XX0uuQI68QoW0RSZE3+Mm< diff --git a/packs/avantages/000242.log b/packs/avantages/000258.log similarity index 100% rename from packs/avantages/000242.log rename to packs/avantages/000258.log diff --git a/packs/avantages/CURRENT b/packs/avantages/CURRENT index 803ffe2..0002b46 100644 --- a/packs/avantages/CURRENT +++ b/packs/avantages/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/avantages/LOG b/packs/avantages/LOG index df05d6e..f883072 100644 --- a/packs/avantages/LOG +++ b/packs/avantages/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.268491 7fa5077fe6c0 Recovering log #238 -2025/09/13-00:19:21.279675 7fa5077fe6c0 Delete type=3 #236 -2025/09/13-00:19:21.279726 7fa5077fe6c0 Delete type=0 #238 -2025/09/13-00:23:49.863626 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.863658 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.873805 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.894434 7fa506bff6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.894484 7fa506bff6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2025/09/14-18:44:05.833954 7f4e4bfff6c0 Recovering log #254 +2025/09/14-18:44:05.936437 7f4e4bfff6c0 Delete type=3 #252 +2025/09/14-18:44:05.936567 7f4e4bfff6c0 Delete type=0 #254 +2025/09/14-20:11:26.849402 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.849447 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.856023 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.862159 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.862225 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/LOG.old b/packs/avantages/LOG.old index 86e2774..39213bf 100644 --- a/packs/avantages/LOG.old +++ b/packs/avantages/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.400653 7fa50cbf96c0 Recovering log #234 -2025/09/12-22:42:55.410659 7fa50cbf96c0 Delete type=3 #232 -2025/09/12-22:42:55.410812 7fa50cbf96c0 Delete type=0 #234 -2025/09/13-00:19:16.132163 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.132192 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.144694 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.144842 7fa506bff6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.144872 7fa506bff6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.872639 7f4e4b7fe6c0 Recovering log #250 +2025/09/14-18:32:45.883723 7f4e4b7fe6c0 Delete type=3 #248 +2025/09/14-18:32:45.883847 7f4e4b7fe6c0 Delete type=0 #250 +2025/09/14-18:44:00.687324 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:00.687380 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:00.729665 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:00.761866 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.761925 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/MANIFEST-000240 b/packs/avantages/MANIFEST-000256 similarity index 72% rename from packs/avantages/MANIFEST-000240 rename to packs/avantages/MANIFEST-000256 index 371eed44c558d180ed9c11fc255498476663fa65..43bff57b732c28029c8687009e46a78a6f4c69ef 100644 GIT binary patch delta 43 scmdnMxPfs(kBZ2aJ5k&Wj7*J8oD9rOOe}jDx4W1dfkc`>A}t^h0Q|=Z&Hw-a delta 43 tcmdnMxPfs(kIG>IwRmm@My8L9oD9sL7+Ll*KA3+|7bNltB=Q9$0st0c3;h59 diff --git a/packs/capacites/000242.log b/packs/capacites/000258.log similarity index 100% rename from packs/capacites/000242.log rename to packs/capacites/000258.log diff --git a/packs/capacites/CURRENT b/packs/capacites/CURRENT index 803ffe2..0002b46 100644 --- a/packs/capacites/CURRENT +++ b/packs/capacites/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/capacites/LOG b/packs/capacites/LOG index 18f9386..ee691d7 100644 --- a/packs/capacites/LOG +++ b/packs/capacites/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.296168 7fa507fff6c0 Recovering log #238 -2025/09/13-00:19:21.305712 7fa507fff6c0 Delete type=3 #236 -2025/09/13-00:19:21.305760 7fa507fff6c0 Delete type=0 #238 -2025/09/13-00:23:49.884597 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.884644 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.894226 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.894466 7fa506bff6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.894528 7fa506bff6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.033365 7f4e4b7fe6c0 Recovering log #254 +2025/09/14-18:44:06.092152 7f4e4b7fe6c0 Delete type=3 #252 +2025/09/14-18:44:06.092214 7f4e4b7fe6c0 Delete type=0 #254 +2025/09/14-20:11:26.856120 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.856146 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.862040 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.862231 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.862287 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/LOG.old b/packs/capacites/LOG.old index 71a2e78..072076b 100644 --- a/packs/capacites/LOG.old +++ b/packs/capacites/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.426015 7fa507fff6c0 Recovering log #234 -2025/09/12-22:42:55.435789 7fa507fff6c0 Delete type=3 #232 -2025/09/12-22:42:55.435841 7fa507fff6c0 Delete type=0 #234 -2025/09/13-00:19:16.144975 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.145001 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.157163 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.189315 7fa506bff6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.189405 7fa506bff6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.898041 7f4e4a7fc6c0 Recovering log #250 +2025/09/14-18:32:45.908137 7f4e4a7fc6c0 Delete type=3 #248 +2025/09/14-18:32:45.908184 7f4e4a7fc6c0 Delete type=0 #250 +2025/09/14-18:44:00.630523 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:00.630565 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:00.687084 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:00.761851 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.761913 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/MANIFEST-000240 b/packs/capacites/MANIFEST-000256 similarity index 73% rename from packs/capacites/MANIFEST-000240 rename to packs/capacites/MANIFEST-000256 index a55d83e48edaafdf41fabf960c745160e1680722..53290e1c7030cbc8ce624c27647e57bc54df321c 100644 GIT binary patch delta 41 rcmZ3-xQ=l`kJ5o`yM0^?j7*J8oD9rOOe{GfYW*ic0!<)+7N7tC>(U8% delta 41 scmZ3-xQ=l`kCK{wxhxk0BhyDlP6p;rj4U}tw~oC4348(xd;tmo0QJNRZvX%Q diff --git a/packs/competences/000246.log b/packs/competences/000262.log similarity index 100% rename from packs/competences/000246.log rename to packs/competences/000262.log diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index 8857e5c..8819f7c 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000244 +MANIFEST-000260 diff --git a/packs/competences/LOG b/packs/competences/LOG index d3bef11..48adedf 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.255755 7fa507fff6c0 Recovering log #242 -2025/09/13-00:19:21.265612 7fa507fff6c0 Delete type=3 #240 -2025/09/13-00:19:21.265700 7fa507fff6c0 Delete type=0 #242 -2025/09/13-00:23:49.874022 7fa506bff6c0 Level-0 table #247: started -2025/09/13-00:23:49.874085 7fa506bff6c0 Level-0 table #247: 0 bytes OK -2025/09/13-00:23:49.884276 7fa506bff6c0 Delete type=0 #245 -2025/09/13-00:23:49.894451 7fa506bff6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.894495 7fa506bff6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2025/09/14-18:44:05.761810 7f4e4b7fe6c0 Recovering log #258 +2025/09/14-18:44:05.830903 7f4e4b7fe6c0 Delete type=3 #256 +2025/09/14-18:44:05.831031 7f4e4b7fe6c0 Delete type=0 #258 +2025/09/14-20:11:26.842270 7f4e49ffb6c0 Level-0 table #263: started +2025/09/14-20:11:26.842297 7f4e49ffb6c0 Level-0 table #263: 0 bytes OK +2025/09/14-20:11:26.849193 7f4e49ffb6c0 Delete type=0 #261 +2025/09/14-20:11:26.862148 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.862217 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index 8c8855d..78bcc03 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.386980 7fa5077fe6c0 Recovering log #238 -2025/09/12-22:42:55.397627 7fa5077fe6c0 Delete type=3 #236 -2025/09/12-22:42:55.397730 7fa5077fe6c0 Delete type=0 #238 -2025/09/13-00:19:16.119722 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:19:16.119769 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:19:16.131930 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:19:16.144833 7fa506bff6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.144865 7fa506bff6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.860574 7f4e4a7fc6c0 Recovering log #254 +2025/09/14-18:32:45.870106 7f4e4a7fc6c0 Delete type=3 #252 +2025/09/14-18:32:45.870217 7f4e4a7fc6c0 Delete type=0 #254 +2025/09/14-18:44:00.729801 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-18:44:00.729826 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-18:44:00.761619 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-18:44:00.761883 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.761939 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000244 b/packs/competences/MANIFEST-000260 similarity index 71% rename from packs/competences/MANIFEST-000244 rename to packs/competences/MANIFEST-000260 index ccbcf18533d836a7d5818516aa975f0a86d458a9..b0d4178cedefcd9b5f0322814832fd27d5bcf0d5 100644 GIT binary patch delta 43 scmdnQxQTH>pGtjB)+}xYMy6IKP6p;SCYEpNdDsf~njLj7(n{IT@J0F|xd4GEE9A1BrYCiTnVG000={3)%nx diff --git a/packs/desavantages/000242.log b/packs/desavantages/000258.log similarity index 100% rename from packs/desavantages/000242.log rename to packs/desavantages/000258.log diff --git a/packs/desavantages/CURRENT b/packs/desavantages/CURRENT index 803ffe2..0002b46 100644 --- a/packs/desavantages/CURRENT +++ b/packs/desavantages/CURRENT @@ -1 +1 @@ -MANIFEST-000240 +MANIFEST-000256 diff --git a/packs/desavantages/LOG b/packs/desavantages/LOG index 183ca5e..c9743ba 100644 --- a/packs/desavantages/LOG +++ b/packs/desavantages/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.283146 7fa50cbf96c0 Recovering log #238 -2025/09/13-00:19:21.293685 7fa50cbf96c0 Delete type=3 #236 -2025/09/13-00:19:21.293809 7fa50cbf96c0 Delete type=0 #238 -2025/09/13-00:23:49.853271 7fa506bff6c0 Level-0 table #243: started -2025/09/13-00:23:49.853312 7fa506bff6c0 Level-0 table #243: 0 bytes OK -2025/09/13-00:23:49.863450 7fa506bff6c0 Delete type=0 #241 -2025/09/13-00:23:49.894416 7fa506bff6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.894477 7fa506bff6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2025/09/14-18:44:05.938881 7f4e4a7fc6c0 Recovering log #254 +2025/09/14-18:44:06.030523 7f4e4a7fc6c0 Delete type=3 #252 +2025/09/14-18:44:06.030588 7f4e4a7fc6c0 Delete type=0 #254 +2025/09/14-20:11:26.835922 7f4e49ffb6c0 Level-0 table #259: started +2025/09/14-20:11:26.836012 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK +2025/09/14-20:11:26.842166 7f4e49ffb6c0 Delete type=0 #257 +2025/09/14-20:11:26.862136 7f4e49ffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.862210 7f4e49ffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/LOG.old b/packs/desavantages/LOG.old index d49fbc7..a4ae10a 100644 --- a/packs/desavantages/LOG.old +++ b/packs/desavantages/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.413587 7fa50d3fa6c0 Recovering log #234 -2025/09/12-22:42:55.423498 7fa50d3fa6c0 Delete type=3 #232 -2025/09/12-22:42:55.423555 7fa50d3fa6c0 Delete type=0 #234 -2025/09/13-00:19:16.096714 7fa506bff6c0 Level-0 table #239: started -2025/09/13-00:19:16.096799 7fa506bff6c0 Level-0 table #239: 0 bytes OK -2025/09/13-00:19:16.107186 7fa506bff6c0 Delete type=0 #237 -2025/09/13-00:19:16.144811 7fa506bff6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.144850 7fa506bff6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.886170 7f4e4bfff6c0 Recovering log #250 +2025/09/14-18:32:45.895851 7f4e4bfff6c0 Delete type=3 #248 +2025/09/14-18:32:45.895945 7f4e4bfff6c0 Delete type=0 #250 +2025/09/14-18:44:00.559996 7f4e49ffb6c0 Level-0 table #255: started +2025/09/14-18:44:00.560039 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK +2025/09/14-18:44:00.630276 7f4e49ffb6c0 Delete type=0 #253 +2025/09/14-18:44:00.761829 7f4e49ffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.761898 7f4e49ffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/MANIFEST-000240 b/packs/desavantages/MANIFEST-000256 similarity index 72% rename from packs/desavantages/MANIFEST-000240 rename to packs/desavantages/MANIFEST-000256 index 1f83ecad5961276db7289eb937dea20566b14ffe..2fcd4141b3453162bf7a531be486d76c181bca0f 100644 GIT binary patch delta 43 scmdnMxPfs(kBWfjv1{B6j7*J8oD9rOOe}{PH}5oD1`=rkiL`)300|-rumAu6 delta 43 tcmdnMxPfs(kIM16HkY{>7@0mYaxyS~Vq`hY_=M;BN|4AWkjNL12mm_A4Hp0a diff --git a/packs/magie-sorts/000043.log b/packs/magie-sorts/000059.log similarity index 100% rename from packs/magie-sorts/000043.log rename to packs/magie-sorts/000059.log diff --git a/packs/magie-sorts/CURRENT b/packs/magie-sorts/CURRENT index 8ee0a8e..ac18047 100644 --- a/packs/magie-sorts/CURRENT +++ b/packs/magie-sorts/CURRENT @@ -1 +1 @@ -MANIFEST-000041 +MANIFEST-000057 diff --git a/packs/magie-sorts/LOG b/packs/magie-sorts/LOG index 8ebfcc7..b9a8aa3 100644 --- a/packs/magie-sorts/LOG +++ b/packs/magie-sorts/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.321878 7fa50cbf96c0 Recovering log #39 -2025/09/13-00:19:21.331597 7fa50cbf96c0 Delete type=3 #37 -2025/09/13-00:19:21.331753 7fa50cbf96c0 Delete type=0 #39 -2025/09/13-00:23:49.919835 7fa506bff6c0 Level-0 table #44: started -2025/09/13-00:23:49.919864 7fa506bff6c0 Level-0 table #44: 0 bytes OK -2025/09/13-00:23:49.931115 7fa506bff6c0 Delete type=0 #42 -2025/09/13-00:23:49.943487 7fa506bff6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.943562 7fa506bff6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.151906 7f4e4a7fc6c0 Recovering log #55 +2025/09/14-18:44:06.228905 7f4e4a7fc6c0 Delete type=3 #53 +2025/09/14-18:44:06.229001 7f4e4a7fc6c0 Delete type=0 #55 +2025/09/14-20:11:26.876107 7f4e49ffb6c0 Level-0 table #60: started +2025/09/14-20:11:26.876127 7f4e49ffb6c0 Level-0 table #60: 0 bytes OK +2025/09/14-20:11:26.882585 7f4e49ffb6c0 Delete type=0 #58 +2025/09/14-20:11:26.890030 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.890116 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) diff --git a/packs/magie-sorts/LOG.old b/packs/magie-sorts/LOG.old index c13a65c..2629543 100644 --- a/packs/magie-sorts/LOG.old +++ b/packs/magie-sorts/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.452797 7fa50d3fa6c0 Recovering log #35 -2025/09/12-22:42:55.462675 7fa50d3fa6c0 Delete type=3 #33 -2025/09/12-22:42:55.462724 7fa50d3fa6c0 Delete type=0 #35 -2025/09/13-00:19:16.169291 7fa506bff6c0 Level-0 table #40: started -2025/09/13-00:19:16.169344 7fa506bff6c0 Level-0 table #40: 0 bytes OK -2025/09/13-00:19:16.181136 7fa506bff6c0 Delete type=0 #38 -2025/09/13-00:19:16.189366 7fa506bff6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.189440 7fa506bff6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.923890 7f4e4bfff6c0 Recovering log #51 +2025/09/14-18:32:45.933491 7f4e4bfff6c0 Delete type=3 #49 +2025/09/14-18:32:45.933605 7f4e4bfff6c0 Delete type=0 #51 +2025/09/14-18:44:00.897409 7f4e49ffb6c0 Level-0 table #56: started +2025/09/14-18:44:00.897475 7f4e49ffb6c0 Level-0 table #56: 0 bytes OK +2025/09/14-18:44:00.958678 7f4e49ffb6c0 Delete type=0 #54 +2025/09/14-18:44:00.958950 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.958987 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end) diff --git a/packs/magie-sorts/MANIFEST-000041 b/packs/magie-sorts/MANIFEST-000057 similarity index 73% rename from packs/magie-sorts/MANIFEST-000041 rename to packs/magie-sorts/MANIFEST-000057 index 360cee84bb314c82579a4bce52c25ed23d5dfae1..378507abc073a1cce61f513dcf9db8a778a1dd76 100644 GIT binary patch delta 39 qcmZ3>xR!B3ufqIUhgvxq7@4d%8JMkECNc6Z5PtyTTLbyFKt2H7QV9tF delta 39 qcmZ3>xR!B3ufnc`4JMonj7(ab49warlNet_a=r)gwSjzHARhqKX$af^ diff --git a/packs/pouvoirs/000243.log b/packs/pouvoirs/000259.log similarity index 100% rename from packs/pouvoirs/000243.log rename to packs/pouvoirs/000259.log diff --git a/packs/pouvoirs/CURRENT b/packs/pouvoirs/CURRENT index 8f67127..f0b77ed 100644 --- a/packs/pouvoirs/CURRENT +++ b/packs/pouvoirs/CURRENT @@ -1 +1 @@ -MANIFEST-000241 +MANIFEST-000257 diff --git a/packs/pouvoirs/LOG b/packs/pouvoirs/LOG index 5a781d4..0890c63 100644 --- a/packs/pouvoirs/LOG +++ b/packs/pouvoirs/LOG @@ -1,8 +1,8 @@ -2025/09/13-00:19:21.348439 7fa507fff6c0 Recovering log #239 -2025/09/13-00:19:21.360125 7fa507fff6c0 Delete type=3 #237 -2025/09/13-00:19:21.360264 7fa507fff6c0 Delete type=0 #239 -2025/09/13-00:23:49.931363 7fa506bff6c0 Level-0 table #244: started -2025/09/13-00:23:49.931398 7fa506bff6c0 Level-0 table #244: 0 bytes OK -2025/09/13-00:23:49.943278 7fa506bff6c0 Delete type=0 #242 -2025/09/13-00:23:49.943503 7fa506bff6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2025/09/13-00:23:49.943549 7fa506bff6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.330863 7f4e4affd6c0 Recovering log #255 +2025/09/14-18:44:06.389509 7f4e4affd6c0 Delete type=3 #253 +2025/09/14-18:44:06.389593 7f4e4affd6c0 Delete type=0 #255 +2025/09/14-20:11:26.882779 7f4e49ffb6c0 Level-0 table #260: started +2025/09/14-20:11:26.882821 7f4e49ffb6c0 Level-0 table #260: 0 bytes OK +2025/09/14-20:11:26.889748 7f4e49ffb6c0 Delete type=0 #258 +2025/09/14-20:11:26.890052 7f4e49ffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2025/09/14-20:11:26.890136 7f4e49ffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/LOG.old b/packs/pouvoirs/LOG.old index 6bd555a..1d11031 100644 --- a/packs/pouvoirs/LOG.old +++ b/packs/pouvoirs/LOG.old @@ -1,8 +1,8 @@ -2025/09/12-22:42:55.479036 7fa5077fe6c0 Recovering log #235 -2025/09/12-22:42:55.489910 7fa5077fe6c0 Delete type=3 #233 -2025/09/12-22:42:55.489968 7fa5077fe6c0 Delete type=0 #235 -2025/09/13-00:19:16.189644 7fa506bff6c0 Level-0 table #240: started -2025/09/13-00:19:16.189704 7fa506bff6c0 Level-0 table #240: 0 bytes OK -2025/09/13-00:19:16.196200 7fa506bff6c0 Delete type=0 #238 -2025/09/13-00:19:16.217660 7fa506bff6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2025/09/13-00:19:16.217703 7fa506bff6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.950155 7f4e4a7fc6c0 Recovering log #251 +2025/09/14-18:32:45.960336 7f4e4a7fc6c0 Delete type=3 #249 +2025/09/14-18:32:45.960389 7f4e4a7fc6c0 Delete type=0 #251 +2025/09/14-18:44:00.859221 7f4e49ffb6c0 Level-0 table #256: started +2025/09/14-18:44:00.859248 7f4e49ffb6c0 Level-0 table #256: 0 bytes OK +2025/09/14-18:44:00.897065 7f4e49ffb6c0 Delete type=0 #254 +2025/09/14-18:44:00.958928 7f4e49ffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2025/09/14-18:44:00.958978 7f4e49ffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/MANIFEST-000241 b/packs/pouvoirs/MANIFEST-000257 similarity index 72% rename from packs/pouvoirs/MANIFEST-000241 rename to packs/pouvoirs/MANIFEST-000257 index c8d17be968a90cfc8d5317f9c7e438a654ebca5b..c047be4af46e6a85373f68f820c623d79e0838c8 100644 GIT binary patch delta 43 scmdnMxPfs(k4p5?q7U2*j7&{ToD9s(Oe}L)c7FdZ4H9VviL`=503KZnSO5S3 delta 43 tcmdnMxPfs(kBW}tjMv-@j7*;xIT@HgGqTKK;X5s)0228O68Q=e0RRps3hMv> diff --git a/packs/profils/000240.log b/packs/profils/000256.log similarity index 100% rename from packs/profils/000240.log rename to packs/profils/000256.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index 4846f49..13813b8 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000238 +MANIFEST-000254 diff --git a/packs/profils/LOG b/packs/profils/LOG index 21cd565..1fbfd74 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,7 +1,7 @@ -2025/09/13-00:19:21.376814 7fa50d3fa6c0 Recovering log #236 -2025/09/13-00:19:21.387738 7fa50d3fa6c0 Delete type=3 #234 -2025/09/13-00:19:21.387807 7fa50d3fa6c0 Delete type=0 #236 -2025/09/13-00:23:49.964101 7fa506bff6c0 Level-0 table #241: started -2025/09/13-00:23:49.964142 7fa506bff6c0 Level-0 table #241: 0 bytes OK -2025/09/13-00:23:49.974966 7fa506bff6c0 Delete type=0 #239 -2025/09/13-00:23:49.997771 7fa506bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2025/09/14-18:44:06.448301 7f4e4bfff6c0 Recovering log #252 +2025/09/14-18:44:06.514630 7f4e4bfff6c0 Delete type=3 #250 +2025/09/14-18:44:06.514695 7f4e4bfff6c0 Delete type=0 #252 +2025/09/14-20:11:26.890302 7f4e49ffb6c0 Level-0 table #257: started +2025/09/14-20:11:26.890371 7f4e49ffb6c0 Level-0 table #257: 0 bytes OK +2025/09/14-20:11:26.896699 7f4e49ffb6c0 Delete type=0 #255 +2025/09/14-20:11:26.921989 7f4e49ffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index da8f160..d2a538d 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,7 +1,7 @@ -2025/09/12-22:42:55.506022 7fa507fff6c0 Recovering log #232 -2025/09/12-22:42:55.525934 7fa507fff6c0 Delete type=3 #230 -2025/09/12-22:42:55.525996 7fa507fff6c0 Delete type=0 #232 -2025/09/13-00:19:16.203395 7fa506bff6c0 Level-0 table #237: started -2025/09/13-00:19:16.203465 7fa506bff6c0 Level-0 table #237: 0 bytes OK -2025/09/13-00:19:16.210478 7fa506bff6c0 Delete type=0 #235 -2025/09/13-00:19:16.217685 7fa506bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2025/09/14-18:32:45.977047 7f4e4b7fe6c0 Recovering log #248 +2025/09/14-18:32:45.987390 7f4e4b7fe6c0 Delete type=3 #246 +2025/09/14-18:32:45.987492 7f4e4b7fe6c0 Delete type=0 #248 +2025/09/14-18:44:00.959082 7f4e49ffb6c0 Level-0 table #253: started +2025/09/14-18:44:00.959116 7f4e49ffb6c0 Level-0 table #253: 0 bytes OK +2025/09/14-18:44:01.015683 7f4e49ffb6c0 Delete type=0 #251 +2025/09/14-18:44:01.082822 7f4e49ffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000238 b/packs/profils/MANIFEST-000238 deleted file mode 100644 index 4e89e6884eef19dc94f3158f2588ccb0ddc9831d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 69 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAe$l)tO-U{WMyB_SoD9q# T7+DwuFSH1P1U`TSJ^=*)MGX{p diff --git a/packs/profils/MANIFEST-000254 b/packs/profils/MANIFEST-000254 new file mode 100644 index 0000000000000000000000000000000000000000..0881b19535c9587a2858dc763bed1be66771a150 GIT binary patch literal 69 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAevx$R{o`B=j7 -

- Rang : {{magie.rang}} + {{magie.rangSpecificName}}
-

+
@@ -552,7 +552,6 @@
- {{!-- Equipement Tab --}}
diff --git a/templates/chat-generic-result.html b/templates/chat-generic-result.html index 567af72..7d8b32e 100644 --- a/templates/chat-generic-result.html +++ b/templates/chat-generic-result.html @@ -41,19 +41,58 @@ {{#if pouvoir}}
  • Pouvoir : {{pouvoir.name}}
  • Effet : {{pouvoir.system.effet}}
  • -
  • Points d'usage consommés : {{pouvoirPointsUsage}}
  • + {{#if (ne pouvoir.system.duree "")}} +
  • Durée : {{pouvoir.system.duree}}
  • + {{/if}} + {{#if (ne pouvoir.system.portee "")}} +
  • Portée : {{pouvoir.system.portee}}
  • + {{/if}} + {{#if (ne pouvoir.system.resistance "")}} +
  • Résistance : {{pouvoir.system.resistance}}
  • + {{/if}} + {{#if (ne pouvoir.system.resistanceautre "")}} +
  • Résistance autre : {{pouvoir.system.resistanceautre}}
  • + {{/if}} + {{#if (ne pouvoir.system.zoneeffet "")}} +
  • Zone d'effet : {{pouvoir.system.zoneeffet}}
  • + {{/if}} + {{#if (ne pouvoir.system.cibles "")}} +
  • Cibles : {{pouvoir.system.cibles}}
  • + {{/if}} + {{#if (ne pouvoir.system.virulence "")}} +
  • Virulence : {{pouvoir.system.virulence}}
  • + {{/if}} +
  • Points d'usage consommés : {{pouvoirPointsUsage}}
  • {{/if}} {{#if sort}}
  • Sort : {{sort.name}}
  • + {{#if (ne sort.system.resistance "")}} +
  • Résistance : {{sort.system.resistance}}
  • + {{/if}} + {{#if (ne sort.system.concentration "")}} +
  • Concentration : {{sort.system.concentration}}
  • + {{/if}} + {{#if (ne sort.system.duree "")}} +
  • Durée : {{sort.system.duree}}
  • + {{/if}} + {{#if (ne sort.system.portee "")}} +
  • Portée : {{sort.system.portee}}
  • + {{/if}} + {{#if (ne sort.system.ingredients "")}} +
  • Ingrédients : {{sort.system.ingredients}}
  • + {{/if}} + {{#if (ne sort.system.coutactivation "")}} +
  • Coût d'activation : {{sort.system.coutactivation}}
  • + {{/if}} {{#if spendEsprit}} -
  • Points d'Esprit dépensé : 1
  • +
  • Points d'Esprit dépensé : 1
  • {{else}} -
  • Cout en Points d'âmes : {{sortPointsAme}}
  • - {{#if (eq sort.system.competence "Magie du Clan")}} -
  • Souffle : {{sort.system.souffle}}
  • -
  • Cout en PV : 2
  • - {{/if}} +
  • Cout en Points d'âmes : {{sortPointsAme}}
  • + {{#if (eq sort.system.competence "Magie du Clan")}} +
  • Souffle : {{sort.system.souffle}}
  • +
  • Cout en PV : 2
  • + {{/if}} {{/if}} {{/if}} diff --git a/templates/item-sort-sheet.html b/templates/item-sort-sheet.html index 7043753..381bb09 100644 --- a/templates/item-sort-sheet.html +++ b/templates/item-sort-sheet.html @@ -45,6 +45,13 @@ +
  • + + +
  • +