diff --git a/assets/scenes/scenes-CXx90Qk7nXEd2uTh-thumb.webp b/assets/scenes/scenes-CXx90Qk7nXEd2uTh-thumb.webp new file mode 100644 index 0000000..ef7df22 Binary files /dev/null and b/assets/scenes/scenes-CXx90Qk7nXEd2uTh-thumb.webp differ diff --git a/assets/scenes/scenes-j6RYn1X7KfhTioX5-thumb.webp b/assets/scenes/scenes-j6RYn1X7KfhTioX5-thumb.webp new file mode 100644 index 0000000..12eafab Binary files /dev/null and b/assets/scenes/scenes-j6RYn1X7KfhTioX5-thumb.webp differ diff --git a/modules/hawkmoon-actor.js b/modules/hawkmoon-actor.js index b51a8b9..9097d24 100644 --- a/modules/hawkmoon-actor.js +++ b/modules/hawkmoon-actor.js @@ -235,16 +235,23 @@ export class HawkmoonActor extends Actor { this.update({ 'system.sante.vigueur': vigueur }) } } - super.prepareDerivedData() } /* -------------------------------------------- */ _preUpdate(changed, options, user) { - + if (changed?.system?.sante?.etat && changed?.system?.sante?.etat != this.system.sante.etat) { + setTimeout(() => { + this.processCombativite(changed.system.sante) + }, 800) + } super._preUpdate(changed, options, user); } + /* -------------------------------------------- */ + _onUpdate(data, options, user) { + super._onUpdate(data, options, user); + } /* -------------------------------------------- */ getItemById(id) { let item = this.items.find(item => item.id == id); @@ -394,11 +401,17 @@ export class HawkmoonActor extends Actor { let sante = foundry.utils.duplicate(this.system.sante) sante.etat += Number(value) sante.etat = Math.max(sante.etat, 0) - sante.etat = Math.min(sante.etat, 5) + sante.etat = Math.min(sante.etat, this.system.sante.nbcombativite) this.update({ 'system.sante': sante }) if (sante.etat == this.system.sante.nbcombativite) { ChatMessage.create({ content: `${this.name} est vaincu !` }) } + this.processCombativite(sante) + } + + /* -------------------------------------------- */ + processCombativite(sante) { + sante = sante || foundry.utils.duplicate(this.system.sante) // Gestion des états affaibli et très affaibli if (sante.etat == this.system.sante.nbcombativite - 2 || sante.etat == this.system.sante.nbcombativite - 1) { if (sante.etat == this.system.sante.nbcombativite - 2 && this.items.find(item => item.type == "talent" && item.name.toLowerCase() == "encaissement")) { @@ -456,6 +469,7 @@ export class HawkmoonActor extends Actor { let adversite = foundry.utils.duplicate(this.system.adversite) adversite[adv] += Number(incDec) adversite[adv] = Math.max(adversite[adv], 0) + adversite[adv] = Math.min(adversite[adv], 20) this.update({ 'system.adversite': adversite }) } /* -------------------------------------------- */ @@ -584,10 +598,10 @@ export class HawkmoonActor extends Actor { } if (compId) { rollData.competence = foundry.utils.duplicate(this.items.get(compId) || {}) - let maitrises = [ { key: "none", label: "Aucune" } ] - rollData.competence.system.predilections.forEach(function(item){ - if (item.maitrise ) { - maitrises.push({key: item.id, label: item.name}); + let maitrises = [{ key: "none", label: "Aucune" }] + rollData.competence.system.predilections.forEach(function (item) { + if (item.maitrise) { + maitrises.push({ key: item.id, label: item.name }); } }) rollData.maitrises = maitrises // rollData.competence.system.predilections.filter(p => p.maitrise) diff --git a/modules/hawkmoon-config.js b/modules/hawkmoon-config.js index 77858bf..cb89126 100644 --- a/modules/hawkmoon-config.js +++ b/modules/hawkmoon-config.js @@ -9,4 +9,103 @@ export const HAWKMOON_CONFIG = { { key: "25", label: "Insensée (25)" }, { key: "30", label: "Pure Folie (30)" } ], + optionsDistanceTir: [ + { key: "porteecourte", label: "Courte ({protectionDefenseur}+5)" }, + { key: "porteemoyenne", label: "Moyenne ({protectionDefenseur}+9)" }, + { key: "porteelongue", label: "Longue ({protectionDefenseur}+14)" } + ], + optionsBonusMalus: [ + { key: "-4", label: "-4" }, + { key: "-3", label: "-3" }, + { key: "-2", label: "-2" }, + { key: "-1", label: "-1" }, + { key: "0", label: "0" }, + { key: "1", label: "+1" }, + { key: "2", label: "+2" }, + { key: "3", label: "+3" }, + { key: "4", label: "+4" } + ], + optionsTailleCible: [ + { key: "normal", label: "Normal (SD+0)" }, + { key: "main", label: "Main (SD+10)" }, + { key: "enfant", label: "Enfant (SD+3)" }, + { key: "maison", label: "Maison (SD-10)" } + ], + optionsCouvert: [ + { key: "aucun", label: "Aucun" }, + { key: "leger", label: "Léger (SD+5)" }, + { key: "complet", label: "Quasi complet (SD+10)" } + ], + optionsTireurDeplacement: [ + { key: "immobile", label: "Immobile (SD+0)" }, + { key: "lent", label: "Lent (SD+3)" }, + { key: "rapide", label: "Rapide (SD+5)" } + ], + optionsSoutiens: [ + { key: "0", label: "Aucun" }, + { key: "1", label: "Un soutien (+3)" }, + { key: "2", label: "Deux soutiens (+4)" }, + { key: "3", label: "Trois soutiens (+5)" } + ], + optionsStatutResistant: [ + { key: "commun", label: "Commun" }, + { key: "clandestin", label: "Clandestin" }, + { key: "insurge", label: "Insurgé" } + ], + optionsTypeArme: [ + {key: "contact", label: "Arme de contact"}, + {key: "contactjet", label: "Arme de contact et de Jet"}, + {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: "cellule", label: "Cellule"}, + {key: "traitespece", label: "Trait d'espèce"} + ], + optionsUseTalent: [ + {key: "permanent", label: "Permanent"}, + {key: "sceance", label: "Une fois par scéance"}, + {key: "scenario", label: "Une fois par scénario"}, + {key: "jour", label: "Une fois par jour"}, + {key: "unique", label: "Unique"} + ], + optionsAutomationEvent: [ + {key: "on-drop", label: "Drop sur l'acteur"}, + {key: "prepare-roll", label: "Préparation d'un jet"}, + {key: "bonus-permanent", label: "Bonus permanent"} + ], + optionsBonusPermanent: [ + {key: "vigueur", label: "Vigueur"}, + {key: "bonus-defensif", label: "Bonus au Seuil de Défense"} + ] } \ No newline at end of file diff --git a/modules/hawkmoon-main.js b/modules/hawkmoon-main.js index a05c4c3..85d7c43 100644 --- a/modules/hawkmoon-main.js +++ b/modules/hawkmoon-main.js @@ -84,6 +84,19 @@ function welcomeMessage() { ` }); } +/* -------------------------------------------- */ +async function importDefaultScene() { + let exists = game.scenes.find(j => j.name == "Accueil"); + if (!exists) { + const scenes = await HawkmoonUtility.loadCompendium("fvtt-hawkmoon.scenes") + let newDocuments = scenes.filter(i => i.name == "Accueil"); + if (newDocuments) { + await game.scenes.documentClass.create(newDocuments); + game.scenes.find(i => i.name == "Accueil").activate(); + } + } +} + /* -------------------------------------------- */ /* Foundry VTT Initialization */ /* -------------------------------------------- */ @@ -106,7 +119,8 @@ Hooks.once("ready", function () { }).catch(err=> console.log("No stats available, giving up.") ) - + + importDefaultScene() welcomeMessage() }); diff --git a/modules/hawkmoon-utility.js b/modules/hawkmoon-utility.js index 0da5ea1..8198c64 100644 --- a/modules/hawkmoon-utility.js +++ b/modules/hawkmoon-utility.js @@ -114,6 +114,26 @@ export class HawkmoonUtility { let logoPause = "systems/fvtt-hawkmoon-cyd/assets/logos/" + game.settings.get("fvtt-hawkmoon-cyd", "hawkmoon-pause-logo") + ".webp" let logoImg = document.querySelector('#pause').children[0] logoImg.setAttribute('style', `content: url(${logoPause})`) + + game.system.hawkmoon.config.listeNiveauSkill = this.createDirectOptionList(0, 10) + game.system.hawkmoon.config.listeNiveauCreature = this.createDirectOptionList(0, 35) + game.system.hawkmoon.config.listeNiveauContact = this.createDirectOptionList(1, 3) + } + + /* -------------------------------------------- */ + static createDirectOptionList(min, max) { + let options = {}; + for (let i = min; i <= max; i++) { + options[`${i}`] = `${i}`; + } + return options; + } + static createArrayOptionList(min, max) { + let options = []; + for (let i = min; i <= max; i++) { + options.push({key:`${i}`, label:`${i}`}); + } + return options; } /* -------------------------------------------- */ @@ -172,10 +192,7 @@ export class HawkmoonUtility { 'systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html', 'systems/fvtt-hawkmoon-cyd/templates/partial-item-description.html', 'systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html', - 'systems/fvtt-hawkmoon-cyd/templates/partial-list-niveau.html', - 'systems/fvtt-hawkmoon-cyd/templates/partial-list-niveau-creature.html', 'systems/fvtt-hawkmoon-cyd/templates/partial-item-prix.html', - 'systems/fvtt-hawkmoon-cyd/templates/partial-sante-etat.html', 'systems/fvtt-hawkmoon-cyd/templates/partial-automation.html', 'systems/fvtt-hawkmoon-cyd/templates/hud-adversites.html', ] @@ -611,7 +628,7 @@ export class HawkmoonUtility { /* -------------------------------------------- */ static getBasicRollData() { let rollData = { - rollId: randomID(16), + rollId: foundry.utils.randomID(16), rollMode: game.settings.get("core", "rollMode"), modificateursOptions: this.getModificateurOptions(), pointAmeOptions: this.getPointAmeOptions(), diff --git a/packs/aides-de-jeu/000005.ldb b/packs/aides-de-jeu/000164.ldb similarity index 85% rename from packs/aides-de-jeu/000005.ldb rename to packs/aides-de-jeu/000164.ldb index a2f9075..07a7482 100644 Binary files a/packs/aides-de-jeu/000005.ldb and b/packs/aides-de-jeu/000164.ldb differ diff --git a/packs/aides-de-jeu/000158.log b/packs/aides-de-jeu/000187.log similarity index 100% rename from packs/aides-de-jeu/000158.log rename to packs/aides-de-jeu/000187.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index c16f179..48e7a36 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index bf5f302..928e586 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:23.214075 7f830ea006c0 Recovering log #154 -2024/05/01-23:27:23.268127 7f830ea006c0 Delete type=3 #152 -2024/05/01-23:27:23.268203 7f830ea006c0 Delete type=0 #154 -2024/05/02-09:11:36.500967 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.501026 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.542679 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.573785 7f830e0006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.573829 7f830e0006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.474868 7fc3f4c006c0 Recovering log #183 +2024/05/05-15:08:28.506757 7fc3f4c006c0 Delete type=3 #181 +2024/05/05-15:08:28.506853 7fc3f4c006c0 Delete type=0 #183 +2024/05/05-15:09:14.527216 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.527241 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.534234 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.547770 7fc3f32006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.547837 7fc3f32006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index 64dc113..474ce5f 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:44.588303 7fcc654006c0 Recovering log #150 -2024/04/24-19:19:45.046737 7fcc654006c0 Delete type=3 #148 -2024/04/24-19:19:45.047257 7fcc654006c0 Delete type=0 #150 -2024/04/24-20:38:33.674583 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.674627 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.681197 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.681325 7fcc5e4006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.681347 7fcc5e4006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.889016 7f87a54006c0 Recovering log #179 +2024/05/05-15:07:06.899014 7f87a54006c0 Delete type=3 #177 +2024/05/05-15:07:06.899098 7f87a54006c0 Delete type=0 #179 +2024/05/05-15:07:55.448193 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.448224 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.485470 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.485735 7f879e4006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.485776 7f879e4006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/MANIFEST-000156 b/packs/aides-de-jeu/MANIFEST-000156 deleted file mode 100644 index 9353785..0000000 Binary files a/packs/aides-de-jeu/MANIFEST-000156 and /dev/null differ diff --git a/packs/aides-de-jeu/MANIFEST-000185 b/packs/aides-de-jeu/MANIFEST-000185 new file mode 100644 index 0000000..1f05de7 Binary files /dev/null and b/packs/aides-de-jeu/MANIFEST-000185 differ diff --git a/packs/armes/000005.ldb b/packs/armes/000005.ldb deleted file mode 100644 index 68cbd29..0000000 Binary files a/packs/armes/000005.ldb and /dev/null differ diff --git a/packs/armes/000164.ldb b/packs/armes/000164.ldb new file mode 100644 index 0000000..c94ce93 Binary files /dev/null and b/packs/armes/000164.ldb differ diff --git a/packs/armes/000158.log b/packs/armes/000187.log similarity index 100% rename from packs/armes/000158.log rename to packs/armes/000187.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index c16f179..48e7a36 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/armes/LOG b/packs/armes/LOG index afda4d8..c6e6fae 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.766524 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:22.827125 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:22.827181 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.254083 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.254116 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.280718 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.280946 7f830e0006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.280969 7f830e0006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.197636 7fc3f42006c0 Recovering log #183 +2024/05/05-15:08:28.228972 7fc3f42006c0 Delete type=3 #181 +2024/05/05-15:08:28.229102 7fc3f42006c0 Delete type=0 #183 +2024/05/05-15:09:14.474463 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.474545 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.480529 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.486879 7fc3f32006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.486980 7fc3f32006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index 6b47a1c..ee29ff6 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.144098 7fcc5fe006c0 Recovering log #150 -2024/04/24-19:19:43.367448 7fcc5fe006c0 Delete type=3 #148 -2024/04/24-19:19:43.367549 7fcc5fe006c0 Delete type=0 #150 -2024/04/24-20:38:33.619450 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.619488 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.626512 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.632878 7fcc5e4006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.639837 7fcc5e4006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.785818 7f879fe006c0 Recovering log #179 +2024/05/05-15:07:06.796001 7f879fe006c0 Delete type=3 #177 +2024/05/05-15:07:06.796120 7f879fe006c0 Delete type=0 #179 +2024/05/05-15:07:54.984066 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:54.984099 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.021086 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.063815 7f879e4006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.063883 7f879e4006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) diff --git a/packs/armes/MANIFEST-000156 b/packs/armes/MANIFEST-000156 deleted file mode 100644 index c3b822a..0000000 Binary files a/packs/armes/MANIFEST-000156 and /dev/null differ diff --git a/packs/armes/MANIFEST-000185 b/packs/armes/MANIFEST-000185 new file mode 100644 index 0000000..553cac6 Binary files /dev/null and b/packs/armes/MANIFEST-000185 differ diff --git a/packs/competences-creatures/000005.ldb b/packs/competences-creatures/000005.ldb deleted file mode 100644 index 1029a34..0000000 Binary files a/packs/competences-creatures/000005.ldb and /dev/null differ diff --git a/packs/competences-creatures/000164.ldb b/packs/competences-creatures/000164.ldb new file mode 100644 index 0000000..0ab3d87 Binary files /dev/null and b/packs/competences-creatures/000164.ldb differ diff --git a/packs/competences-creatures/000158.log b/packs/competences-creatures/000187.log similarity index 100% rename from packs/competences-creatures/000158.log rename to packs/competences-creatures/000187.log diff --git a/packs/competences-creatures/CURRENT b/packs/competences-creatures/CURRENT index c16f179..48e7a36 100644 --- a/packs/competences-creatures/CURRENT +++ b/packs/competences-creatures/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/competences-creatures/LOG b/packs/competences-creatures/LOG index 271ffe8..f0f714b 100644 --- a/packs/competences-creatures/LOG +++ b/packs/competences-creatures/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.646130 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:22.699363 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:22.699494 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.159323 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.159401 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.198682 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.254049 7f830e0006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.280920 7f830e0006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.128774 7fc3f4c006c0 Recovering log #183 +2024/05/05-15:08:28.159335 7fc3f4c006c0 Delete type=3 #181 +2024/05/05-15:08:28.159402 7fc3f4c006c0 Delete type=0 #183 +2024/05/05-15:09:14.447833 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.447883 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.453996 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.460588 7fc3f32006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.460630 7fc3f32006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) diff --git a/packs/competences-creatures/LOG.old b/packs/competences-creatures/LOG.old index d03c22c..ad6ffdd 100644 --- a/packs/competences-creatures/LOG.old +++ b/packs/competences-creatures/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.017708 7fcc64a006c0 Recovering log #150 -2024/04/24-19:19:43.076452 7fcc64a006c0 Delete type=3 #148 -2024/04/24-19:19:43.076601 7fcc64a006c0 Delete type=0 #150 -2024/04/24-20:38:33.605428 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.605456 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.612661 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.619414 7fcc5e4006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.626638 7fcc5e4006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.761129 7f879fe006c0 Recovering log #179 +2024/05/05-15:07:06.771466 7f879fe006c0 Delete type=3 #177 +2024/05/05-15:07:06.771569 7f879fe006c0 Delete type=0 #179 +2024/05/05-15:07:54.904730 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:54.904818 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:54.941897 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.063762 7f879e4006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.063849 7f879e4006c0 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-000156 b/packs/competences-creatures/MANIFEST-000156 deleted file mode 100644 index 8545189..0000000 Binary files a/packs/competences-creatures/MANIFEST-000156 and /dev/null differ diff --git a/packs/competences-creatures/MANIFEST-000185 b/packs/competences-creatures/MANIFEST-000185 new file mode 100644 index 0000000..3d7d2a9 Binary files /dev/null and b/packs/competences-creatures/MANIFEST-000185 differ diff --git a/packs/competences/000005.ldb b/packs/competences/000005.ldb deleted file mode 100644 index 71d477d..0000000 Binary files a/packs/competences/000005.ldb and /dev/null differ diff --git a/packs/competences/000164.ldb b/packs/competences/000164.ldb new file mode 100644 index 0000000..effccd7 Binary files /dev/null and b/packs/competences/000164.ldb differ diff --git a/packs/competences/000158.log b/packs/competences/000187.log similarity index 100% rename from packs/competences/000158.log rename to packs/competences/000187.log diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index c16f179..48e7a36 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/competences/LOG b/packs/competences/LOG index 81aa1b9..58daa8c 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.506421 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:22.564236 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:22.564295 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.098373 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.098417 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.119557 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.120001 7f830e0006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.159292 7f830e0006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.059969 7fc3f42006c0 Recovering log #183 +2024/05/05-15:08:28.090803 7fc3f42006c0 Delete type=3 #181 +2024/05/05-15:08:28.090980 7fc3f42006c0 Delete type=0 #183 +2024/05/05-15:09:14.441351 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.441377 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.447653 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.460578 7fc3f32006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.460613 7fc3f32006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index 94982aa..6490090 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:42.882823 7fcc64a006c0 Recovering log #150 -2024/04/24-19:19:42.947075 7fcc64a006c0 Delete type=3 #148 -2024/04/24-19:19:42.947209 7fcc64a006c0 Delete type=0 #150 -2024/04/24-20:38:33.592157 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.592206 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.598509 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.605418 7fcc5e4006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.612914 7fcc5e4006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.735150 7f879fe006c0 Recovering log #179 +2024/05/05-15:07:06.746252 7f879fe006c0 Delete type=3 #177 +2024/05/05-15:07:06.746373 7f879fe006c0 Delete type=0 #179 +2024/05/05-15:07:54.867722 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:54.867757 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:54.904354 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:54.904606 7f879e4006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2024/05/05-15:07:54.904643 7f879e4006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000156 b/packs/competences/MANIFEST-000156 deleted file mode 100644 index ad6384b..0000000 Binary files a/packs/competences/MANIFEST-000156 and /dev/null differ diff --git a/packs/competences/MANIFEST-000185 b/packs/competences/MANIFEST-000185 new file mode 100644 index 0000000..ea2dca2 Binary files /dev/null and b/packs/competences/MANIFEST-000185 differ diff --git a/packs/equipement/000005.ldb b/packs/equipement/000005.ldb deleted file mode 100644 index d0f3587..0000000 Binary files a/packs/equipement/000005.ldb and /dev/null differ diff --git a/packs/equipement/000164.ldb b/packs/equipement/000164.ldb new file mode 100644 index 0000000..01a6cbf Binary files /dev/null and b/packs/equipement/000164.ldb differ diff --git a/packs/equipement/000158.log b/packs/equipement/000187.log similarity index 100% rename from packs/equipement/000158.log rename to packs/equipement/000187.log diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT index c16f179..48e7a36 100644 --- a/packs/equipement/CURRENT +++ b/packs/equipement/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/equipement/LOG b/packs/equipement/LOG index ccbea36..481ad57 100644 --- a/packs/equipement/LOG +++ b/packs/equipement/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.894642 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:22.960332 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:22.960478 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.383715 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.383750 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.432725 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.432967 7f830e0006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.433020 7f830e0006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.265384 7fc3f4c006c0 Recovering log #183 +2024/05/05-15:08:28.295246 7fc3f4c006c0 Delete type=3 #181 +2024/05/05-15:08:28.295309 7fc3f4c006c0 Delete type=0 #183 +2024/05/05-15:09:14.480663 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.480690 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.486637 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.486900 7fc3f32006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.486961 7fc3f32006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old index e437efe..dbb59d2 100644 --- a/packs/equipement/LOG.old +++ b/packs/equipement/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.562687 7fcc5fe006c0 Recovering log #150 -2024/04/24-19:19:43.720740 7fcc5fe006c0 Delete type=3 #148 -2024/04/24-19:19:43.720811 7fcc5fe006c0 Delete type=0 #150 -2024/04/24-20:38:33.632917 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.632957 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.639646 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.647315 7fcc5e4006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.653621 7fcc5e4006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.811789 7f879fe006c0 Recovering log #179 +2024/05/05-15:07:06.821907 7f879fe006c0 Delete type=3 #177 +2024/05/05-15:07:06.821963 7f879fe006c0 Delete type=0 #179 +2024/05/05-15:07:55.100066 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.100142 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.137073 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.216621 7f879e4006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.216687 7f879e4006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/MANIFEST-000156 b/packs/equipement/MANIFEST-000156 deleted file mode 100644 index fd8e127..0000000 Binary files a/packs/equipement/MANIFEST-000156 and /dev/null differ diff --git a/packs/equipement/MANIFEST-000185 b/packs/equipement/MANIFEST-000185 new file mode 100644 index 0000000..0491b95 Binary files /dev/null and b/packs/equipement/MANIFEST-000185 differ diff --git a/packs/historiques/000005.ldb b/packs/historiques/000005.ldb deleted file mode 100644 index a6bbe22..0000000 Binary files a/packs/historiques/000005.ldb and /dev/null differ diff --git a/packs/historiques/000164.ldb b/packs/historiques/000164.ldb new file mode 100644 index 0000000..483f7ad Binary files /dev/null and b/packs/historiques/000164.ldb differ diff --git a/packs/historiques/000158.log b/packs/historiques/000187.log similarity index 100% rename from packs/historiques/000158.log rename to packs/historiques/000187.log diff --git a/packs/historiques/CURRENT b/packs/historiques/CURRENT index c16f179..48e7a36 100644 --- a/packs/historiques/CURRENT +++ b/packs/historiques/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/historiques/LOG b/packs/historiques/LOG index 2bc16c3..335f761 100644 --- a/packs/historiques/LOG +++ b/packs/historiques/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.707186 7f830ea006c0 Recovering log #154 -2024/05/01-23:27:22.759982 7f830ea006c0 Delete type=3 #152 -2024/05/01-23:27:22.760146 7f830ea006c0 Delete type=0 #154 -2024/05/02-09:11:36.220285 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.220327 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.253856 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.280901 7f830e0006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.280958 7f830e0006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.161503 7fc3f56006c0 Recovering log #183 +2024/05/05-15:08:28.194742 7fc3f56006c0 Delete type=3 #181 +2024/05/05-15:08:28.194855 7fc3f56006c0 Delete type=0 #183 +2024/05/05-15:09:14.454182 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.454242 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.460452 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.460606 7fc3f32006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.460638 7fc3f32006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/LOG.old b/packs/historiques/LOG.old index d3c2a4c..7e9c4fc 100644 --- a/packs/historiques/LOG.old +++ b/packs/historiques/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.080280 7fcc5fe006c0 Recovering log #150 -2024/04/24-19:19:43.137577 7fcc5fe006c0 Delete type=3 #148 -2024/04/24-19:19:43.137905 7fcc5fe006c0 Delete type=0 #150 -2024/04/24-20:38:33.612932 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.613011 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.619236 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.626625 7fcc5e4006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.632899 7fcc5e4006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.773991 7f87a54006c0 Recovering log #179 +2024/05/05-15:07:06.783663 7f87a54006c0 Delete type=3 #177 +2024/05/05-15:07:06.783711 7f87a54006c0 Delete type=0 #179 +2024/05/05-15:07:55.021228 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.021260 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.063500 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.063834 7f879e4006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.063865 7f879e4006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/MANIFEST-000156 b/packs/historiques/MANIFEST-000156 deleted file mode 100644 index 1c138a0..0000000 Binary files a/packs/historiques/MANIFEST-000156 and /dev/null differ diff --git a/packs/historiques/MANIFEST-000185 b/packs/historiques/MANIFEST-000185 new file mode 100644 index 0000000..d4a8880 Binary files /dev/null and b/packs/historiques/MANIFEST-000185 differ diff --git a/packs/mutations/000021.ldb b/packs/mutations/000021.ldb deleted file mode 100644 index 0babfc4..0000000 Binary files a/packs/mutations/000021.ldb and /dev/null differ diff --git a/packs/mutations/000074.ldb b/packs/mutations/000074.ldb new file mode 100644 index 0000000..195352c Binary files /dev/null and b/packs/mutations/000074.ldb differ diff --git a/packs/mutations/000068.log b/packs/mutations/000097.log similarity index 100% rename from packs/mutations/000068.log rename to packs/mutations/000097.log diff --git a/packs/mutations/CURRENT b/packs/mutations/CURRENT index 7873dc6..b993e6c 100644 --- a/packs/mutations/CURRENT +++ b/packs/mutations/CURRENT @@ -1 +1 @@ -MANIFEST-000066 +MANIFEST-000095 diff --git a/packs/mutations/LOG b/packs/mutations/LOG index 2301bbd..139707a 100644 --- a/packs/mutations/LOG +++ b/packs/mutations/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.571142 7f830ea006c0 Recovering log #64 -2024/05/01-23:27:22.632070 7f830ea006c0 Delete type=3 #62 -2024/05/01-23:27:22.632145 7f830ea006c0 Delete type=0 #64 -2024/05/02-09:11:36.198876 7f830e0006c0 Level-0 table #69: started -2024/05/02-09:11:36.198914 7f830e0006c0 Level-0 table #69: 0 bytes OK -2024/05/02-09:11:36.220058 7f830e0006c0 Delete type=0 #67 -2024/05/02-09:11:36.254070 7f830e0006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.280933 7f830e0006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.094278 7fc3f60006c0 Recovering log #93 +2024/05/05-15:08:28.125562 7fc3f60006c0 Delete type=3 #91 +2024/05/05-15:08:28.125665 7fc3f60006c0 Delete type=0 #93 +2024/05/05-15:09:14.434835 7fc3f32006c0 Level-0 table #98: started +2024/05/05-15:09:14.434923 7fc3f32006c0 Level-0 table #98: 0 bytes OK +2024/05/05-15:09:14.441261 7fc3f32006c0 Delete type=0 #96 +2024/05/05-15:09:14.460566 7fc3f32006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.460598 7fc3f32006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) diff --git a/packs/mutations/LOG.old b/packs/mutations/LOG.old index 3727f1d..6dd13b3 100644 --- a/packs/mutations/LOG.old +++ b/packs/mutations/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:42.952046 7fcc5fe006c0 Recovering log #60 -2024/04/24-19:19:43.001963 7fcc5fe006c0 Delete type=3 #58 -2024/04/24-19:19:43.002046 7fcc5fe006c0 Delete type=0 #60 -2024/04/24-20:38:33.598679 7fcc5e4006c0 Level-0 table #65: started -2024/04/24-20:38:33.598713 7fcc5e4006c0 Level-0 table #65: 0 bytes OK -2024/04/24-20:38:33.605307 7fcc5e4006c0 Delete type=0 #63 -2024/04/24-20:38:33.612894 7fcc5e4006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.619433 7fcc5e4006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.748901 7f87a54006c0 Recovering log #89 +2024/05/05-15:07:06.758485 7f87a54006c0 Delete type=3 #87 +2024/05/05-15:07:06.758539 7f87a54006c0 Delete type=0 #89 +2024/05/05-15:07:54.942092 7f879e4006c0 Level-0 table #94: started +2024/05/05-15:07:54.942137 7f879e4006c0 Level-0 table #94: 0 bytes OK +2024/05/05-15:07:54.983919 7f879e4006c0 Delete type=0 #92 +2024/05/05-15:07:55.063791 7f879e4006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.063902 7f879e4006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) diff --git a/packs/mutations/MANIFEST-000066 b/packs/mutations/MANIFEST-000066 deleted file mode 100644 index 1b8c640..0000000 Binary files a/packs/mutations/MANIFEST-000066 and /dev/null differ diff --git a/packs/mutations/MANIFEST-000095 b/packs/mutations/MANIFEST-000095 new file mode 100644 index 0000000..d2274cb Binary files /dev/null and b/packs/mutations/MANIFEST-000095 differ diff --git a/packs/profils/000005.ldb b/packs/profils/000005.ldb deleted file mode 100644 index ebb9964..0000000 Binary files a/packs/profils/000005.ldb and /dev/null differ diff --git a/packs/profils/000164.ldb b/packs/profils/000164.ldb new file mode 100644 index 0000000..e0cc7d9 Binary files /dev/null and b/packs/profils/000164.ldb differ diff --git a/packs/profils/000158.log b/packs/profils/000187.log similarity index 100% rename from packs/profils/000158.log rename to packs/profils/000187.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index c16f179..48e7a36 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/profils/LOG b/packs/profils/LOG index 90bdf4f..9725077 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.967915 7f830ea006c0 Recovering log #154 -2024/05/01-23:27:23.021579 7f830ea006c0 Delete type=3 #152 -2024/05/01-23:27:23.021695 7f830ea006c0 Delete type=0 #154 -2024/05/02-09:11:36.347136 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.347192 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.383544 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.432943 7f830e0006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.432981 7f830e0006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.298960 7fc3f56006c0 Recovering log #183 +2024/05/05-15:08:28.332788 7fc3f56006c0 Delete type=3 #181 +2024/05/05-15:08:28.332842 7fc3f56006c0 Delete type=0 #183 +2024/05/05-15:09:14.487089 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.487111 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.493907 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.517258 7fc3f32006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.517311 7fc3f32006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index 0f7aba8..8c72020 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.730272 7fcc654006c0 Recovering log #150 -2024/04/24-19:19:43.889184 7fcc654006c0 Delete type=3 #148 -2024/04/24-19:19:43.889335 7fcc654006c0 Delete type=0 #150 -2024/04/24-20:38:33.639856 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.639921 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.647189 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.653608 7fcc5e4006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.660740 7fcc5e4006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.824442 7f87a54006c0 Recovering log #179 +2024/05/05-15:07:06.835293 7f87a54006c0 Delete type=3 #177 +2024/05/05-15:07:06.835346 7f87a54006c0 Delete type=0 #179 +2024/05/05-15:07:55.137339 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.137395 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.179469 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.216639 7f879e4006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.216702 7f879e4006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000156 b/packs/profils/MANIFEST-000156 deleted file mode 100644 index afa635d..0000000 Binary files a/packs/profils/MANIFEST-000156 and /dev/null differ diff --git a/packs/profils/MANIFEST-000185 b/packs/profils/MANIFEST-000185 new file mode 100644 index 0000000..553d0f8 Binary files /dev/null and b/packs/profils/MANIFEST-000185 differ diff --git a/packs/protections/000005.ldb b/packs/protections/000005.ldb deleted file mode 100644 index 1a40d69..0000000 Binary files a/packs/protections/000005.ldb and /dev/null differ diff --git a/packs/protections/000164.ldb b/packs/protections/000164.ldb new file mode 100644 index 0000000..ac78e11 Binary files /dev/null and b/packs/protections/000164.ldb differ diff --git a/packs/protections/000158.log b/packs/protections/000187.log similarity index 100% rename from packs/protections/000158.log rename to packs/protections/000187.log diff --git a/packs/protections/CURRENT b/packs/protections/CURRENT index c16f179..48e7a36 100644 --- a/packs/protections/CURRENT +++ b/packs/protections/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/protections/LOG b/packs/protections/LOG index 9962de2..a7ac962 100644 --- a/packs/protections/LOG +++ b/packs/protections/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:22.833117 7f830ea006c0 Recovering log #154 -2024/05/01-23:27:22.891228 7f830ea006c0 Delete type=3 #152 -2024/05/01-23:27:22.891391 7f830ea006c0 Delete type=0 #154 -2024/05/02-09:11:36.311160 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.311216 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.346904 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.432927 7f830e0006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.433001 7f830e0006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.232971 7fc3f60006c0 Recovering log #183 +2024/05/05-15:08:28.263060 7fc3f60006c0 Delete type=3 #181 +2024/05/05-15:08:28.263194 7fc3f60006c0 Delete type=0 #183 +2024/05/05-15:09:14.460749 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.460781 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.467216 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.486829 7fc3f32006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.486921 7fc3f32006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) diff --git a/packs/protections/LOG.old b/packs/protections/LOG.old index 2b4ef7b..995dc92 100644 --- a/packs/protections/LOG.old +++ b/packs/protections/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.378670 7fcc654006c0 Recovering log #150 -2024/04/24-19:19:43.554194 7fcc654006c0 Delete type=3 #148 -2024/04/24-19:19:43.554281 7fcc654006c0 Delete type=0 #150 -2024/04/24-20:38:33.626647 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.626669 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.632751 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.639816 7fcc5e4006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.647329 7fcc5e4006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.798725 7f87a54006c0 Recovering log #179 +2024/05/05-15:07:06.809297 7f87a54006c0 Delete type=3 #177 +2024/05/05-15:07:06.809440 7f87a54006c0 Delete type=0 #179 +2024/05/05-15:07:55.064062 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.064116 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.099799 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.216598 7f879e4006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.216671 7f879e4006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) diff --git a/packs/protections/MANIFEST-000156 b/packs/protections/MANIFEST-000156 deleted file mode 100644 index 63d4372..0000000 Binary files a/packs/protections/MANIFEST-000156 and /dev/null differ diff --git a/packs/protections/MANIFEST-000185 b/packs/protections/MANIFEST-000185 new file mode 100644 index 0000000..c9450c5 Binary files /dev/null and b/packs/protections/MANIFEST-000185 differ diff --git a/packs/tables/000158.log b/packs/scenes/000022.log similarity index 100% rename from packs/tables/000158.log rename to packs/scenes/000022.log diff --git a/packs/scenes/000024.ldb b/packs/scenes/000024.ldb new file mode 100644 index 0000000..9e2c18c Binary files /dev/null and b/packs/scenes/000024.ldb differ diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT new file mode 100644 index 0000000..f180e91 --- /dev/null +++ b/packs/scenes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000020 diff --git a/packs/talents-cellule/000158.log b/packs/scenes/LOCK similarity index 100% rename from packs/talents-cellule/000158.log rename to packs/scenes/LOCK diff --git a/packs/scenes/LOG b/packs/scenes/LOG new file mode 100644 index 0000000..072287f --- /dev/null +++ b/packs/scenes/LOG @@ -0,0 +1,15 @@ +2024/05/05-15:08:28.439510 7fc3f56006c0 Recovering log #17 +2024/05/05-15:08:28.470649 7fc3f56006c0 Delete type=3 #15 +2024/05/05-15:08:28.470739 7fc3f56006c0 Delete type=0 #17 +2024/05/05-15:09:14.506515 7fc3f32006c0 Level-0 table #23: started +2024/05/05-15:09:14.510022 7fc3f32006c0 Level-0 table #23: 5110 bytes OK +2024/05/05-15:09:14.517113 7fc3f32006c0 Delete type=0 #21 +2024/05/05-15:09:14.517303 7fc3f32006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.517340 7fc3f32006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 58 : 1 +2024/05/05-15:09:14.517351 7fc3f32006c0 Compacting 1@1 + 1@2 files +2024/05/05-15:09:14.520727 7fc3f32006c0 Generated table #24@1: 13 keys, 5110 bytes +2024/05/05-15:09:14.520753 7fc3f32006c0 Compacted 1@1 + 1@2 files => 5110 bytes +2024/05/05-15:09:14.526876 7fc3f32006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/05-15:09:14.527033 7fc3f32006c0 Delete type=2 #19 +2024/05/05-15:09:14.527161 7fc3f32006c0 Delete type=2 #23 +2024/05/05-15:09:14.547746 7fc3f32006c0 Manual compaction at level-1 from '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 58 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old new file mode 100644 index 0000000..a7bb65d --- /dev/null +++ b/packs/scenes/LOG.old @@ -0,0 +1,15 @@ +2024/05/05-15:07:06.875333 7f87a54006c0 Recovering log #12 +2024/05/05-15:07:06.885642 7f87a54006c0 Delete type=3 #10 +2024/05/05-15:07:06.885746 7f87a54006c0 Delete type=0 #12 +2024/05/05-15:07:55.295833 7f879e4006c0 Level-0 table #18: started +2024/05/05-15:07:55.313534 7f879e4006c0 Level-0 table #18: 5117 bytes OK +2024/05/05-15:07:55.350588 7f879e4006c0 Delete type=0 #16 +2024/05/05-15:07:55.392663 7f879e4006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.392703 7f879e4006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 38 : 0 +2024/05/05-15:07:55.392711 7f879e4006c0 Compacting 1@1 + 1@2 files +2024/05/05-15:07:55.410759 7f879e4006c0 Generated table #19@1: 13 keys, 4987 bytes +2024/05/05-15:07:55.410790 7f879e4006c0 Compacted 1@1 + 1@2 files => 4987 bytes +2024/05/05-15:07:55.447598 7f879e4006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/05-15:07:55.447741 7f879e4006c0 Delete type=2 #14 +2024/05/05-15:07:55.448113 7f879e4006c0 Delete type=2 #18 +2024/05/05-15:07:55.485671 7f879e4006c0 Manual compaction at level-1 from '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 38 : 0 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000020 b/packs/scenes/MANIFEST-000020 new file mode 100644 index 0000000..ecb85fd Binary files /dev/null and b/packs/scenes/MANIFEST-000020 differ diff --git a/packs/talents/000158.log b/packs/tables/000186.log similarity index 100% rename from packs/talents/000158.log rename to packs/tables/000186.log diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT index c16f179..cce82a3 100644 --- a/packs/tables/CURRENT +++ b/packs/tables/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000184 diff --git a/packs/tables/LOG b/packs/tables/LOG index 94a6a16..ea6e824 100644 --- a/packs/tables/LOG +++ b/packs/tables/LOG @@ -1,7 +1,7 @@ -2024/05/01-23:27:23.155659 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:23.211858 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:23.211931 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.479300 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.479347 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.500681 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.573763 7f830e0006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.405376 7fc3f4c006c0 Recovering log #182 +2024/05/05-15:08:28.436104 7fc3f4c006c0 Delete type=3 #180 +2024/05/05-15:08:28.436163 7fc3f4c006c0 Delete type=0 #182 +2024/05/05-15:09:14.500241 7fc3f32006c0 Level-0 table #187: started +2024/05/05-15:09:14.500264 7fc3f32006c0 Level-0 table #187: 0 bytes OK +2024/05/05-15:09:14.506337 7fc3f32006c0 Delete type=0 #185 +2024/05/05-15:09:14.517290 7fc3f32006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old index 6209df7..7f2ec96 100644 --- a/packs/tables/LOG.old +++ b/packs/tables/LOG.old @@ -1,7 +1,7 @@ -2024/04/24-19:19:44.361715 7fcc5fe006c0 Recovering log #150 -2024/04/24-19:19:44.586287 7fcc5fe006c0 Delete type=3 #148 -2024/04/24-19:19:44.586391 7fcc5fe006c0 Delete type=0 #150 -2024/04/24-20:38:33.660752 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.660779 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.667170 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.674538 7fcc5e4006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.862429 7f879fe006c0 Recovering log #178 +2024/05/05-15:07:06.873538 7f879fe006c0 Delete type=3 #176 +2024/05/05-15:07:06.873597 7f879fe006c0 Delete type=0 #178 +2024/05/05-15:07:55.216832 7f879e4006c0 Level-0 table #183: started +2024/05/05-15:07:55.216941 7f879e4006c0 Level-0 table #183: 0 bytes OK +2024/05/05-15:07:55.253366 7f879e4006c0 Delete type=0 #181 +2024/05/05-15:07:55.392622 7f879e4006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/MANIFEST-000156 b/packs/tables/MANIFEST-000156 deleted file mode 100644 index ef652a8..0000000 Binary files a/packs/tables/MANIFEST-000156 and /dev/null differ diff --git a/packs/tables/MANIFEST-000184 b/packs/tables/MANIFEST-000184 new file mode 100644 index 0000000..40a5ca0 Binary files /dev/null and b/packs/tables/MANIFEST-000184 differ diff --git a/packs/talents-cellule/000005.ldb b/packs/talents-cellule/000005.ldb deleted file mode 100644 index 867034f..0000000 Binary files a/packs/talents-cellule/000005.ldb and /dev/null differ diff --git a/packs/talents-cellule/000164.ldb b/packs/talents-cellule/000164.ldb new file mode 100644 index 0000000..63aa457 Binary files /dev/null and b/packs/talents-cellule/000164.ldb differ diff --git a/packs/talents-cellule/000187.log b/packs/talents-cellule/000187.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/talents-cellule/CURRENT b/packs/talents-cellule/CURRENT index c16f179..48e7a36 100644 --- a/packs/talents-cellule/CURRENT +++ b/packs/talents-cellule/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/talents-cellule/LOG b/packs/talents-cellule/LOG index 95857ff..adf2be8 100644 --- a/packs/talents-cellule/LOG +++ b/packs/talents-cellule/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:23.095384 7f830ea006c0 Recovering log #154 -2024/05/01-23:27:23.149683 7f830ea006c0 Delete type=3 #152 -2024/05/01-23:27:23.149830 7f830ea006c0 Delete type=0 #154 -2024/05/02-09:11:36.433090 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.433201 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.479084 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.573733 7f830e0006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.573816 7f830e0006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.372050 7fc3f60006c0 Recovering log #183 +2024/05/05-15:08:28.403264 7fc3f60006c0 Delete type=3 #181 +2024/05/05-15:08:28.403321 7fc3f60006c0 Delete type=0 #183 +2024/05/05-15:09:14.494028 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.494054 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.500123 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.517277 7fc3f32006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.517319 7fc3f32006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) diff --git a/packs/talents-cellule/LOG.old b/packs/talents-cellule/LOG.old index d2f3f95..e1ef703 100644 --- a/packs/talents-cellule/LOG.old +++ b/packs/talents-cellule/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:44.119776 7fcc654006c0 Recovering log #150 -2024/04/24-19:19:44.337580 7fcc654006c0 Delete type=3 #148 -2024/04/24-19:19:44.337645 7fcc654006c0 Delete type=0 #150 -2024/04/24-20:38:33.653632 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.653654 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.660555 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.667354 7fcc5e4006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.674567 7fcc5e4006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.850103 7f87a54006c0 Recovering log #179 +2024/05/05-15:07:06.859976 7f87a54006c0 Delete type=3 #177 +2024/05/05-15:07:06.860033 7f87a54006c0 Delete type=0 #179 +2024/05/05-15:07:55.179762 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.179850 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.216397 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.216656 7f879e4006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.216718 7f879e4006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) diff --git a/packs/talents-cellule/MANIFEST-000156 b/packs/talents-cellule/MANIFEST-000156 deleted file mode 100644 index 6bab5ac..0000000 Binary files a/packs/talents-cellule/MANIFEST-000156 and /dev/null differ diff --git a/packs/talents-cellule/MANIFEST-000185 b/packs/talents-cellule/MANIFEST-000185 new file mode 100644 index 0000000..4ddb4b3 Binary files /dev/null and b/packs/talents-cellule/MANIFEST-000185 differ diff --git a/packs/talents/000005.ldb b/packs/talents/000005.ldb deleted file mode 100644 index 93fe887..0000000 Binary files a/packs/talents/000005.ldb and /dev/null differ diff --git a/packs/talents/000164.ldb b/packs/talents/000164.ldb new file mode 100644 index 0000000..44aa10d Binary files /dev/null and b/packs/talents/000164.ldb differ diff --git a/packs/talents/000187.log b/packs/talents/000187.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/talents/CURRENT b/packs/talents/CURRENT index c16f179..48e7a36 100644 --- a/packs/talents/CURRENT +++ b/packs/talents/CURRENT @@ -1 +1 @@ -MANIFEST-000156 +MANIFEST-000185 diff --git a/packs/talents/LOG b/packs/talents/LOG index 1665045..392bc76 100644 --- a/packs/talents/LOG +++ b/packs/talents/LOG @@ -1,8 +1,8 @@ -2024/05/01-23:27:23.034782 7f830fe006c0 Recovering log #154 -2024/05/01-23:27:23.088133 7f830fe006c0 Delete type=3 #152 -2024/05/01-23:27:23.088245 7f830fe006c0 Delete type=0 #154 -2024/05/02-09:11:36.281168 7f830e0006c0 Level-0 table #159: started -2024/05/02-09:11:36.281215 7f830e0006c0 Level-0 table #159: 0 bytes OK -2024/05/02-09:11:36.310895 7f830e0006c0 Delete type=0 #157 -2024/05/02-09:11:36.432910 7f830e0006c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) -2024/05/02-09:11:36.432956 7f830e0006c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2024/05/05-15:08:28.335525 7fc3f42006c0 Recovering log #183 +2024/05/05-15:08:28.368012 7fc3f42006c0 Delete type=3 #181 +2024/05/05-15:08:28.368178 7fc3f42006c0 Delete type=0 #183 +2024/05/05-15:09:14.467366 7fc3f32006c0 Level-0 table #188: started +2024/05/05-15:09:14.467406 7fc3f32006c0 Level-0 table #188: 0 bytes OK +2024/05/05-15:09:14.474303 7fc3f32006c0 Delete type=0 #186 +2024/05/05-15:09:14.486856 7fc3f32006c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2024/05/05-15:09:14.486941 7fc3f32006c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/LOG.old b/packs/talents/LOG.old index e701a29..cecb69a 100644 --- a/packs/talents/LOG.old +++ b/packs/talents/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-19:19:43.897208 7fcc5fe006c0 Recovering log #150 -2024/04/24-19:19:44.108234 7fcc5fe006c0 Delete type=3 #148 -2024/04/24-19:19:44.108303 7fcc5fe006c0 Delete type=0 #150 -2024/04/24-20:38:33.647346 7fcc5e4006c0 Level-0 table #155: started -2024/04/24-20:38:33.647386 7fcc5e4006c0 Level-0 table #155: 0 bytes OK -2024/04/24-20:38:33.653476 7fcc5e4006c0 Delete type=0 #153 -2024/04/24-20:38:33.660725 7fcc5e4006c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) -2024/04/24-20:38:33.667392 7fcc5e4006c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2024/05/05-15:07:06.837410 7f879fe006c0 Recovering log #179 +2024/05/05-15:07:06.847604 7f879fe006c0 Delete type=3 #177 +2024/05/05-15:07:06.847665 7f879fe006c0 Delete type=0 #179 +2024/05/05-15:07:55.253562 7f879e4006c0 Level-0 table #184: started +2024/05/05-15:07:55.253605 7f879e4006c0 Level-0 table #184: 0 bytes OK +2024/05/05-15:07:55.295585 7f879e4006c0 Delete type=0 #182 +2024/05/05-15:07:55.392647 7f879e4006c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2024/05/05-15:07:55.392687 7f879e4006c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/MANIFEST-000156 b/packs/talents/MANIFEST-000156 deleted file mode 100644 index cacd739..0000000 Binary files a/packs/talents/MANIFEST-000156 and /dev/null differ diff --git a/packs/talents/MANIFEST-000185 b/packs/talents/MANIFEST-000185 new file mode 100644 index 0000000..b766cdf Binary files /dev/null and b/packs/talents/MANIFEST-000185 differ diff --git a/system.json b/system.json index e3127d7..020e374 100644 --- a/system.json +++ b/system.json @@ -31,8 +31,10 @@ "esmodules": [ "modules/hawkmoon-main.js" ], - "gridDistance": 5, - "gridUnits": "m", + "grid": { + "distance": 5, + "units": "m" + }, "license": "LICENSE.txt", "manifest": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/raw/branch/master/system.json", "download": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/archive/fvtt-hawkmoon-cyd-12.0.0.zip", @@ -82,7 +84,8 @@ "packs": [ "skills-creatures", "tables", - "aides-de-jeu" + "aides-de-jeu", + "scenes" ], "folders": [] } @@ -222,6 +225,18 @@ "ASSISTANT": "OWNER" } }, + { + "type": "Scene", + "label": "Scènes", + "name": "scenes", + "path": "packs/scenes", + "system": "fvtt-hawkmoon-cyd", + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } + }, { "type": "JournalEntry", "label": "Aides de Jeu", diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html index 4b25ccc..5e9037b 100644 --- a/templates/actor-sheet.html +++ b/templates/actor-sheet.html @@ -37,11 +37,7 @@

Etat

@@ -79,9 +75,7 @@ class="roll-attribut">{{attr.label}} {{/each}} @@ -258,9 +252,7 @@ {{#if (ne skill.system.attribut1 "none")}} @@ -581,13 +573,8 @@ @@ -145,9 +139,7 @@ data-attr-key="tochoose">{{skill.name}} {{#if (ne skill.system.attribut1 "none")}} diff --git a/templates/item-arme-sheet.html b/templates/item-arme-sheet.html index 0f711c1..dbb3d36 100644 --- a/templates/item-arme-sheet.html +++ b/templates/item-arme-sheet.html @@ -15,12 +15,7 @@
  • diff --git a/templates/item-artefact-sheet.html b/templates/item-artefact-sheet.html index 49d0e80..5f19fca 100644 --- a/templates/item-artefact-sheet.html +++ b/templates/item-artefact-sheet.html @@ -21,13 +21,7 @@
  • @@ -35,14 +29,7 @@ diff --git a/templates/item-competence-sheet.html b/templates/item-competence-sheet.html index c454cbf..ff5b7bb 100644 --- a/templates/item-competence-sheet.html +++ b/templates/item-competence-sheet.html @@ -20,11 +20,7 @@
  • @@ -32,11 +28,7 @@
  • @@ -44,11 +36,7 @@
  • diff --git a/templates/item-contact-sheet.html b/templates/item-contact-sheet.html index f37dfd3..d316e7b 100644 --- a/templates/item-contact-sheet.html +++ b/templates/item-contact-sheet.html @@ -15,19 +15,12 @@ diff --git a/templates/item-mutation-sheet.html b/templates/item-mutation-sheet.html index 5dc9420..7eac426 100644 --- a/templates/item-mutation-sheet.html +++ b/templates/item-mutation-sheet.html @@ -15,20 +15,10 @@ -
  • diff --git a/templates/item-profil-sheet.html b/templates/item-profil-sheet.html index 3e8213c..416ae5c 100644 --- a/templates/item-profil-sheet.html +++ b/templates/item-profil-sheet.html @@ -21,11 +21,7 @@
  • @@ -33,11 +29,7 @@
  • @@ -45,11 +37,7 @@
  • diff --git a/templates/item-talent-sheet.html b/templates/item-talent-sheet.html index 89daeed..63438d9 100644 --- a/templates/item-talent-sheet.html +++ b/templates/item-talent-sheet.html @@ -16,11 +16,7 @@ @@ -28,13 +24,7 @@ diff --git a/templates/partial-automation.html b/templates/partial-automation.html index e363d8a..c79e799 100644 --- a/templates/partial-automation.html +++ b/templates/partial-automation.html @@ -14,11 +14,7 @@ @@ -44,10 +40,7 @@
  • diff --git a/templates/partial-list-niveau-creature.html b/templates/partial-list-niveau-creature.html deleted file mode 100644 index f2ca6f1..0000000 --- a/templates/partial-list-niveau-creature.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/partial-list-niveau.html b/templates/partial-list-niveau.html deleted file mode 100644 index 706f51a..0000000 --- a/templates/partial-list-niveau.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/templates/partial-sante-etat.html b/templates/partial-sante-etat.html deleted file mode 100644 index 20612fd..0000000 --- a/templates/partial-sante-etat.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/templates/roll-dialog-generic.html b/templates/roll-dialog-generic.html index 7bc2bd8..5256e3f 100644 --- a/templates/roll-dialog-generic.html +++ b/templates/roll-dialog-generic.html @@ -12,11 +12,7 @@ {{#if (eq attrKey "tochoose")}} Attribut {{else}} {{attr.label}} @@ -40,12 +36,7 @@
    Utiliser une maîtrise
    {{/if}} @@ -135,10 +126,7 @@
    Soutiens
    @@ -179,21 +167,13 @@
    Tireur en déplacement ?
    Couvert de la cible ?
    @@ -207,12 +187,7 @@
    Taille de la cible ?
    {{/if}} @@ -222,17 +197,7 @@ Bonus/Malus
    @@ -242,11 +207,7 @@
    SD de distance
    {{else}} @@ -264,7 +225,7 @@
    Difficulté :
    {{/if}}