Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0cb764f1f3 | |||
| 81c1848e87 | |||
| c172e20244 |
@@ -60,4 +60,4 @@ jobs:
|
||||
manifest: 'https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/releases/download/latest/system.json'
|
||||
notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-hawkmoon-cyd.zip'
|
||||
compatibility-minimum: '13'
|
||||
compatibility-verified: '13'
|
||||
compatibility-verified: '14'
|
||||
|
||||
@@ -148,26 +148,32 @@ export class HawkmoonActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getSkills() {
|
||||
let comp = []
|
||||
for (let item of this.items) {
|
||||
item = foundry.utils.duplicate(item)
|
||||
if (item.type == "competence") {
|
||||
item.system.attribut1total = item.system.niveau + (this.system.attributs[item.system.attribut1]?.value || 0)
|
||||
item.system.attribut2total = item.system.niveau + (this.system.attributs[item.system.attribut2]?.value || 0)
|
||||
item.system.attribut3total = item.system.niveau + (this.system.attributs[item.system.attribut3]?.value || 0)
|
||||
if (item.system.niveau == 0) {
|
||||
item.system.attribut1total -= 3
|
||||
item.system.attribut2total -= 3
|
||||
item.system.attribut3total -= 3
|
||||
// Utiliser filter et map pour éviter les duplications inutiles
|
||||
const comp = this.items
|
||||
.filter(item => item.type === "competence")
|
||||
.map(item => {
|
||||
const itemCopy = foundry.utils.duplicate(item);
|
||||
const attrs = this.system.attributs;
|
||||
|
||||
itemCopy.system.attribut1total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut1]?.value || 0);
|
||||
itemCopy.system.attribut2total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut2]?.value || 0);
|
||||
itemCopy.system.attribut3total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut3]?.value || 0);
|
||||
|
||||
if (itemCopy.system.niveau === 0) {
|
||||
itemCopy.system.attribut1total -= 3;
|
||||
itemCopy.system.attribut2total -= 3;
|
||||
itemCopy.system.attribut3total -= 3;
|
||||
}
|
||||
item.system.attribut1label = this.system.attributs[item.system.attribut1]?.label || ""
|
||||
item.system.attribut2label = this.system.attributs[item.system.attribut2]?.label || ""
|
||||
item.system.attribut3label = this.system.attributs[item.system.attribut3]?.label || ""
|
||||
comp.push(item)
|
||||
}
|
||||
}
|
||||
HawkmoonUtility.sortArrayObjectsByName(comp)
|
||||
return comp
|
||||
|
||||
itemCopy.system.attribut1label = attrs[itemCopy.system.attribut1]?.label || "";
|
||||
itemCopy.system.attribut2label = attrs[itemCopy.system.attribut2]?.label || "";
|
||||
itemCopy.system.attribut3label = attrs[itemCopy.system.attribut3]?.label || "";
|
||||
|
||||
return itemCopy;
|
||||
});
|
||||
|
||||
HawkmoonUtility.sortArrayObjectsByName(comp);
|
||||
return comp;
|
||||
}
|
||||
|
||||
/* ----------------------- --------------------- */
|
||||
@@ -412,8 +418,7 @@ export class HawkmoonActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getBonusDegats() {
|
||||
const idx = Math.min(this.system.attributs.pui.value, __degatsBonus.length - 1)
|
||||
return __degatsBonus[idx] ?? 0
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -658,10 +663,15 @@ export class HawkmoonActor extends Actor {
|
||||
/* -------------------------------------------- */
|
||||
async rollAttribut(attrKey, isInit = false) {
|
||||
let rollData = this.getCommonRollData(attrKey)
|
||||
rollData.multiplier = (isInit) ? 1 : 2
|
||||
rollData.isInit = isInit
|
||||
if (isInit) {
|
||||
rollData.multiplier = 1
|
||||
rollData.initbonus = this.system.combat.initbonus ?? 0
|
||||
} else {
|
||||
rollData.multiplier = 2 // fallback si attrKey2 vaut l'attribut principal
|
||||
rollData.hasAttr2 = true
|
||||
rollData.attrKey2 = attrKey // même attribut par défaut = ×2
|
||||
rollData.selectableAttributes = this.system.attributs
|
||||
}
|
||||
await HawkmoonRollDialog.create(this, rollData)
|
||||
}
|
||||
@@ -741,41 +751,48 @@ export class HawkmoonActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async rollArmeDegats(armeId, targetVigueur = undefined, rollDataInput = undefined) {
|
||||
let arme = this.items.get(armeId)
|
||||
if (!arme.system.equipped) {
|
||||
ui.notifications.warn("Cette arme doit être équipée pour pouvoir infliger des dégâts !")
|
||||
return
|
||||
const arme = this.items.get(armeId);
|
||||
if (!arme) {
|
||||
ui.notifications.warn("Arme non trouvée !");
|
||||
return;
|
||||
}
|
||||
if (arme.type == "arme") {
|
||||
arme = this.prepareArme(arme)
|
||||
|
||||
if (!arme.system?.equipped) {
|
||||
ui.notifications.warn("Cette arme doit être équipée pour pouvoir infliger des dégâts !");
|
||||
return;
|
||||
}
|
||||
console.log("DEGATS", arme, targetVigueur, rollDataInput)
|
||||
let roll
|
||||
let bonus = 0
|
||||
let bonus2 = 0
|
||||
|
||||
const preparedArme = arme.type === "arme" ? this.prepareArme(arme) : arme;
|
||||
console.log("DEGATS", preparedArme, targetVigueur, rollDataInput);
|
||||
|
||||
let roll;
|
||||
let bonus = 0;
|
||||
let bonus2 = 0;
|
||||
|
||||
if (rollDataInput?.applyCoupDevastateur) {
|
||||
bonus2 = Math.floor(this.system.attributs.pui.value / 2)
|
||||
let talent = this.items.find(item => item.type == "talent" && item.name.toLowerCase() == "coup dévastateur")
|
||||
this.updateEmbeddedDocuments('Item', [{ _id: talent.id, 'system.used': true }])
|
||||
bonus2 = Math.floor(this.system.attributs.pui.value / 2);
|
||||
const talent = this.items.find(item => item.type === "talent" && item.name.toLowerCase() === "coup dévastateur");
|
||||
if (talent) {
|
||||
await this.updateEmbeddedDocuments('Item', [{ _id: talent.id, 'system.used': true }]);
|
||||
}
|
||||
}
|
||||
|
||||
if (rollDataInput?.isHeroique) {
|
||||
if (rollDataInput?.attaqueCharge) {
|
||||
bonus = 5
|
||||
bonus = 5;
|
||||
}
|
||||
if (rollDataInput?.chargeCavalerie) {
|
||||
bonus = 6
|
||||
bonus = 6;
|
||||
}
|
||||
roll = await new Roll("2d10rr10+" + arme.system.totalDegats + "+" + bonus + "+" + bonus2).roll()
|
||||
roll = await new Roll("2d10rr10+" + preparedArme.system.totalDegats + "+" + bonus + "+" + bonus2).roll();
|
||||
} else {
|
||||
if (rollDataInput?.attaqueCharge) {
|
||||
bonus = 3
|
||||
bonus = 3;
|
||||
}
|
||||
if (rollDataInput?.chargeCavalerie) {
|
||||
bonus = 4
|
||||
bonus = 4;
|
||||
}
|
||||
roll = await new Roll("1d10+" + arme.system.totalDegats + "+" + bonus + "+" + bonus2).roll()
|
||||
roll = await new Roll("1d10+" + preparedArme.system.totalDegats + "+" + bonus + "+" + bonus2).roll();
|
||||
}
|
||||
await HawkmoonUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
|
||||
let nbEtatPerdus = 0
|
||||
@@ -784,17 +801,17 @@ export class HawkmoonActor extends Actor {
|
||||
}
|
||||
//console.log(roll)
|
||||
let rollData = {
|
||||
arme: arme,
|
||||
arme: preparedArme,
|
||||
finalResult: roll.total,
|
||||
formula: roll.formula,
|
||||
alias: this.name,
|
||||
actorImg: this.img,
|
||||
actorId: this.id,
|
||||
defenderTokenId: rollDataInput?.defenderTokenId,
|
||||
actionImg: arme.img,
|
||||
actionImg: preparedArme.img,
|
||||
targetVigueur: targetVigueur,
|
||||
nbEtatPerdus: nbEtatPerdus
|
||||
}
|
||||
};
|
||||
HawkmoonUtility.createChatWithRollMode(rollData.alias, {
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-degats-result.hbs`, rollData)
|
||||
})
|
||||
|
||||
@@ -106,8 +106,17 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static updatePauseLogo(html) {
|
||||
let logoPause = "systems/fvtt-hawkmoon-cyd/assets/logos/" + game.settings.get("fvtt-hawkmoon-cyd", "hawkmoon-pause-logo") + ".webp"
|
||||
console.log("Hawkmoon | Updating pause logo to:", logoPause)
|
||||
const validLogos = ["hawkmoon_logo", "logo_pause_resistance", "logo_pause_hawkmoon_stone", "logo_pause_hawkmoon_violet", "logo_pause_hawkmoon_beige", "logo_pause_hawkmoon_rouge"];
|
||||
let logoName = game.settings.get("fvtt-hawkmoon-cyd", "hawkmoon-pause-logo");
|
||||
|
||||
// Validation du nom du logo
|
||||
if (!validLogos.includes(logoName)) {
|
||||
console.error("Hawkmoon | Invalid logo name:", logoName);
|
||||
return;
|
||||
}
|
||||
|
||||
let logoPause = "systems/fvtt-hawkmoon-cyd/assets/logos/" + logoName + ".webp";
|
||||
console.log("Hawkmoon | Updating pause logo to:", logoPause);
|
||||
|
||||
// Supprimer l'ancien style s'il existe
|
||||
let oldStyle = document.getElementById('hawkmoon-pause-logo-override')
|
||||
@@ -138,13 +147,6 @@ export class HawkmoonUtility {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
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++) {
|
||||
@@ -161,8 +163,19 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async loadCompendium(compendium, filter = item => true) {
|
||||
let compendiumData = await HawkmoonUtility.loadCompendiumData(compendium);
|
||||
return compendiumData.filter(filter);
|
||||
const pack = game.packs.get(compendium);
|
||||
if (!pack) {
|
||||
console.warn(`Hawkmoon | Compendium not found: ${compendium}`);
|
||||
return [];
|
||||
}
|
||||
|
||||
try {
|
||||
const compendiumData = await pack.getDocuments();
|
||||
return compendiumData.filter(filter);
|
||||
} catch (error) {
|
||||
console.error(`Hawkmoon | Error loading compendium ${compendium}:`, error);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -366,6 +379,12 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static computeResult(rollData) {
|
||||
// Validation des données de roll
|
||||
if (!rollData.roll?.terms?.[0]?.results?.[0]?.result) {
|
||||
console.error("Hawkmoon | Invalid roll data:", rollData);
|
||||
return;
|
||||
}
|
||||
|
||||
rollData.diceResult = rollData.roll.terms[0].results[0].result
|
||||
if (rollData.mainDice.includes("d20")) {
|
||||
let diceValue = rollData.roll.terms[0].results[0].result
|
||||
@@ -379,7 +398,6 @@ export class HawkmoonUtility {
|
||||
}
|
||||
}
|
||||
|
||||
//console.log("Result : ", rollData
|
||||
this.computeResultQuality(rollData)
|
||||
}
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000418
|
||||
MANIFEST-000427
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.518083 7f3054fed6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.545082 7f303effd6c0 Level-0 table #421: started
|
||||
2026/04/01-21:52:26.545109 7f303effd6c0 Level-0 table #421: 0 bytes OK
|
||||
2026/04/01-21:52:26.552279 7f303effd6c0 Delete type=0 #419
|
||||
2026/04/01-21:52:26.566131 7f303effd6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1
|
||||
2026/04/01-21:52:26.566150 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.569834 7f303effd6c0 Generated table #422@0: 4 keys, 41333 bytes
|
||||
2026/04/01-21:52:26.569864 7f303effd6c0 Compacted 1@0 + 0@1 files => 41333 bytes
|
||||
2026/04/01-21:52:26.575990 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.576118 7f303effd6c0 Delete type=2 #389
|
||||
2026/04/01-21:52:26.588378 7f303effd6c0 Manual compaction at level-0 from '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.946320 7fe6ad3fe6c0 Recovering log #425
|
||||
2026/04/01-23:48:22.956435 7fe6ad3fe6c0 Delete type=3 #423
|
||||
2026/04/01-23:48:22.956489 7fe6ad3fe6c0 Delete type=0 #425
|
||||
2026/04/01-23:48:49.994348 7fe6977fe6c0 Level-0 table #430: started
|
||||
2026/04/01-23:48:49.994365 7fe6977fe6c0 Level-0 table #430: 0 bytes OK
|
||||
2026/04/01-23:48:50.000517 7fe6977fe6c0 Delete type=0 #428
|
||||
2026/04/01-23:48:50.021367 7fe6977fe6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.488954 7f3054fed6c0 Log #416: 0 ops saved to Table #417 OK
|
||||
2026/04/01-21:50:37.489105 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu/000416.log: OK
|
||||
2026/04/01-21:50:37.491269 7f3054fed6c0 Table #389: 4 entries OK
|
||||
2026/04/01-21:50:37.498288 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu; recovered 1 files; 41333 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.702487 7fe6ad3fe6c0 Recovering log #420
|
||||
2026/04/01-23:46:40.761328 7fe6ad3fe6c0 Delete type=3 #418
|
||||
2026/04/01-23:46:40.761414 7fe6ad3fe6c0 Delete type=0 #420
|
||||
2026/04/01-23:48:06.570346 7fe6977fe6c0 Level-0 table #426: started
|
||||
2026/04/01-23:48:06.570403 7fe6977fe6c0 Level-0 table #426: 0 bytes OK
|
||||
2026/04/01-23:48:06.576732 7fe6977fe6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:06.601089 7fe6977fe6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/aides-de-jeu/MANIFEST-000427
Normal file
BIN
packs/aides-de-jeu/MANIFEST-000427
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.248910 7f3054fed6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.427980 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.428011 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.433923 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.453062 7f303effd6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1
|
||||
2026/04/01-21:52:26.453075 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.456518 7f303effd6c0 Generated table #421@0: 49 keys, 14167 bytes
|
||||
2026/04/01-21:52:26.456558 7f303effd6c0 Compacted 1@0 + 0@1 files => 14167 bytes
|
||||
2026/04/01-21:52:26.462451 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.462557 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.496365 7f303effd6c0 Manual compaction at level-0 from '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.846060 7fe6acbfd6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.856276 7fe6acbfd6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.856340 7fe6acbfd6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.941313 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.941337 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.947373 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.967196 7fe6977fe6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.223069 7f3054fed6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.223194 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes/000415.log: OK
|
||||
2026/04/01-21:50:37.223591 7f3054fed6c0 Table #388: 49 entries OK
|
||||
2026/04/01-21:50:37.228238 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes; recovered 1 files; 14167 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.215373 7fe697fff6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.273392 7fe697fff6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.273479 7fe697fff6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.532308 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.532350 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.538189 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.544356 7fe6977fe6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/armes/MANIFEST-000426
Normal file
BIN
packs/armes/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.187910 7f303f7fe6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.373765 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.373792 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.380614 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.407289 7f303effd6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at '!items!tFU5yISK6spdNWco' @ 40 : 1
|
||||
2026/04/01-21:52:26.407300 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.410410 7f303effd6c0 Generated table #421@0: 8 keys, 7054 bytes
|
||||
2026/04/01-21:52:26.410437 7f303effd6c0 Compacted 1@0 + 0@1 files => 7054 bytes
|
||||
2026/04/01-21:52:26.416293 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.416365 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.427860 7f303effd6c0 Manual compaction at level-0 from '!items!tFU5yISK6spdNWco' @ 40 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.821542 7fe6ad3fe6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.831720 7fe6ad3fe6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.831773 7fe6ad3fe6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.933594 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.933618 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.941087 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.941234 7fe6977fe6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.159826 7f303f7fe6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.159989 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures/000415.log: OK
|
||||
2026/04/01-21:50:37.160305 7f303f7fe6c0 Table #388: 8 entries OK
|
||||
2026/04/01-21:50:37.165673 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures; recovered 1 files; 7054 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.104749 7fe697fff6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.156075 7fe697fff6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.156217 7fe697fff6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.506267 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.506290 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.512158 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.518617 7fe6977fe6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/competences-creatures/MANIFEST-000426
Normal file
BIN
packs/competences-creatures/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.104198 7f30557ee6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.361275 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.361358 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.367336 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.387152 7f303effd6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at '!items!yI1zY5k8mAdx9wHK' @ 75 : 1
|
||||
2026/04/01-21:52:26.387166 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.390737 7f303effd6c0 Generated table #421@0: 15 keys, 16660 bytes
|
||||
2026/04/01-21:52:26.390778 7f303effd6c0 Compacted 1@0 + 0@1 files => 16660 bytes
|
||||
2026/04/01-21:52:26.396659 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.396752 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.427832 7f303effd6c0 Manual compaction at level-0 from '!items!yI1zY5k8mAdx9wHK' @ 75 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.797623 7fe6ad3fe6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.806917 7fe6ad3fe6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.806976 7fe6ad3fe6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.920356 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.920405 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.927156 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.941217 7fe6977fe6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:35.374153 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:35.374279 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences/000415.log: OK
|
||||
2026/04/01-21:50:35.376008 7f30557ee6c0 Table #388: 15 entries OK
|
||||
2026/04/01-21:50:35.381569 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences; recovered 1 files; 16660 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:39.985628 7fe6acbfd6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.048051 7fe6acbfd6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.048122 7fe6acbfd6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.492888 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.492949 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.499711 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.518591 7fe6977fe6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/competences/MANIFEST-000426
Normal file
BIN
packs/competences/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.312218 7f30557ee6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.446652 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.446674 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.452925 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.484989 7f303effd6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1
|
||||
2026/04/01-21:52:26.485002 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.488643 7f303effd6c0 Generated table #421@0: 151 keys, 31834 bytes
|
||||
2026/04/01-21:52:26.488676 7f303effd6c0 Compacted 1@0 + 0@1 files => 31834 bytes
|
||||
2026/04/01-21:52:26.496082 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.496215 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.496407 7f303effd6c0 Manual compaction at level-0 from '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.870211 7fe6acbfd6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.880811 7fe6acbfd6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.880863 7fe6acbfd6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.960933 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.960956 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.967033 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.967228 7fe6977fe6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.283827 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.283988 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement/000415.log: OK
|
||||
2026/04/01-21:50:37.285401 7f30557ee6c0 Table #388: 151 entries OK
|
||||
2026/04/01-21:50:37.292810 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement; recovered 1 files; 31834 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.332623 7fe697fff6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.390008 7fe697fff6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.390084 7fe697fff6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.525916 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.525943 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.532172 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.544345 7fe6977fe6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/equipement/MANIFEST-000426
Normal file
BIN
packs/equipement/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.218059 7f303ffff6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.367478 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.367515 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.373589 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.396908 7f303effd6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at '!items!z1HtkvazCGHut7cz' @ 240 : 1
|
||||
2026/04/01-21:52:26.396921 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.400605 7f303effd6c0 Generated table #421@0: 48 keys, 19976 bytes
|
||||
2026/04/01-21:52:26.400631 7f303effd6c0 Compacted 1@0 + 0@1 files => 19976 bytes
|
||||
2026/04/01-21:52:26.407058 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.407177 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.427846 7f303effd6c0 Manual compaction at level-0 from '!items!z1HtkvazCGHut7cz' @ 240 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.833629 7fe6adbff6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.843596 7fe6adbff6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.843651 7fe6adbff6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.927280 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.927306 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.933442 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.941227 7fe6977fe6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.191100 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.191694 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques/000415.log: OK
|
||||
2026/04/01-21:50:37.192374 7f303ffff6c0 Table #388: 48 entries OK
|
||||
2026/04/01-21:50:37.197077 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques; recovered 1 files; 19976 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.158559 7fe6acbfd6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.212288 7fe6acbfd6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.212362 7fe6acbfd6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.499942 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.499977 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.506160 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.518603 7fe6977fe6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/historiques/MANIFEST-000426
Normal file
BIN
packs/historiques/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000327
|
||||
MANIFEST-000336
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.156100 7f30557ee6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.380729 7f303effd6c0 Level-0 table #330: started
|
||||
2026/04/01-21:52:26.380762 7f303effd6c0 Level-0 table #330: 0 bytes OK
|
||||
2026/04/01-21:52:26.386955 7f303effd6c0 Delete type=0 #328
|
||||
2026/04/01-21:52:26.416451 7f303effd6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at '!items!zttESycGKltfwCzJ' @ 811 : 1
|
||||
2026/04/01-21:52:26.416461 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.420353 7f303effd6c0 Generated table #331@0: 167 keys, 58927 bytes
|
||||
2026/04/01-21:52:26.420388 7f303effd6c0 Compacted 1@0 + 0@1 files => 58927 bytes
|
||||
2026/04/01-21:52:26.427596 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.427710 7f303effd6c0 Delete type=2 #298
|
||||
2026/04/01-21:52:26.427871 7f303effd6c0 Manual compaction at level-0 from '!items!zttESycGKltfwCzJ' @ 811 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.809382 7fe6adbff6c0 Recovering log #334
|
||||
2026/04/01-23:48:22.819171 7fe6adbff6c0 Delete type=3 #332
|
||||
2026/04/01-23:48:22.819221 7fe6adbff6c0 Delete type=0 #334
|
||||
2026/04/01-23:48:49.913751 7fe6977fe6c0 Level-0 table #339: started
|
||||
2026/04/01-23:48:49.913804 7fe6977fe6c0 Level-0 table #339: 0 bytes OK
|
||||
2026/04/01-23:48:49.920133 7fe6977fe6c0 Delete type=0 #337
|
||||
2026/04/01-23:48:49.941206 7fe6977fe6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.107344 7f30557ee6c0 Log #325: 0 ops saved to Table #326 OK
|
||||
2026/04/01-21:50:37.107463 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations/000325.log: OK
|
||||
2026/04/01-21:50:37.109027 7f30557ee6c0 Table #298: 167 entries OK
|
||||
2026/04/01-21:50:37.118243 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations; recovered 1 files; 58927 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.050045 7fe6adbff6c0 Recovering log #329
|
||||
2026/04/01-23:46:40.101269 7fe6adbff6c0 Delete type=3 #327
|
||||
2026/04/01-23:46:40.101341 7fe6adbff6c0 Delete type=0 #329
|
||||
2026/04/01-23:48:06.512281 7fe6977fe6c0 Level-0 table #335: started
|
||||
2026/04/01-23:48:06.512319 7fe6977fe6c0 Level-0 table #335: 0 bytes OK
|
||||
2026/04/01-23:48:06.518481 7fe6977fe6c0 Delete type=0 #333
|
||||
2026/04/01-23:48:06.518631 7fe6977fe6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/mutations/MANIFEST-000336
Normal file
BIN
packs/mutations/MANIFEST-000336
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.342651 7f303ffff6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.496497 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.496541 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.502642 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.522927 7f303effd6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at '!items!tFQqcxmkS3MT6ASE' @ 75 : 1
|
||||
2026/04/01-21:52:26.522944 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.527492 7f303effd6c0 Generated table #421@0: 15 keys, 29941 bytes
|
||||
2026/04/01-21:52:26.527526 7f303effd6c0 Compacted 1@0 + 0@1 files => 29941 bytes
|
||||
2026/04/01-21:52:26.534565 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.534675 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.545065 7f303effd6c0 Manual compaction at level-0 from '!items!tFQqcxmkS3MT6ASE' @ 75 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.883202 7fe6adbff6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.893602 7fe6adbff6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.893656 7fe6adbff6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.954179 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.954203 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.960785 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.967220 7fe6977fe6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.315932 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.316044 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils/000415.log: OK
|
||||
2026/04/01-21:50:37.318377 7f303ffff6c0 Table #388: 15 entries OK
|
||||
2026/04/01-21:50:37.323861 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils; recovered 1 files; 29941 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.392616 7fe6acbfd6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.462121 7fe6acbfd6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.462174 7fe6acbfd6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.551385 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.551410 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.557197 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.570263 7fe6977fe6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/profils/MANIFEST-000426
Normal file
BIN
packs/profils/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.281179 7f30557ee6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.434016 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.434045 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.440140 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.462672 7f303effd6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at '!items!yszkersMTE4p9VzP' @ 70 : 1
|
||||
2026/04/01-21:52:26.462684 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.465883 7f303effd6c0 Generated table #421@0: 14 keys, 3496 bytes
|
||||
2026/04/01-21:52:26.465922 7f303effd6c0 Compacted 1@0 + 0@1 files => 3496 bytes
|
||||
2026/04/01-21:52:26.472735 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.472846 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.496383 7f303effd6c0 Manual compaction at level-0 from '!items!yszkersMTE4p9VzP' @ 70 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.858409 7fe6adbff6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.868080 7fe6adbff6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.868150 7fe6adbff6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.947494 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.947517 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.954038 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.967209 7fe6977fe6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.251714 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.251834 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections/000415.log: OK
|
||||
2026/04/01-21:50:37.252077 7f30557ee6c0 Table #388: 14 entries OK
|
||||
2026/04/01-21:50:37.259533 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections; recovered 1 files; 3496 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.276042 7fe6adbff6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.330456 7fe6adbff6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.330513 7fe6adbff6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.518741 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.518815 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.525794 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.544334 7fe6977fe6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/protections/MANIFEST-000426
Normal file
BIN
packs/protections/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000257
|
||||
MANIFEST-000265
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
2026/04/01-21:50:37.485134 7f303f7fe6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.509551 7f303effd6c0 Level-0 table #260: started
|
||||
2026/04/01-21:52:26.509586 7f303effd6c0 Level-0 table #260: 0 bytes OK
|
||||
2026/04/01-21:52:26.516307 7f303effd6c0 Delete type=0 #258
|
||||
2026/04/01-21:52:26.534813 7f303effd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.933544 7fe6adbff6c0 Recovering log #263
|
||||
2026/04/01-23:48:22.943164 7fe6adbff6c0 Delete type=3 #261
|
||||
2026/04/01-23:48:22.943213 7fe6adbff6c0 Delete type=0 #263
|
||||
2026/04/01-23:48:49.987688 7fe6977fe6c0 Level-0 table #268: started
|
||||
2026/04/01-23:48:49.987713 7fe6977fe6c0 Level-0 table #268: 0 bytes OK
|
||||
2026/04/01-23:48:49.994129 7fe6977fe6c0 Delete type=0 #266
|
||||
2026/04/01-23:48:49.994269 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2026/04/01-21:50:37.458686 7f303f7fe6c0 Log #255: 0 ops saved to Table #256 OK
|
||||
2026/04/01-21:50:37.458799 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes/000255.log: OK
|
||||
2026/04/01-21:50:37.463339 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes; recovered 0 files; 0 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.645467 7fe6acbfd6c0 Recovering log #259
|
||||
2026/04/01-23:46:40.699745 7fe6acbfd6c0 Delete type=3 #257
|
||||
2026/04/01-23:46:40.699811 7fe6acbfd6c0 Delete type=0 #259
|
||||
2026/04/01-23:48:06.557277 7fe6977fe6c0 Level-0 table #264: started
|
||||
2026/04/01-23:48:06.557303 7fe6977fe6c0 Level-0 table #264: 0 bytes OK
|
||||
2026/04/01-23:48:06.563213 7fe6977fe6c0 Delete type=0 #262
|
||||
2026/04/01-23:48:06.570272 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/scenes/MANIFEST-000265
Normal file
BIN
packs/scenes/MANIFEST-000265
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000412
|
||||
MANIFEST-000420
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
2026/04/01-21:50:37.455619 7f303ffff6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.502788 7f303effd6c0 Level-0 table #415: started
|
||||
2026/04/01-21:52:26.502819 7f303effd6c0 Level-0 table #415: 0 bytes OK
|
||||
2026/04/01-21:52:26.509389 7f303effd6c0 Delete type=0 #413
|
||||
2026/04/01-21:52:26.534800 7f303effd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.921132 7fe6acbfd6c0 Recovering log #418
|
||||
2026/04/01-23:48:22.931374 7fe6acbfd6c0 Delete type=3 #416
|
||||
2026/04/01-23:48:22.931423 7fe6acbfd6c0 Delete type=0 #418
|
||||
2026/04/01-23:48:49.967348 7fe6977fe6c0 Level-0 table #423: started
|
||||
2026/04/01-23:48:49.967391 7fe6977fe6c0 Level-0 table #423: 0 bytes OK
|
||||
2026/04/01-23:48:49.974582 7fe6977fe6c0 Delete type=0 #421
|
||||
2026/04/01-23:48:49.994242 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2026/04/01-21:50:37.430019 7f303ffff6c0 Log #410: 0 ops saved to Table #411 OK
|
||||
2026/04/01-21:50:37.430172 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/tables/000410.log: OK
|
||||
2026/04/01-21:50:37.436132 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/tables; recovered 0 files; 0 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.588821 7fe697fff6c0 Recovering log #414
|
||||
2026/04/01-23:46:40.643051 7fe697fff6c0 Delete type=3 #412
|
||||
2026/04/01-23:46:40.643109 7fe697fff6c0 Delete type=0 #414
|
||||
2026/04/01-23:48:06.563337 7fe6977fe6c0 Level-0 table #419: started
|
||||
2026/04/01-23:48:06.563366 7fe6977fe6c0 Level-0 table #419: 0 bytes OK
|
||||
2026/04/01-23:48:06.570149 7fe6977fe6c0 Delete type=0 #417
|
||||
2026/04/01-23:48:06.570290 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/tables/MANIFEST-000420
Normal file
BIN
packs/tables/MANIFEST-000420
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000417
|
||||
MANIFEST-000426
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.411494 7f303ffff6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.516457 7f303effd6c0 Level-0 table #420: started
|
||||
2026/04/01-21:52:26.516489 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||
2026/04/01-21:52:26.522696 7f303effd6c0 Delete type=0 #418
|
||||
2026/04/01-21:52:26.534828 7f303effd6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at '!items!yRTYaNKyXBX9wHhb' @ 95 : 1
|
||||
2026/04/01-21:52:26.534837 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.538178 7f303effd6c0 Generated table #421@0: 19 keys, 9342 bytes
|
||||
2026/04/01-21:52:26.538231 7f303effd6c0 Compacted 1@0 + 0@1 files => 9342 bytes
|
||||
2026/04/01-21:52:26.544795 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.544929 7f303effd6c0 Delete type=2 #388
|
||||
2026/04/01-21:52:26.558679 7f303effd6c0 Manual compaction at level-0 from '!items!yRTYaNKyXBX9wHhb' @ 95 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.908056 7fe6adbff6c0 Recovering log #424
|
||||
2026/04/01-23:48:22.919119 7fe6adbff6c0 Delete type=3 #422
|
||||
2026/04/01-23:48:22.919187 7fe6adbff6c0 Delete type=0 #424
|
||||
2026/04/01-23:48:49.980986 7fe6977fe6c0 Level-0 table #429: started
|
||||
2026/04/01-23:48:49.981010 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
|
||||
2026/04/01-23:48:49.987529 7fe6977fe6c0 Delete type=0 #427
|
||||
2026/04/01-23:48:49.994261 7fe6977fe6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.375284 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||
2026/04/01-21:50:37.375423 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents-cellule/000415.log: OK
|
||||
2026/04/01-21:50:37.377047 7f303ffff6c0 Table #388: 19 entries OK
|
||||
2026/04/01-21:50:37.384273 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents-cellule; recovered 1 files; 9342 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.523682 7fe6adbff6c0 Recovering log #419
|
||||
2026/04/01-23:46:40.586837 7fe6adbff6c0 Delete type=3 #417
|
||||
2026/04/01-23:46:40.586924 7fe6adbff6c0 Delete type=0 #419
|
||||
2026/04/01-23:48:06.544459 7fe6977fe6c0 Level-0 table #425: started
|
||||
2026/04/01-23:48:06.544487 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
|
||||
2026/04/01-23:48:06.551282 7fe6977fe6c0 Delete type=0 #423
|
||||
2026/04/01-23:48:06.570251 7fe6977fe6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/talents-cellule/MANIFEST-000426
Normal file
BIN
packs/talents-cellule/MANIFEST-000426
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000419
|
||||
MANIFEST-000428
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
2026/04/01-21:50:37.371495 7f3054fed6c0 Delete type=3 #1
|
||||
2026/04/01-21:52:26.440330 7f303effd6c0 Level-0 table #422: started
|
||||
2026/04/01-21:52:26.440358 7f303effd6c0 Level-0 table #422: 0 bytes OK
|
||||
2026/04/01-21:52:26.446574 7f303effd6c0 Delete type=0 #420
|
||||
2026/04/01-21:52:26.472994 7f303effd6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at '!items!zKvlDHBalR4UdwUx' @ 1158 : 1
|
||||
2026/04/01-21:52:26.473006 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-21:52:26.478719 7f303effd6c0 Generated table #423@0: 193 keys, 105016 bytes
|
||||
2026/04/01-21:52:26.478749 7f303effd6c0 Compacted 1@0 + 0@1 files => 105016 bytes
|
||||
2026/04/01-21:52:26.484688 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-21:52:26.484828 7f303effd6c0 Delete type=2 #390
|
||||
2026/04/01-21:52:26.496395 7f303effd6c0 Manual compaction at level-0 from '!items!zKvlDHBalR4UdwUx' @ 1158 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-23:48:22.895979 7fe6ad3fe6c0 Recovering log #426
|
||||
2026/04/01-23:48:22.905597 7fe6ad3fe6c0 Delete type=3 #424
|
||||
2026/04/01-23:48:22.905646 7fe6ad3fe6c0 Delete type=0 #426
|
||||
2026/04/01-23:48:49.974727 7fe6977fe6c0 Level-0 table #431: started
|
||||
2026/04/01-23:48:49.974752 7fe6977fe6c0 Level-0 table #431: 0 bytes OK
|
||||
2026/04/01-23:48:49.980833 7fe6977fe6c0 Delete type=0 #429
|
||||
2026/04/01-23:48:49.994253 7fe6977fe6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
2026/04/01-21:50:37.345682 7f3054fed6c0 Log #417: 0 ops saved to Table #418 OK
|
||||
2026/04/01-21:50:37.345801 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents/000417.log: OK
|
||||
2026/04/01-21:50:37.346017 7f3054fed6c0 Table #390: 193 entries OK
|
||||
2026/04/01-21:50:37.350944 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents; recovered 1 files; 105016 bytes. Some data may have been lost. ****
|
||||
2026/04/01-23:46:40.464245 7fe697fff6c0 Recovering log #421
|
||||
2026/04/01-23:46:40.520872 7fe697fff6c0 Delete type=3 #419
|
||||
2026/04/01-23:46:40.520959 7fe697fff6c0 Delete type=0 #421
|
||||
2026/04/01-23:48:06.538286 7fe6977fe6c0 Level-0 table #427: started
|
||||
2026/04/01-23:48:06.538313 7fe6977fe6c0 Level-0 table #427: 0 bytes OK
|
||||
2026/04/01-23:48:06.544240 7fe6977fe6c0 Delete type=0 #425
|
||||
2026/04/01-23:48:06.544370 7fe6977fe6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/talents/MANIFEST-000428
Normal file
BIN
packs/talents/MANIFEST-000428
Normal file
Binary file not shown.
@@ -27,7 +27,7 @@
|
||||
<div class="dialog-content">
|
||||
|
||||
{{!-- Attributs Section --}}
|
||||
{{#if selectableAttributes}}
|
||||
{{#if (eq attrKey "tochoose")}}
|
||||
<div class="form-group attributes-section">
|
||||
<label>Attribut principal</label>
|
||||
<select id="attrKey" name="attrKey">
|
||||
@@ -38,19 +38,19 @@
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if hasAttr2}}
|
||||
<div class="form-group">
|
||||
<label>Attribut secondaire</label>
|
||||
<select id="attrKey2" name="attrKey2">
|
||||
{{#each selectableAttributes as |attr key|}}
|
||||
<option value="{{key}}" {{#if (eq ../attrKey2 key)}}selected{{/if}}>
|
||||
{{attr.label}} ({{attr.value}})
|
||||
</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#if hasAttr2}}
|
||||
<div class="form-group">
|
||||
<label>Attribut secondaire</label>
|
||||
<select id="attrKey2" name="attrKey2">
|
||||
{{#each selectableAttributes as |attr key|}}
|
||||
<option value="{{key}}" {{#if (eq ../attrKey2 key)}}selected{{/if}}>
|
||||
{{attr.label}} ({{attr.value}})
|
||||
</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{!-- Adversité et Modificateurs --}}
|
||||
|
||||
Reference in New Issue
Block a user