diff --git a/assets/icons/traitespece.webp b/assets/icons/traitespece.webp new file mode 100644 index 0000000..2ae18dc Binary files /dev/null and b/assets/icons/traitespece.webp differ diff --git a/lang/fr.json b/lang/fr.json index 7b895f1..a003236 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -5,7 +5,6 @@ "creature": "Créature" }, "Item": { - "artefact": "Artefact", "arme": "Arme", "talent": "Talent", "historique": "Historique", @@ -15,8 +14,6 @@ "monnaie": "Monnaie", "equipement": "Equipement", "ressource": "Ressource", - "contact": "Contact", - "mutation": "Mutation", "don": "Don", "pacte": "Pacte", "rune": "Rune", @@ -28,8 +25,6 @@ }, "MOURNBLADE": { "ui": { - "editContact": "Modifier le contact", - "deleteContact": "Supprimer le contact", "editTrait": "Modifier le trait", "deleteTrait": "Supprimer le trait" } diff --git a/modules/mournblade-cyd2-actor-sheet.js b/modules/mournblade-cyd2-actor-sheet.js index 7147402..b887c08 100644 --- a/modules/mournblade-cyd2-actor-sheet.js +++ b/modules/mournblade-cyd2-actor-sheet.js @@ -44,7 +44,6 @@ export class MournbladeCYD2ActorSheet extends foundry.appv1.sheets.ActorSheet { protections: foundry.utils.duplicate(this.actor.getArmors()), historiques: foundry.utils.duplicate(this.actor.getHistoriques() || []), talents: foundry.utils.duplicate(this.actor.getTalents() || []), - mutations: foundry.utils.duplicate(this.actor.getMutations() || []), dons: foundry.utils.duplicate(this.actor.getDons() || []), pactes: foundry.utils.duplicate(this.actor.getPactes() || []), tendances: foundry.utils.duplicate(this.actor.getTendances() || []), @@ -56,7 +55,6 @@ export class MournbladeCYD2ActorSheet extends foundry.appv1.sheets.ActorSheet { profils: foundry.utils.duplicate(this.actor.getProfils() || []), combat: this.actor.getCombatValues(), equipements: foundry.utils.duplicate(this.actor.getEquipments()), - artefacts: foundry.utils.duplicate(this.actor.getArtefacts()), richesse: this.actor.computeRichesse(), coupDevastateur: this.actor.items.find(it => it.type == "talent" && it.name.toLowerCase() == "coup devastateur" && !it.system.used), valeurEquipement: this.actor.computeValeurEquipement(), diff --git a/modules/mournblade-cyd2-actor.js b/modules/mournblade-cyd2-actor.js index c5101c9..6a5a8a8 100644 --- a/modules/mournblade-cyd2-actor.js +++ b/modules/mournblade-cyd2-actor.js @@ -118,9 +118,6 @@ export class MournbladeCYD2Actor extends Actor { getEquipments() { return this.getItemSorted(["equipement"]) } - getArtefacts() { - return this.getItemSorted(["artefact"]) - } getArmors() { return this.getItemSorted(["protection"]) } @@ -136,12 +133,6 @@ export class MournbladeCYD2Actor extends Actor { getRessources() { return this.getItemSorted(["ressource"]) } - getContacts() { - return this.getItemSorted(["contact"]) - } - getMutations() { - return this.getItemSorted(["mutation"]) - } getDons() { return this.getItemSorted(["don"]) } diff --git a/modules/mournblade-cyd2-config.js b/modules/mournblade-cyd2-config.js index ef12b09..cbcbe7d 100644 --- a/modules/mournblade-cyd2-config.js +++ b/modules/mournblade-cyd2-config.js @@ -90,35 +90,6 @@ export const MOURNBLADECYD2_CONFIG = { { key: "jet", label: "Arme de Jet" }, { key: "tir", label: "Arme de Tir" } ], - optionsArtefactBranche: [ - { key: "alchimie", label: "Alchimie" }, - { key: "biologie", label: "Biologie" }, - { key: "electricite", label: "Electricité" }, - { key: "mecanique", label: "Mécanique" }, - { key: "scienceesprit", label: "Science de l'Esprit" } - ], - optionsArtefactBranche2: [ - { key: "none", label: "Aucune" }, - { key: "alchimie", label: "Alchimie" }, - { key: "biologie", label: "Biologie" }, - { key: "electricite", label: "Electricité" }, - { key: "mecanique", label: "Mécanique" }, - { key: "scienceesprit", label: "Science de l'Esprit" } - ], - optionsTypeContact: [ - { key: "contact", label: "Contact" }, - { key: "allie", label: "Allié" } - ], - optionsTypeMutation: [ - { key: "tares_communes", label: "Tares et Malformations communes" }, - { key: "evolutions_communes", label: "Evolutions communes" }, - { key: "tares_rares", label: "Tares et Malformations rares" }, - { key: "evolutions_rares", label: "Evolutions rares" }, - { key: "tares_majeures", label: "Tares et Maformations majeures" }, - { key: "evolutions_majeures", label: "Evolutions majeures" }, - { key: "tares_except", label: "Tares et Malformations exceptionnelles" }, - { key: "evolutions_except", label: "Evolutions exceptionnelles" } - ], optionsTypeTalent: [ { key: "personnage", label: "Personnage" }, { key: "traitespece", label: "Trait d'espèce" } diff --git a/modules/mournblade-cyd2-item-sheet.js b/modules/mournblade-cyd2-item-sheet.js index b6ca58d..8ed9754 100644 --- a/modules/mournblade-cyd2-item-sheet.js +++ b/modules/mournblade-cyd2-item-sheet.js @@ -62,14 +62,14 @@ export class MournbladeCYD2ItemSheet extends foundry.appv1.sheets.ItemSheet { limited: this.object.limited, options: this.options, owner: this.document.isOwner, - description: await TextEditor.enrichHTML(this.object.system.description, {async: true}), + description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, {async: true}), mr: (this.object.type == 'specialisation'), isGM: game.user.isGM, config: game.system.mournbladecyd2.config } if ( objectData.type == "don") { - formData.sacrifice = await TextEditor.enrichHTML(this.object.system.sacrifice, {async: true}) + formData.sacrifice = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.sacrifice, {async: true}) } //this.options.editable = !(this.object.origin == "embeddedItem"); console.log("ITEM DATA", formData, this); diff --git a/modules/mournblade-cyd2-item.js b/modules/mournblade-cyd2-item.js index 2b0a355..97fab6d 100644 --- a/modules/mournblade-cyd2-item.js +++ b/modules/mournblade-cyd2-item.js @@ -1,19 +1,22 @@ import { MournbladeCYD2Utility } from "./mournblade-cyd2-utility.js"; export const defaultItemImg = { - competence: "systems/fvtt-mournblade-cyd2/assets/icons/competence.webp", - arme: "systems/fvtt-mournblade-cyd2/assets/icons/melee.webp", - equipement: "systems/fvtt-mournblade-cyd2/assets/icons/equipement.webp", - monnaie: "systems/fvtt-mournblade-cyd2/assets/icons/monnaie.webp", - predilection: "systems/fvtt-mournblade-cyd2/assets/icons/predilection.webp", - protection: "systems/fvtt-mournblade-cyd2/assets/icons/protection.webp", - talent: "systems/fvtt-mournblade-cyd2/assets/icons/talent.webp", - historique: "systems/fvtt-mournblade-cyd2/assets/icons/historique.webp", - profil: "systems/fvtt-mournblade-cyd2/assets/icons/profil.webp", - artefact: "systems/fvtt-mournblade-cyd2/assets/icons/artefact.webp", - contact: "systems/fvtt-mournblade-cyd2/assets/icons/contacts.webp", - ressource: "systems/fvtt-mournblade-cyd2/assets/icons/ressources.webp", - mutation: "systems/fvtt-mournblade-cyd2/assets/icons/mutation.webp", + competence: "systems/fvtt-mournblade-cyd2/assets/icons/competence.webp", + arme: "systems/fvtt-mournblade-cyd2/assets/icons/melee.webp", + equipement: "systems/fvtt-mournblade-cyd2/assets/icons/equipement.webp", + monnaie: "systems/fvtt-mournblade-cyd2/assets/icons/monnaie.webp", + predilection: "systems/fvtt-mournblade-cyd2/assets/icons/predilection.webp", + protection: "systems/fvtt-mournblade-cyd2/assets/icons/protection.webp", + talent: "systems/fvtt-mournblade-cyd2/assets/icons/talent.webp", + historique: "systems/fvtt-mournblade-cyd2/assets/icons/historique.webp", + profil: "systems/fvtt-mournblade-cyd2/assets/icons/profil.webp", + ressource: "systems/fvtt-mournblade-cyd2/assets/icons/ressources.webp", + traitchaotique: "systems/fvtt-mournblade-cyd2/assets/icons/traitchaotique.webp", + traitespece: "systems/fvtt-mournblade-cyd2/assets/icons/traitespece.webp", + don: "systems/fvtt-mournblade-cyd2/assets/icons/don.webp", + pacte: "systems/fvtt-mournblade-cyd2/assets/icons/pacte.webp", + rune: "systems/fvtt-mournblade-cyd2/assets/icons/rune.webp", + tendance: "systems/fvtt-mournblade-cyd2/assets/icons/tendance.webp", } /** diff --git a/modules/mournblade-cyd2-main.js b/modules/mournblade-cyd2-main.js index 1de88c4..6526e99 100644 --- a/modules/mournblade-cyd2-main.js +++ b/modules/mournblade-cyd2-main.js @@ -75,8 +75,8 @@ function welcomeMessage() { user: game.user.id, whisper: [game.user.id], content: `
Les livres de Mournblade sont nécessaires pour jouer : https://www.titam-france.fr
+ Bienvenue dans Mournblade CYD 2.0 ! +Les livres de Mournblade sont nécessaires pour jouer : https://www.titam-france.fr ainsi que le supplément de conversion de règle pour le CYD 2.0
Mournblade est un jeu de rôle publié par Titam France/Sombres projets, tous les droits leur appartiennent.
Système développé par LeRatierBretonnien, support sur le Discord FR de Foundry.
` }); diff --git a/modules/mournblade-cyd2-utility.js b/modules/mournblade-cyd2-utility.js index f2bb274..c185d0a 100644 --- a/modules/mournblade-cyd2-utility.js +++ b/modules/mournblade-cyd2-utility.js @@ -56,13 +56,7 @@ export class MournbladeCYD2Utility { type: String, choices: { // If choices are defined, the resulting setting will be a select menu "mournblade_logo_chaos": "Mournblade (Chaos)", - "mournblade_logo_texte": "Mournblade (Texte)", - "mournblade-cyd2_logo": "MournbladeCYD2 (Texte)", - "logo_pause_resistance": "Résistance", - "logo_pause_mournblade-cyd2_stone": "MournbladeCYD2 (Pierre)", - "logo_pause_mournblade-cyd2_violet": "MournbladeCYD2 (Violet)", - "logo_pause_mournblade-cyd2_beige": "MournbladeCYD2 (Beige)", - "logo_pause_mournblade-cyd2_rouge": "MournbladeCYD2 (Rouge)" + "mournblade_logo_texte": "Mournblade (Texte)" }, }) @@ -118,7 +112,6 @@ export class MournbladeCYD2Utility { game.system.mournbladecyd2.config.listeNiveauSkill = this.createDirectOptionList(0, 10) game.system.mournbladecyd2.config.listeNiveauCreature = this.createDirectOptionList(0, 35) - game.system.mournbladecyd2.config.listeNiveauContact = this.createDirectOptionList(1, 3) } /* -------------------------------------------- */ diff --git a/packs/aides-de-jeu/000363.log b/packs/aides-de-jeu/000367.log similarity index 100% rename from packs/aides-de-jeu/000363.log rename to packs/aides-de-jeu/000367.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index 66fc56d..13b386c 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000362 +MANIFEST-000366 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index 92ba79c..1030893 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.783809 7fe8067fc6c0 Recovering log #359 -2025/10/26-12:29:06.794241 7fe8067fc6c0 Delete type=3 #357 -2025/10/26-12:29:06.794298 7fe8067fc6c0 Delete type=0 #359 +2025/10/26-13:35:34.833966 7fe805ffb6c0 Recovering log #364 +2025/10/26-13:35:34.893332 7fe805ffb6c0 Delete type=3 #362 +2025/10/26-13:35:34.893418 7fe805ffb6c0 Delete type=0 #364 diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index ba51c23..0a1577d 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -1,15 +1,8 @@ -2025/10/26-11:43:12.460992 7fe8067fc6c0 Recovering log #355 -2025/10/26-11:43:12.514269 7fe8067fc6c0 Delete type=3 #353 -2025/10/26-11:43:12.514338 7fe8067fc6c0 Delete type=0 #355 -2025/10/26-12:28:57.892635 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.896408 7fe804ff96c0 Level-0 table #360: 237 bytes OK -2025/10/26-12:28:57.903154 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.903417 7fe804ff96c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.912859 7fe804ff96c0 Manual compaction at level-1 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at '!journal.pages!MUbViCE2PkVxlzqe.vb0HttXnUrQgVS0w' @ 25 : 0 -2025/10/26-12:28:57.912872 7fe804ff96c0 Compacting 1@1 + 1@2 files -2025/10/26-12:28:57.917576 7fe804ff96c0 Generated table #361@1: 2 keys, 36727 bytes -2025/10/26-12:28:57.917643 7fe804ff96c0 Compacted 1@1 + 1@2 files => 36727 bytes -2025/10/26-12:28:57.923546 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/10/26-12:28:57.923628 7fe804ff96c0 Delete type=2 #276 -2025/10/26-12:28:57.923735 7fe804ff96c0 Delete type=2 #360 -2025/10/26-12:28:57.934357 7fe804ff96c0 Manual compaction at level-1 from '!journal.pages!MUbViCE2PkVxlzqe.vb0HttXnUrQgVS0w' @ 25 : 0 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.783809 7fe8067fc6c0 Recovering log #359 +2025/10/26-12:29:06.794241 7fe8067fc6c0 Delete type=3 #357 +2025/10/26-12:29:06.794298 7fe8067fc6c0 Delete type=0 #359 +2025/10/26-13:28:40.494483 7fe804ff96c0 Level-0 table #365: started +2025/10/26-13:28:40.494518 7fe804ff96c0 Level-0 table #365: 0 bytes OK +2025/10/26-13:28:40.531592 7fe804ff96c0 Delete type=0 #363 +2025/10/26-13:28:40.531782 7fe804ff96c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.531813 7fe804ff96c0 Manual compaction at level-1 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/MANIFEST-000362 b/packs/aides-de-jeu/MANIFEST-000366 similarity index 91% rename from packs/aides-de-jeu/MANIFEST-000362 rename to packs/aides-de-jeu/MANIFEST-000366 index a2b50e4..2103c0f 100644 Binary files a/packs/aides-de-jeu/MANIFEST-000362 and b/packs/aides-de-jeu/MANIFEST-000366 differ diff --git a/packs/armes/000362.log b/packs/armes/000366.log similarity index 100% rename from packs/armes/000362.log rename to packs/armes/000366.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/armes/LOG b/packs/armes/LOG index 763897f..fb34c53 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.699010 7fe805ffb6c0 Recovering log #359 -2025/10/26-12:29:06.708342 7fe805ffb6c0 Delete type=3 #357 -2025/10/26-12:29:06.708393 7fe805ffb6c0 Delete type=0 #359 +2025/10/26-13:35:34.428581 7fe8057fa6c0 Recovering log #363 +2025/10/26-13:35:34.484494 7fe8057fa6c0 Delete type=3 #361 +2025/10/26-13:35:34.484584 7fe8057fa6c0 Delete type=0 #363 diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index f6cd0df..85d0087 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.067711 7fe806ffd6c0 Recovering log #355 -2025/10/26-11:43:12.123686 7fe806ffd6c0 Delete type=3 #353 -2025/10/26-11:43:12.123754 7fe806ffd6c0 Delete type=0 #355 -2025/10/26-12:28:57.845204 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.845245 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.851085 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.870129 7fe804ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.870159 7fe804ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.699010 7fe805ffb6c0 Recovering log #359 +2025/10/26-12:29:06.708342 7fe805ffb6c0 Delete type=3 #357 +2025/10/26-12:29:06.708393 7fe805ffb6c0 Delete type=0 #359 +2025/10/26-13:28:40.337082 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.337115 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.378655 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.378978 7fe804ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.379006 7fe804ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) diff --git a/packs/armes/MANIFEST-000361 b/packs/armes/MANIFEST-000365 similarity index 81% rename from packs/armes/MANIFEST-000361 rename to packs/armes/MANIFEST-000365 index df36e32..5b696bf 100644 Binary files a/packs/armes/MANIFEST-000361 and b/packs/armes/MANIFEST-000365 differ diff --git a/packs/competences-creatures/000362.log b/packs/competences-creatures/000366.log similarity index 100% rename from packs/competences-creatures/000362.log rename to packs/competences-creatures/000366.log diff --git a/packs/competences-creatures/CURRENT b/packs/competences-creatures/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/competences-creatures/CURRENT +++ b/packs/competences-creatures/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/competences-creatures/LOG b/packs/competences-creatures/LOG index b47bd2e..44cecb3 100644 --- a/packs/competences-creatures/LOG +++ b/packs/competences-creatures/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.675171 7fe8057fa6c0 Recovering log #359 -2025/10/26-12:29:06.685085 7fe8057fa6c0 Delete type=3 #357 -2025/10/26-12:29:06.685158 7fe8057fa6c0 Delete type=0 #359 +2025/10/26-13:35:34.272659 7fe806ffd6c0 Recovering log #363 +2025/10/26-13:35:34.363923 7fe806ffd6c0 Delete type=3 #361 +2025/10/26-13:35:34.363984 7fe806ffd6c0 Delete type=0 #363 diff --git a/packs/competences-creatures/LOG.old b/packs/competences-creatures/LOG.old index 7f67996..17bf340 100644 --- a/packs/competences-creatures/LOG.old +++ b/packs/competences-creatures/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:11.942128 7fe8057fa6c0 Recovering log #355 -2025/10/26-11:43:12.014555 7fe8057fa6c0 Delete type=3 #353 -2025/10/26-11:43:12.014620 7fe8057fa6c0 Delete type=0 #355 -2025/10/26-12:28:57.832814 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.832863 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.838963 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.845085 7fe804ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.845124 7fe804ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.675171 7fe8057fa6c0 Recovering log #359 +2025/10/26-12:29:06.685085 7fe8057fa6c0 Delete type=3 #357 +2025/10/26-12:29:06.685158 7fe8057fa6c0 Delete type=0 #359 +2025/10/26-13:28:40.076258 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.076307 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.111415 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.222572 7fe804ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.222631 7fe804ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) diff --git a/packs/competences-creatures/MANIFEST-000361 b/packs/competences-creatures/MANIFEST-000365 similarity index 82% rename from packs/competences-creatures/MANIFEST-000361 rename to packs/competences-creatures/MANIFEST-000365 index 753577c..9458eff 100644 Binary files a/packs/competences-creatures/MANIFEST-000361 and b/packs/competences-creatures/MANIFEST-000365 differ diff --git a/packs/competences/000362.log b/packs/competences/000366.log similarity index 100% rename from packs/competences/000362.log rename to packs/competences/000366.log diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/competences/LOG b/packs/competences/LOG index 7b956af..9daaa32 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.651032 7fe806ffd6c0 Recovering log #359 -2025/10/26-12:29:06.660771 7fe806ffd6c0 Delete type=3 #357 -2025/10/26-12:29:06.660857 7fe806ffd6c0 Delete type=0 #359 +2025/10/26-13:35:34.215237 7fe8057fa6c0 Recovering log #363 +2025/10/26-13:35:34.270430 7fe8057fa6c0 Delete type=3 #361 +2025/10/26-13:35:34.270494 7fe8057fa6c0 Delete type=0 #363 diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index 5fd90ac..8ae26c3 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:11.813271 7fe805ffb6c0 Recovering log #355 -2025/10/26-11:43:11.871605 7fe805ffb6c0 Delete type=3 #353 -2025/10/26-11:43:11.871674 7fe805ffb6c0 Delete type=0 #355 -2025/10/26-12:28:57.825907 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.825953 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.832675 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.845073 7fe804ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.845106 7fe804ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.651032 7fe806ffd6c0 Recovering log #359 +2025/10/26-12:29:06.660771 7fe806ffd6c0 Delete type=3 #357 +2025/10/26-12:29:06.660857 7fe806ffd6c0 Delete type=0 #359 +2025/10/26-13:28:40.111629 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.111658 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.147865 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.222594 7fe804ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.222638 7fe804ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000361 b/packs/competences/MANIFEST-000365 similarity index 81% rename from packs/competences/MANIFEST-000361 rename to packs/competences/MANIFEST-000365 index 10f42cc..24d02d4 100644 Binary files a/packs/competences/MANIFEST-000361 and b/packs/competences/MANIFEST-000365 differ diff --git a/packs/equipement/000362.log b/packs/equipement/000366.log similarity index 100% rename from packs/equipement/000362.log rename to packs/equipement/000366.log diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/equipement/CURRENT +++ b/packs/equipement/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/equipement/LOG b/packs/equipement/LOG index a3ced24..dc62104 100644 --- a/packs/equipement/LOG +++ b/packs/equipement/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.722211 7fe8067fc6c0 Recovering log #359 -2025/10/26-12:29:06.733013 7fe8067fc6c0 Delete type=3 #357 -2025/10/26-12:29:06.733067 7fe8067fc6c0 Delete type=0 #359 +2025/10/26-13:35:34.547277 7fe805ffb6c0 Recovering log #363 +2025/10/26-13:35:34.602499 7fe805ffb6c0 Delete type=3 #361 +2025/10/26-13:35:34.602579 7fe805ffb6c0 Delete type=0 #363 diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old index e729c30..dfb8716 100644 --- a/packs/equipement/LOG.old +++ b/packs/equipement/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.179222 7fe805ffb6c0 Recovering log #355 -2025/10/26-11:43:12.237180 7fe805ffb6c0 Delete type=3 #353 -2025/10/26-11:43:12.237230 7fe805ffb6c0 Delete type=0 #355 -2025/10/26-12:28:57.851235 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.851269 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.858040 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.870139 7fe804ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.870181 7fe804ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.722211 7fe8067fc6c0 Recovering log #359 +2025/10/26-12:29:06.733013 7fe8067fc6c0 Delete type=3 #357 +2025/10/26-12:29:06.733067 7fe8067fc6c0 Delete type=0 #359 +2025/10/26-13:28:40.262870 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.262916 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.299676 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.378848 7fe804ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.378996 7fe804ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/MANIFEST-000361 b/packs/equipement/MANIFEST-000365 similarity index 81% rename from packs/equipement/MANIFEST-000361 rename to packs/equipement/MANIFEST-000365 index f4ece5a..0d26e2e 100644 Binary files a/packs/equipement/MANIFEST-000361 and b/packs/equipement/MANIFEST-000365 differ diff --git a/packs/historiques/000362.log b/packs/historiques/000366.log similarity index 100% rename from packs/historiques/000362.log rename to packs/historiques/000366.log diff --git a/packs/historiques/CURRENT b/packs/historiques/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/historiques/CURRENT +++ b/packs/historiques/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/historiques/LOG b/packs/historiques/LOG index 24c8095..379c6af 100644 --- a/packs/historiques/LOG +++ b/packs/historiques/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.686952 7fe806ffd6c0 Recovering log #359 -2025/10/26-12:29:06.696634 7fe806ffd6c0 Delete type=3 #357 -2025/10/26-12:29:06.696698 7fe806ffd6c0 Delete type=0 #359 +2025/10/26-13:35:34.365993 7fe805ffb6c0 Recovering log #363 +2025/10/26-13:35:34.426620 7fe805ffb6c0 Delete type=3 #361 +2025/10/26-13:35:34.426680 7fe805ffb6c0 Delete type=0 #363 diff --git a/packs/historiques/LOG.old b/packs/historiques/LOG.old index 7909fee..f0435a7 100644 --- a/packs/historiques/LOG.old +++ b/packs/historiques/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.016796 7fe805ffb6c0 Recovering log #355 -2025/10/26-11:43:12.065476 7fe805ffb6c0 Delete type=3 #353 -2025/10/26-11:43:12.065547 7fe805ffb6c0 Delete type=0 #355 -2025/10/26-12:28:57.819861 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.819907 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.825793 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.845059 7fe804ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.845114 7fe804ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.686952 7fe806ffd6c0 Recovering log #359 +2025/10/26-12:29:06.696634 7fe806ffd6c0 Delete type=3 #357 +2025/10/26-12:29:06.696698 7fe806ffd6c0 Delete type=0 #359 +2025/10/26-13:28:40.148008 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.148036 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.185907 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.222606 7fe804ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.222645 7fe804ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/MANIFEST-000361 b/packs/historiques/MANIFEST-000365 similarity index 81% rename from packs/historiques/MANIFEST-000361 rename to packs/historiques/MANIFEST-000365 index 5cef3a4..14554d4 100644 Binary files a/packs/historiques/MANIFEST-000361 and b/packs/historiques/MANIFEST-000365 differ diff --git a/packs/mutations/000272.log b/packs/mutations/000273.log similarity index 100% rename from packs/mutations/000272.log rename to packs/mutations/000273.log diff --git a/packs/mutations/LOG b/packs/mutations/LOG index 15a44aa..4175956 100644 --- a/packs/mutations/LOG +++ b/packs/mutations/LOG @@ -1,3 +1,8 @@ 2025/10/26-12:29:06.663227 7fe805ffb6c0 Recovering log #269 2025/10/26-12:29:06.672961 7fe805ffb6c0 Delete type=3 #267 2025/10/26-12:29:06.673033 7fe805ffb6c0 Delete type=0 #269 +2025/10/26-13:28:40.186064 7fe804ff96c0 Level-0 table #274: started +2025/10/26-13:28:40.186097 7fe804ff96c0 Level-0 table #274: 0 bytes OK +2025/10/26-13:28:40.222366 7fe804ff96c0 Delete type=0 #272 +2025/10/26-13:28:40.222620 7fe804ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.222652 7fe804ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) diff --git a/packs/mutations/MANIFEST-000271 b/packs/mutations/MANIFEST-000271 index fb6d7af..08e6a65 100644 Binary files a/packs/mutations/MANIFEST-000271 and b/packs/mutations/MANIFEST-000271 differ diff --git a/packs/profils/000362.log b/packs/profils/000366.log similarity index 100% rename from packs/profils/000362.log rename to packs/profils/000366.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/profils/LOG b/packs/profils/LOG index 50e6881..23f5cce 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.735447 7fe805ffb6c0 Recovering log #359 -2025/10/26-12:29:06.744812 7fe805ffb6c0 Delete type=3 #357 -2025/10/26-12:29:06.744871 7fe805ffb6c0 Delete type=0 #359 +2025/10/26-13:35:34.605475 7fe8067fc6c0 Recovering log #363 +2025/10/26-13:35:34.656662 7fe8067fc6c0 Delete type=3 #361 +2025/10/26-13:35:34.656729 7fe8067fc6c0 Delete type=0 #363 diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index d9ce2a1..25a6d9b 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.240341 7fe806ffd6c0 Recovering log #355 -2025/10/26-11:43:12.296937 7fe806ffd6c0 Delete type=3 #353 -2025/10/26-11:43:12.297015 7fe806ffd6c0 Delete type=0 #355 -2025/10/26-12:28:57.886532 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.886557 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.892517 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.903408 7fe804ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.923816 7fe804ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.735447 7fe805ffb6c0 Recovering log #359 +2025/10/26-12:29:06.744812 7fe805ffb6c0 Delete type=3 #357 +2025/10/26-12:29:06.744871 7fe805ffb6c0 Delete type=0 #359 +2025/10/26-13:28:40.379104 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.379150 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.415271 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.531738 7fe804ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.531796 7fe804ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000361 b/packs/profils/MANIFEST-000365 similarity index 81% rename from packs/profils/MANIFEST-000361 rename to packs/profils/MANIFEST-000365 index d26cc55..e2acdf6 100644 Binary files a/packs/profils/MANIFEST-000361 and b/packs/profils/MANIFEST-000365 differ diff --git a/packs/protections/000362.log b/packs/protections/000366.log similarity index 100% rename from packs/protections/000362.log rename to packs/protections/000366.log diff --git a/packs/protections/CURRENT b/packs/protections/CURRENT index 80c7d7d..47c20bc 100644 --- a/packs/protections/CURRENT +++ b/packs/protections/CURRENT @@ -1 +1 @@ -MANIFEST-000361 +MANIFEST-000365 diff --git a/packs/protections/LOG b/packs/protections/LOG index c39b70b..d34ee13 100644 --- a/packs/protections/LOG +++ b/packs/protections/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.710182 7fe8057fa6c0 Recovering log #359 -2025/10/26-12:29:06.720207 7fe8057fa6c0 Delete type=3 #357 -2025/10/26-12:29:06.720258 7fe8057fa6c0 Delete type=0 #359 +2025/10/26-13:35:34.486790 7fe806ffd6c0 Recovering log #363 +2025/10/26-13:35:34.545284 7fe806ffd6c0 Delete type=3 #361 +2025/10/26-13:35:34.545373 7fe806ffd6c0 Delete type=0 #363 diff --git a/packs/protections/LOG.old b/packs/protections/LOG.old index 661f528..8e12ff0 100644 --- a/packs/protections/LOG.old +++ b/packs/protections/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.125942 7fe8057fa6c0 Recovering log #355 -2025/10/26-11:43:12.177277 7fe8057fa6c0 Delete type=3 #353 -2025/10/26-11:43:12.177336 7fe8057fa6c0 Delete type=0 #355 -2025/10/26-12:28:57.858129 7fe804ff96c0 Level-0 table #360: started -2025/10/26-12:28:57.858160 7fe804ff96c0 Level-0 table #360: 0 bytes OK -2025/10/26-12:28:57.863982 7fe804ff96c0 Delete type=0 #358 -2025/10/26-12:28:57.870151 7fe804ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.870173 7fe804ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.710182 7fe8057fa6c0 Recovering log #359 +2025/10/26-12:29:06.720207 7fe8057fa6c0 Delete type=3 #357 +2025/10/26-12:29:06.720258 7fe8057fa6c0 Delete type=0 #359 +2025/10/26-13:28:40.222777 7fe804ff96c0 Level-0 table #364: started +2025/10/26-13:28:40.222813 7fe804ff96c0 Level-0 table #364: 0 bytes OK +2025/10/26-13:28:40.262639 7fe804ff96c0 Delete type=0 #362 +2025/10/26-13:28:40.378828 7fe804ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.378986 7fe804ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) diff --git a/packs/protections/MANIFEST-000361 b/packs/protections/MANIFEST-000365 similarity index 82% rename from packs/protections/MANIFEST-000361 rename to packs/protections/MANIFEST-000365 index 1982f02..7d804ed 100644 Binary files a/packs/protections/MANIFEST-000361 and b/packs/protections/MANIFEST-000365 differ diff --git a/packs/scenes/000202.log b/packs/scenes/000206.log similarity index 100% rename from packs/scenes/000202.log rename to packs/scenes/000206.log diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT index 6d0c8e6..3fa41f8 100644 --- a/packs/scenes/CURRENT +++ b/packs/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000201 +MANIFEST-000205 diff --git a/packs/scenes/LOG b/packs/scenes/LOG index 743973f..fd00b4e 100644 --- a/packs/scenes/LOG +++ b/packs/scenes/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.771489 7fe805ffb6c0 Recovering log #198 -2025/10/26-12:29:06.781143 7fe805ffb6c0 Delete type=3 #196 -2025/10/26-12:29:06.781220 7fe805ffb6c0 Delete type=0 #198 +2025/10/26-13:35:34.778046 7fe8067fc6c0 Recovering log #203 +2025/10/26-13:35:34.831201 7fe8067fc6c0 Delete type=3 #201 +2025/10/26-13:35:34.831266 7fe8067fc6c0 Delete type=0 #203 diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old index a61d9f5..e301e98 100644 --- a/packs/scenes/LOG.old +++ b/packs/scenes/LOG.old @@ -1,15 +1,8 @@ -2025/10/26-11:43:12.408320 7fe805ffb6c0 Recovering log #194 -2025/10/26-11:43:12.458350 7fe805ffb6c0 Delete type=3 #192 -2025/10/26-11:43:12.458441 7fe805ffb6c0 Delete type=0 #194 -2025/10/26-12:28:57.876454 7fe804ff96c0 Level-0 table #199: started -2025/10/26-12:28:57.880191 7fe804ff96c0 Level-0 table #199: 1454 bytes OK -2025/10/26-12:28:57.886424 7fe804ff96c0 Delete type=0 #197 -2025/10/26-12:28:57.903394 7fe804ff96c0 Manual compaction at level-0 from '!scenes!mfosNsLsHN5Pf4TO' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.903427 7fe804ff96c0 Manual compaction at level-1 from '!scenes!mfosNsLsHN5Pf4TO' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at '!scenes!mfosNsLsHN5Pf4TO' @ 101 : 1 -2025/10/26-12:28:57.903432 7fe804ff96c0 Compacting 1@1 + 1@2 files -2025/10/26-12:28:57.906518 7fe804ff96c0 Generated table #200@1: 1 keys, 1429 bytes -2025/10/26-12:28:57.906546 7fe804ff96c0 Compacted 1@1 + 1@2 files => 1429 bytes -2025/10/26-12:28:57.912487 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/10/26-12:28:57.912621 7fe804ff96c0 Delete type=2 #191 -2025/10/26-12:28:57.912763 7fe804ff96c0 Delete type=2 #199 -2025/10/26-12:28:57.934341 7fe804ff96c0 Manual compaction at level-1 from '!scenes!mfosNsLsHN5Pf4TO' @ 101 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.771489 7fe805ffb6c0 Recovering log #198 +2025/10/26-12:29:06.781143 7fe805ffb6c0 Delete type=3 #196 +2025/10/26-12:29:06.781220 7fe805ffb6c0 Delete type=0 #198 +2025/10/26-13:28:40.415415 7fe804ff96c0 Level-0 table #204: started +2025/10/26-13:28:40.415445 7fe804ff96c0 Level-0 table #204: 0 bytes OK +2025/10/26-13:28:40.457814 7fe804ff96c0 Delete type=0 #202 +2025/10/26-13:28:40.531752 7fe804ff96c0 Manual compaction at level-0 from '!scenes!mfosNsLsHN5Pf4TO' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.531804 7fe804ff96c0 Manual compaction at level-1 from '!scenes!mfosNsLsHN5Pf4TO' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000201 b/packs/scenes/MANIFEST-000205 similarity index 80% rename from packs/scenes/MANIFEST-000201 rename to packs/scenes/MANIFEST-000205 index bf97393..1e6eb38 100644 Binary files a/packs/scenes/MANIFEST-000201 and b/packs/scenes/MANIFEST-000205 differ diff --git a/packs/tables/000357.log b/packs/tables/000361.log similarity index 100% rename from packs/tables/000357.log rename to packs/tables/000361.log diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT index 4926ab4..fd4fdbf 100644 --- a/packs/tables/CURRENT +++ b/packs/tables/CURRENT @@ -1 +1 @@ -MANIFEST-000356 +MANIFEST-000360 diff --git a/packs/tables/LOG b/packs/tables/LOG index f2bf8bf..324be39 100644 --- a/packs/tables/LOG +++ b/packs/tables/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.759672 7fe806ffd6c0 Recovering log #354 -2025/10/26-12:29:06.769486 7fe806ffd6c0 Delete type=3 #352 -2025/10/26-12:29:06.769562 7fe806ffd6c0 Delete type=0 #354 +2025/10/26-13:35:34.723167 7fe8057fa6c0 Recovering log #358 +2025/10/26-13:35:34.775859 7fe8057fa6c0 Delete type=3 #356 +2025/10/26-13:35:34.775926 7fe8057fa6c0 Delete type=0 #358 diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old index 1eadf5b..65eb772 100644 --- a/packs/tables/LOG.old +++ b/packs/tables/LOG.old @@ -1,7 +1,7 @@ -2025/10/26-11:43:12.347192 7fe8067fc6c0 Recovering log #350 -2025/10/26-11:43:12.405408 7fe8067fc6c0 Delete type=3 #348 -2025/10/26-11:43:12.405471 7fe8067fc6c0 Delete type=0 #350 -2025/10/26-12:28:57.870244 7fe804ff96c0 Level-0 table #355: started -2025/10/26-12:28:57.870272 7fe804ff96c0 Level-0 table #355: 0 bytes OK -2025/10/26-12:28:57.876356 7fe804ff96c0 Delete type=0 #353 -2025/10/26-12:28:57.903382 7fe804ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.759672 7fe806ffd6c0 Recovering log #354 +2025/10/26-12:29:06.769486 7fe806ffd6c0 Delete type=3 #352 +2025/10/26-12:29:06.769562 7fe806ffd6c0 Delete type=0 #354 +2025/10/26-13:28:40.299863 7fe804ff96c0 Level-0 table #359: started +2025/10/26-13:28:40.299900 7fe804ff96c0 Level-0 table #359: 0 bytes OK +2025/10/26-13:28:40.336837 7fe804ff96c0 Delete type=0 #357 +2025/10/26-13:28:40.378965 7fe804ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/MANIFEST-000356 b/packs/tables/MANIFEST-000356 deleted file mode 100644 index 6109dc6..0000000 Binary files a/packs/tables/MANIFEST-000356 and /dev/null differ diff --git a/packs/tables/MANIFEST-000360 b/packs/tables/MANIFEST-000360 new file mode 100644 index 0000000..efb1ea4 Binary files /dev/null and b/packs/tables/MANIFEST-000360 differ diff --git a/packs/talents/000363.log b/packs/talents/000367.log similarity index 100% rename from packs/talents/000363.log rename to packs/talents/000367.log diff --git a/packs/talents/CURRENT b/packs/talents/CURRENT index 66fc56d..13b386c 100644 --- a/packs/talents/CURRENT +++ b/packs/talents/CURRENT @@ -1 +1 @@ -MANIFEST-000362 +MANIFEST-000366 diff --git a/packs/talents/LOG b/packs/talents/LOG index 45ca7c7..2a36a25 100644 --- a/packs/talents/LOG +++ b/packs/talents/LOG @@ -1,3 +1,3 @@ -2025/10/26-12:29:06.747127 7fe8057fa6c0 Recovering log #360 -2025/10/26-12:29:06.757218 7fe8057fa6c0 Delete type=3 #358 -2025/10/26-12:29:06.757275 7fe8057fa6c0 Delete type=0 #360 +2025/10/26-13:35:34.658574 7fe806ffd6c0 Recovering log #364 +2025/10/26-13:35:34.719784 7fe806ffd6c0 Delete type=3 #362 +2025/10/26-13:35:34.719854 7fe806ffd6c0 Delete type=0 #364 diff --git a/packs/talents/LOG.old b/packs/talents/LOG.old index 1f02f61..1142d6f 100644 --- a/packs/talents/LOG.old +++ b/packs/talents/LOG.old @@ -1,8 +1,8 @@ -2025/10/26-11:43:12.299799 7fe8057fa6c0 Recovering log #356 -2025/10/26-11:43:12.344175 7fe8057fa6c0 Delete type=3 #354 -2025/10/26-11:43:12.344246 7fe8057fa6c0 Delete type=0 #356 -2025/10/26-12:28:57.864065 7fe804ff96c0 Level-0 table #361: started -2025/10/26-12:28:57.864098 7fe804ff96c0 Level-0 table #361: 0 bytes OK -2025/10/26-12:28:57.870026 7fe804ff96c0 Delete type=0 #359 -2025/10/26-12:28:57.870165 7fe804ff96c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) -2025/10/26-12:28:57.870189 7fe804ff96c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/10/26-12:29:06.747127 7fe8057fa6c0 Recovering log #360 +2025/10/26-12:29:06.757218 7fe8057fa6c0 Delete type=3 #358 +2025/10/26-12:29:06.757275 7fe8057fa6c0 Delete type=0 #360 +2025/10/26-13:28:40.457932 7fe804ff96c0 Level-0 table #365: started +2025/10/26-13:28:40.457964 7fe804ff96c0 Level-0 table #365: 0 bytes OK +2025/10/26-13:28:40.494323 7fe804ff96c0 Delete type=0 #363 +2025/10/26-13:28:40.531764 7fe804ff96c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/10/26-13:28:40.531823 7fe804ff96c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/MANIFEST-000362 b/packs/talents/MANIFEST-000366 similarity index 81% rename from packs/talents/MANIFEST-000362 rename to packs/talents/MANIFEST-000366 index 6da198e..08c7afb 100644 Binary files a/packs/talents/MANIFEST-000362 and b/packs/talents/MANIFEST-000366 differ diff --git a/styles/simple.css b/styles/simple.css index 38495a2..8f5983a 100644 --- a/styles/simple.css +++ b/styles/simple.css @@ -83,11 +83,12 @@ font-size: 0.8rem; } - .window-app select, - .window-app input { - font-family: "CentaurMT"; - text-align: center; - } + .window-app button, + .window-app select, + .window-app input { + font-family: "CentaurMT"; + text-align: center; + } /* For title, sidebar character and scene */ .sheet header.sheet-header h1 input { @@ -985,15 +986,25 @@ align-items: center; } + .skill-roll-dialog { + font-family: CentaurMT; + } + .chat-message .message-header .flavor-text, .chat-message .message-header .whisper-to { font-size: 0.9rem; + font-family: CentaurMT; } .chat-actor-name { padding: 4px; } + .chat-message .message-content { + font-size: 0.9rem; + font-family: CentaurMT; + } + .chat-img { width: 64px; height: 64px; diff --git a/system.json b/system.json index 9ffcd1d..d936dac 100644 --- a/system.json +++ b/system.json @@ -40,8 +40,7 @@ "skills", "historiques", "profils", - "talents", - "mutations" + "talents" ], "folders": [] }, @@ -85,18 +84,6 @@ "ASSISTANT": "OWNER" } }, - { - "type": "Item", - "label": "Mutations", - "name": "mutations", - "path": "packs/mutations", - "system": "fvtt-mournblade-cyd2", - "flags": {}, - "ownership": { - "PLAYER": "OBSERVER", - "ASSISTANT": "OWNER" - } - }, { "type": "Item", "label": "Compétences de Créatures", diff --git a/template.json b/template.json index 664545b..038cb77 100644 --- a/template.json +++ b/template.json @@ -153,10 +153,7 @@ "protection", "monnaie", "equipement", - "artefact", "ressource", - "contact", - "mutation", "don", "pacte", "rune", @@ -169,12 +166,6 @@ "pointdev": 0, "description": "" }, - "contact": { - "contacttype": "", - "niveau": "", - "pointdev": 0, - "description": "" - }, "talent": { "talenttype": "", "utilisation": "", @@ -259,31 +250,6 @@ "basequip" ] }, - "artefact": { - "complexite": 0, - "branche": "", - "branche2": "none", - "dureerealisation": "", - "tempsroute": "", - "effetdejeu": "", - "defautcourant": "", - "autrescarac": "", - "avantagespossibles": "", - "avantages": "", - "competences": "", - "templates": [ - "base", - "basequip" - ] - }, - "mutation": { - "templates": [ - "base" - ], - "mutationcategorie": "tares_communes", - "hascomplexite": false, - "complexite": 0 - }, "don": { "allegeance": "", "prerequis": "", diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html index eba31f8..c47eeab 100644 --- a/templates/actor-sheet.html +++ b/templates/actor-sheet.html @@ -655,41 +655,6 @@