diff --git a/README.md b/README.md index 9d12e05..7c0fcf3 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,6 @@ In this release, you will find: - Tools to set up a game of Machine Gods, with everything in place to add your own gear, creatures, and more - Automated rolls for all the core functionality of the game (Ability checks, Resonance Cores, Weapons, etc.) - Full support for the game's mechanics, based on Mörk Borg + + +A game by Blackoath Entertainment https://blackoathgames.com/ \ No newline at end of file diff --git a/lang/en.json b/lang/en.json index e8a9ab3..5a36662 100644 --- a/lang/en.json +++ b/lang/en.json @@ -115,6 +115,7 @@ "ArtifactSync": "Artifact Sync", "CarryingCapacity": "Carrying Capacity", "Load": "Load", + "CapacityModifier": "Carrying Capacity", "Rations": "Rations", "Kiffol": "Kiffol", "Weapons": "Weapons", @@ -223,6 +224,9 @@ "carryCapacity": { "label": "Carrying Capacity" }, + "carryCapacityModifier": { + "label": "Capacity Modifier" + }, "rations": { "label": "Rations" }, @@ -794,6 +798,9 @@ }, "featureId": { "label": "Feature Id" + }, + "capacity": { + "label": "Capacity" } } }, diff --git a/module/models/character.mjs b/module/models/character.mjs index 53c4f64..83b05b7 100644 --- a/module/models/character.mjs +++ b/module/models/character.mjs @@ -25,6 +25,7 @@ export default class MGNECharacter extends foundry.abstract.TypeDataModel { }), conditions: conditionSchema(), carryCapacity: numberField(8, 0), + carryCapacityModifier: numberField(0, 0), rations: numberField(0, 0), kiffol: numberField(0, 0), background: stringField(""), @@ -40,18 +41,25 @@ export default class MGNECharacter extends foundry.abstract.TypeDataModel { prepareDerivedData() { super.prepareDerivedData() - this.carryCapacity = (this.abilities.strength?.value ?? 0) + 8 this.resonance.remaining = Math.max(0, (this.resonance.max ?? 0) - (this.resonance.used ?? 0)) this.syncLimit = Math.max(0, this.abilities.toughness?.value ?? 0) this.syncRemaining = Math.max(0, this.syncLimit - (this.artifactSync.used ?? 0)) this.armorFormula = this.parent?.getArmorRollFormula?.() ?? "0" + // Compute carry capacity: base STR + 8 + feature capacities + direct modifier + const featureCapacity = (this.parent?.items ?? []) + .filter(i => i.type === "feature") + .reduce((sum, f) => sum + (f.system?.capacity ?? 0), 0) + this.carryCapacity = (this.abilities.strength?.value ?? 0) + 8 + featureCapacity + (this.carryCapacityModifier ?? 0) + // Compute current load per RAW: + // Only items with a weight field count — features and creature-traits are excluded // trivial = 0, light = 10 per slot, normal = 1, heavy = fills remaining capacity (max 1) let normalLoad = 0 let lightCount = 0 let heavyCount = 0 for (const item of (this.parent?.items ?? [])) { + if (!("weight" in (item.system ?? {}))) continue // no weight field (features, traits) if (item.system?.carried === false) continue // not being carried const w = item.system?.weight ?? "normal" if (w === "trivial") continue diff --git a/module/models/feature.mjs b/module/models/feature.mjs index 20fb58b..94b2020 100644 --- a/module/models/feature.mjs +++ b/module/models/feature.mjs @@ -1,5 +1,5 @@ import { SYSTEM } from "../config/system.mjs" -import { htmlField } from "./shared.mjs" +import { htmlField, numberField } from "./shared.mjs" export default class MGNEFeature extends foundry.abstract.TypeDataModel { static defineSchema() { @@ -10,6 +10,7 @@ export default class MGNEFeature extends foundry.abstract.TypeDataModel { blank: true, initial: "", }), + capacity: numberField(0, 0), description: htmlField(""), } } diff --git a/packs-system/armor/000075.log b/packs-system/armor/000080.log similarity index 100% rename from packs-system/armor/000075.log rename to packs-system/armor/000080.log diff --git a/packs-system/armor/000077.ldb b/packs-system/armor/000082.ldb similarity index 74% rename from packs-system/armor/000077.ldb rename to packs-system/armor/000082.ldb index fe336af..676c07d 100644 Binary files a/packs-system/armor/000077.ldb and b/packs-system/armor/000082.ldb differ diff --git a/packs-system/armor/CURRENT b/packs-system/armor/CURRENT index 60f8f3c..741d918 100644 --- a/packs-system/armor/CURRENT +++ b/packs-system/armor/CURRENT @@ -1 +1 @@ -MANIFEST-000073 +MANIFEST-000078 diff --git a/packs-system/armor/LOG b/packs-system/armor/LOG index c52bc09..c1e8ee7 100644 --- a/packs-system/armor/LOG +++ b/packs-system/armor/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.530779 7f2215bfe6c0 Recovering log #70 -2026/06/02-19:43:31.541230 7f2215bfe6c0 Delete type=3 #68 -2026/06/02-19:43:31.541267 7f2215bfe6c0 Delete type=0 #70 -2026/06/02-19:44:40.424603 7f1ff7fff6c0 Level-0 table #76: started -2026/06/02-19:44:40.428039 7f1ff7fff6c0 Level-0 table #76: 1354 bytes OK -2026/06/02-19:44:40.435632 7f1ff7fff6c0 Delete type=0 #74 -2026/06/02-19:44:40.446442 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.446598 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 122 : 1 -2026/06/02-19:44:40.446608 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.449973 7f1ff7fff6c0 Generated table #77@1: 1 keys, 685 bytes -2026/06/02-19:44:40.450003 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes -2026/06/02-19:44:40.456735 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:44:40.457031 7f1ff7fff6c0 Delete type=2 #72 -2026/06/02-19:44:40.457165 7f1ff7fff6c0 Delete type=2 #76 -2026/06/02-19:44:40.489581 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 122 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.303282 7f480abff6c0 Recovering log #75 +2026/06/04-19:59:31.312491 7f480abff6c0 Delete type=3 #73 +2026/06/04-19:59:31.312518 7f480abff6c0 Delete type=0 #75 +2026/06/04-20:00:50.106068 7f4808bfb6c0 Level-0 table #81: started +2026/06/04-20:00:50.109748 7f4808bfb6c0 Level-0 table #81: 1354 bytes OK +2026/06/04-20:00:50.116095 7f4808bfb6c0 Delete type=0 #79 +2026/06/04-20:00:50.133136 7f4808bfb6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.133294 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 130 : 1 +2026/06/04-20:00:50.133299 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.136397 7f4808bfb6c0 Generated table #82@1: 1 keys, 685 bytes +2026/06/04-20:00:50.136409 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 685 bytes +2026/06/04-20:00:50.142598 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/04-20:00:50.142662 7f4808bfb6c0 Delete type=2 #77 +2026/06/04-20:00:50.142750 7f4808bfb6c0 Delete type=2 #81 +2026/06/04-20:00:50.170090 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 130 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/armor/LOG.old b/packs-system/armor/LOG.old index eb58e1f..c52bc09 100644 --- a/packs-system/armor/LOG.old +++ b/packs-system/armor/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.359950 7f22153fd6c0 Recovering log #65 -2026/06/02-19:38:41.370323 7f22153fd6c0 Delete type=3 #63 -2026/06/02-19:38:41.370382 7f22153fd6c0 Delete type=0 #65 -2026/06/02-19:38:52.219787 7f1ff7fff6c0 Level-0 table #71: started -2026/06/02-19:38:52.223074 7f1ff7fff6c0 Level-0 table #71: 1354 bytes OK -2026/06/02-19:38:52.230583 7f1ff7fff6c0 Delete type=0 #69 -2026/06/02-19:38:52.237087 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.249096 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 114 : 1 -2026/06/02-19:38:52.249106 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.252924 7f1ff7fff6c0 Generated table #72@1: 1 keys, 685 bytes -2026/06/02-19:38:52.252947 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes -2026/06/02-19:38:52.259084 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:38:52.259162 7f1ff7fff6c0 Delete type=2 #67 -2026/06/02-19:38:52.259309 7f1ff7fff6c0 Delete type=2 #71 -2026/06/02-19:38:52.273606 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 114 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.530779 7f2215bfe6c0 Recovering log #70 +2026/06/02-19:43:31.541230 7f2215bfe6c0 Delete type=3 #68 +2026/06/02-19:43:31.541267 7f2215bfe6c0 Delete type=0 #70 +2026/06/02-19:44:40.424603 7f1ff7fff6c0 Level-0 table #76: started +2026/06/02-19:44:40.428039 7f1ff7fff6c0 Level-0 table #76: 1354 bytes OK +2026/06/02-19:44:40.435632 7f1ff7fff6c0 Delete type=0 #74 +2026/06/02-19:44:40.446442 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.446598 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 122 : 1 +2026/06/02-19:44:40.446608 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.449973 7f1ff7fff6c0 Generated table #77@1: 1 keys, 685 bytes +2026/06/02-19:44:40.450003 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes +2026/06/02-19:44:40.456735 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/02-19:44:40.457031 7f1ff7fff6c0 Delete type=2 #72 +2026/06/02-19:44:40.457165 7f1ff7fff6c0 Delete type=2 #76 +2026/06/02-19:44:40.489581 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 122 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/armor/MANIFEST-000073 b/packs-system/armor/MANIFEST-000073 deleted file mode 100644 index 6a72cac..0000000 Binary files a/packs-system/armor/MANIFEST-000073 and /dev/null differ diff --git a/packs-system/armor/MANIFEST-000078 b/packs-system/armor/MANIFEST-000078 new file mode 100644 index 0000000..0ea1c3c Binary files /dev/null and b/packs-system/armor/MANIFEST-000078 differ diff --git a/packs-system/companions/000075.log b/packs-system/companions/000080.log similarity index 100% rename from packs-system/companions/000075.log rename to packs-system/companions/000080.log diff --git a/packs-system/companions/000077.ldb b/packs-system/companions/000082.ldb similarity index 92% rename from packs-system/companions/000077.ldb rename to packs-system/companions/000082.ldb index 147eff7..7ede5d8 100644 Binary files a/packs-system/companions/000077.ldb and b/packs-system/companions/000082.ldb differ diff --git a/packs-system/companions/CURRENT b/packs-system/companions/CURRENT index 60f8f3c..741d918 100644 --- a/packs-system/companions/CURRENT +++ b/packs-system/companions/CURRENT @@ -1 +1 @@ -MANIFEST-000073 +MANIFEST-000078 diff --git a/packs-system/companions/LOG b/packs-system/companions/LOG index 1e17b10..14cc42d 100644 --- a/packs-system/companions/LOG +++ b/packs-system/companions/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.502187 7f22153fd6c0 Recovering log #70 -2026/06/02-19:43:31.512581 7f22153fd6c0 Delete type=3 #68 -2026/06/02-19:43:31.512620 7f22153fd6c0 Delete type=0 #70 -2026/06/02-19:44:40.413927 7f1ff7fff6c0 Level-0 table #76: started -2026/06/02-19:44:40.417618 7f1ff7fff6c0 Level-0 table #76: 4899 bytes OK -2026/06/02-19:44:40.424469 7f1ff7fff6c0 Delete type=0 #74 -2026/06/02-19:44:40.446430 7f1ff7fff6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.468275 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 62 : 1 -2026/06/02-19:44:40.468288 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.471670 7f1ff7fff6c0 Generated table #77@1: 1 keys, 1984 bytes -2026/06/02-19:44:40.471701 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes -2026/06/02-19:44:40.477948 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:44:40.478072 7f1ff7fff6c0 Delete type=2 #72 -2026/06/02-19:44:40.478253 7f1ff7fff6c0 Delete type=2 #76 -2026/06/02-19:44:40.489611 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!null' @ 62 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.279596 7f48093fc6c0 Recovering log #75 +2026/06/04-19:59:31.289218 7f48093fc6c0 Delete type=3 #73 +2026/06/04-19:59:31.289235 7f48093fc6c0 Delete type=0 #75 +2026/06/04-20:00:50.045800 7f4808bfb6c0 Level-0 table #81: started +2026/06/04-20:00:50.049176 7f4808bfb6c0 Level-0 table #81: 4899 bytes OK +2026/06/04-20:00:50.055679 7f4808bfb6c0 Delete type=0 #79 +2026/06/04-20:00:50.066108 7f4808bfb6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.076443 7f4808bfb6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 66 : 1 +2026/06/04-20:00:50.076453 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.079696 7f4808bfb6c0 Generated table #82@1: 1 keys, 1984 bytes +2026/06/04-20:00:50.079711 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 1984 bytes +2026/06/04-20:00:50.085900 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/04-20:00:50.085969 7f4808bfb6c0 Delete type=2 #77 +2026/06/04-20:00:50.086069 7f4808bfb6c0 Delete type=2 #81 +2026/06/04-20:00:50.096347 7f4808bfb6c0 Manual compaction at level-1 from '!actors!null' @ 66 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/companions/LOG.old b/packs-system/companions/LOG.old index 69ec4b3..1e17b10 100644 --- a/packs-system/companions/LOG.old +++ b/packs-system/companions/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.329254 7f2214bfc6c0 Recovering log #65 -2026/06/02-19:38:41.339373 7f2214bfc6c0 Delete type=3 #63 -2026/06/02-19:38:41.339444 7f2214bfc6c0 Delete type=0 #65 -2026/06/02-19:38:52.118810 7f1ff7fff6c0 Level-0 table #71: started -2026/06/02-19:38:52.123075 7f1ff7fff6c0 Level-0 table #71: 4899 bytes OK -2026/06/02-19:38:52.130714 7f1ff7fff6c0 Delete type=0 #69 -2026/06/02-19:38:52.153910 7f1ff7fff6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.189284 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 58 : 1 -2026/06/02-19:38:52.189297 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.193815 7f1ff7fff6c0 Generated table #72@1: 1 keys, 1984 bytes -2026/06/02-19:38:52.193845 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes -2026/06/02-19:38:52.200660 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:38:52.200784 7f1ff7fff6c0 Delete type=2 #67 -2026/06/02-19:38:52.200926 7f1ff7fff6c0 Delete type=2 #71 -2026/06/02-19:38:52.201085 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!null' @ 58 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.502187 7f22153fd6c0 Recovering log #70 +2026/06/02-19:43:31.512581 7f22153fd6c0 Delete type=3 #68 +2026/06/02-19:43:31.512620 7f22153fd6c0 Delete type=0 #70 +2026/06/02-19:44:40.413927 7f1ff7fff6c0 Level-0 table #76: started +2026/06/02-19:44:40.417618 7f1ff7fff6c0 Level-0 table #76: 4899 bytes OK +2026/06/02-19:44:40.424469 7f1ff7fff6c0 Delete type=0 #74 +2026/06/02-19:44:40.446430 7f1ff7fff6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.468275 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 62 : 1 +2026/06/02-19:44:40.468288 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.471670 7f1ff7fff6c0 Generated table #77@1: 1 keys, 1984 bytes +2026/06/02-19:44:40.471701 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes +2026/06/02-19:44:40.477948 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/02-19:44:40.478072 7f1ff7fff6c0 Delete type=2 #72 +2026/06/02-19:44:40.478253 7f1ff7fff6c0 Delete type=2 #76 +2026/06/02-19:44:40.489611 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!null' @ 62 : 1 .. '!actors!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/companions/MANIFEST-000073 b/packs-system/companions/MANIFEST-000073 deleted file mode 100644 index 773ff21..0000000 Binary files a/packs-system/companions/MANIFEST-000073 and /dev/null differ diff --git a/packs-system/companions/MANIFEST-000078 b/packs-system/companions/MANIFEST-000078 new file mode 100644 index 0000000..99efb2b Binary files /dev/null and b/packs-system/companions/MANIFEST-000078 differ diff --git a/packs-system/features/000075.log b/packs-system/features/000080.log similarity index 100% rename from packs-system/features/000075.log rename to packs-system/features/000080.log diff --git a/packs-system/features/000077.ldb b/packs-system/features/000082.ldb similarity index 79% rename from packs-system/features/000077.ldb rename to packs-system/features/000082.ldb index 0afd3c8..1e359ac 100644 Binary files a/packs-system/features/000077.ldb and b/packs-system/features/000082.ldb differ diff --git a/packs-system/features/CURRENT b/packs-system/features/CURRENT index 60f8f3c..741d918 100644 --- a/packs-system/features/CURRENT +++ b/packs-system/features/CURRENT @@ -1 +1 @@ -MANIFEST-000073 +MANIFEST-000078 diff --git a/packs-system/features/LOG b/packs-system/features/LOG index 65a4fe8..54edeaf 100644 --- a/packs-system/features/LOG +++ b/packs-system/features/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.488540 7f2215bfe6c0 Recovering log #70 -2026/06/02-19:43:31.498827 7f2215bfe6c0 Delete type=3 #68 -2026/06/02-19:43:31.498873 7f2215bfe6c0 Delete type=0 #70 -2026/06/02-19:44:40.435761 7f1ff7fff6c0 Level-0 table #76: started -2026/06/02-19:44:40.439546 7f1ff7fff6c0 Level-0 table #76: 10405 bytes OK -2026/06/02-19:44:40.446253 7f1ff7fff6c0 Delete type=0 #74 -2026/06/02-19:44:40.446564 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.478358 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 542 : 1 -2026/06/02-19:44:40.478373 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.482365 7f1ff7fff6c0 Generated table #77@1: 1 keys, 728 bytes -2026/06/02-19:44:40.482397 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes -2026/06/02-19:44:40.489232 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:44:40.489356 7f1ff7fff6c0 Delete type=2 #72 -2026/06/02-19:44:40.489491 7f1ff7fff6c0 Delete type=2 #76 -2026/06/02-19:44:40.489825 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 542 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.268808 7f480a3fe6c0 Recovering log #75 +2026/06/04-19:59:31.278025 7f480a3fe6c0 Delete type=3 #73 +2026/06/04-19:59:31.278064 7f480a3fe6c0 Delete type=0 #75 +2026/06/04-20:00:50.055792 7f4808bfb6c0 Level-0 table #81: started +2026/06/04-20:00:50.059981 7f4808bfb6c0 Level-0 table #81: 10404 bytes OK +2026/06/04-20:00:50.065983 7f4808bfb6c0 Delete type=0 #79 +2026/06/04-20:00:50.096324 7f4808bfb6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.096480 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 578 : 1 +2026/06/04-20:00:50.096485 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.099620 7f4808bfb6c0 Generated table #82@1: 1 keys, 728 bytes +2026/06/04-20:00:50.099636 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 728 bytes +2026/06/04-20:00:50.105851 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/04-20:00:50.105910 7f4808bfb6c0 Delete type=2 #77 +2026/06/04-20:00:50.105999 7f4808bfb6c0 Delete type=2 #81 +2026/06/04-20:00:50.133122 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 578 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/features/LOG.old b/packs-system/features/LOG.old index ec5dad0..65a4fe8 100644 --- a/packs-system/features/LOG.old +++ b/packs-system/features/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.313392 7f22163ff6c0 Recovering log #65 -2026/06/02-19:38:41.325409 7f22163ff6c0 Delete type=3 #63 -2026/06/02-19:38:41.325473 7f22163ff6c0 Delete type=0 #65 -2026/06/02-19:38:52.130850 7f1ff7fff6c0 Level-0 table #71: started -2026/06/02-19:38:52.134936 7f1ff7fff6c0 Level-0 table #71: 10410 bytes OK -2026/06/02-19:38:52.141805 7f1ff7fff6c0 Delete type=0 #69 -2026/06/02-19:38:52.153922 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.177911 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 506 : 1 -2026/06/02-19:38:52.177922 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.181665 7f1ff7fff6c0 Generated table #72@1: 1 keys, 728 bytes -2026/06/02-19:38:52.181698 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes -2026/06/02-19:38:52.188934 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:38:52.189052 7f1ff7fff6c0 Delete type=2 #67 -2026/06/02-19:38:52.189189 7f1ff7fff6c0 Delete type=2 #71 -2026/06/02-19:38:52.201050 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 506 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.488540 7f2215bfe6c0 Recovering log #70 +2026/06/02-19:43:31.498827 7f2215bfe6c0 Delete type=3 #68 +2026/06/02-19:43:31.498873 7f2215bfe6c0 Delete type=0 #70 +2026/06/02-19:44:40.435761 7f1ff7fff6c0 Level-0 table #76: started +2026/06/02-19:44:40.439546 7f1ff7fff6c0 Level-0 table #76: 10405 bytes OK +2026/06/02-19:44:40.446253 7f1ff7fff6c0 Delete type=0 #74 +2026/06/02-19:44:40.446564 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.478358 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 542 : 1 +2026/06/02-19:44:40.478373 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.482365 7f1ff7fff6c0 Generated table #77@1: 1 keys, 728 bytes +2026/06/02-19:44:40.482397 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes +2026/06/02-19:44:40.489232 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/02-19:44:40.489356 7f1ff7fff6c0 Delete type=2 #72 +2026/06/02-19:44:40.489491 7f1ff7fff6c0 Delete type=2 #76 +2026/06/02-19:44:40.489825 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 542 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/features/MANIFEST-000073 b/packs-system/features/MANIFEST-000073 deleted file mode 100644 index 0fa22e5..0000000 Binary files a/packs-system/features/MANIFEST-000073 and /dev/null differ diff --git a/packs-system/features/MANIFEST-000078 b/packs-system/features/MANIFEST-000078 new file mode 100644 index 0000000..3f450a4 Binary files /dev/null and b/packs-system/features/MANIFEST-000078 differ diff --git a/packs-system/names/000079.ldb b/packs-system/names/000079.ldb deleted file mode 100644 index 6772839..0000000 Binary files a/packs-system/names/000079.ldb and /dev/null differ diff --git a/packs-system/names/000077.log b/packs-system/names/000082.log similarity index 100% rename from packs-system/names/000077.log rename to packs-system/names/000082.log diff --git a/packs-system/names/000084.ldb b/packs-system/names/000084.ldb new file mode 100644 index 0000000..38e4e07 Binary files /dev/null and b/packs-system/names/000084.ldb differ diff --git a/packs-system/names/CURRENT b/packs-system/names/CURRENT index d2ea14c..e73ded3 100644 --- a/packs-system/names/CURRENT +++ b/packs-system/names/CURRENT @@ -1 +1 @@ -MANIFEST-000075 +MANIFEST-000080 diff --git a/packs-system/names/LOG b/packs-system/names/LOG index 61ae15c..17e75c1 100644 --- a/packs-system/names/LOG +++ b/packs-system/names/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.544375 7f22153fd6c0 Recovering log #72 -2026/06/02-19:43:31.554816 7f22153fd6c0 Delete type=3 #70 -2026/06/02-19:43:31.554878 7f22153fd6c0 Delete type=0 #72 -2026/06/02-19:44:40.500606 7f1ff7fff6c0 Level-0 table #78: started -2026/06/02-19:44:40.505562 7f1ff7fff6c0 Level-0 table #78: 36499 bytes OK -2026/06/02-19:44:40.512075 7f1ff7fff6c0 Delete type=0 #76 -2026/06/02-19:44:40.526628 7f1ff7fff6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.526936 7f1ff7fff6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1 -2026/06/02-19:44:40.526943 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.531590 7f1ff7fff6c0 Generated table #79@1: 436 keys, 40570 bytes -2026/06/02-19:44:40.531624 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40570 bytes -2026/06/02-19:44:40.538399 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2026/06/02-19:44:40.538517 7f1ff7fff6c0 Delete type=2 #74 -2026/06/02-19:44:40.538677 7f1ff7fff6c0 Delete type=2 #78 -2026/06/02-19:44:40.564184 7f1ff7fff6c0 Manual compaction at level-1 from '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.314227 7f480a3fe6c0 Recovering log #77 +2026/06/04-19:59:31.324228 7f480a3fe6c0 Delete type=3 #75 +2026/06/04-19:59:31.324261 7f480a3fe6c0 Delete type=0 #77 +2026/06/04-20:00:50.116271 7f4808bfb6c0 Level-0 table #83: started +2026/06/04-20:00:50.120528 7f4808bfb6c0 Level-0 table #83: 36363 bytes OK +2026/06/04-20:00:50.126851 7f4808bfb6c0 Delete type=0 #81 +2026/06/04-20:00:50.133146 7f4808bfb6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.142815 7f4808bfb6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at '!tables.results!zwUjCB2xwyG4KtF8' @ 6608 : 1 +2026/06/04-20:00:50.142822 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.147353 7f4808bfb6c0 Generated table #84@1: 436 keys, 40657 bytes +2026/06/04-20:00:50.147367 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 40657 bytes +2026/06/04-20:00:50.153433 7f4808bfb6c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2026/06/04-20:00:50.153502 7f4808bfb6c0 Delete type=2 #79 +2026/06/04-20:00:50.153631 7f4808bfb6c0 Delete type=2 #83 +2026/06/04-20:00:50.170103 7f4808bfb6c0 Manual compaction at level-1 from '!tables.results!zwUjCB2xwyG4KtF8' @ 6608 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at (end) diff --git a/packs-system/names/LOG.old b/packs-system/names/LOG.old index 7f4431e..61ae15c 100644 --- a/packs-system/names/LOG.old +++ b/packs-system/names/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.373993 7f2214bfc6c0 Recovering log #67 -2026/06/02-19:38:41.384841 7f2214bfc6c0 Delete type=3 #65 -2026/06/02-19:38:41.384906 7f2214bfc6c0 Delete type=0 #67 -2026/06/02-19:38:52.207992 7f1ff7fff6c0 Level-0 table #73: started -2026/06/02-19:38:52.212811 7f1ff7fff6c0 Level-0 table #73: 36337 bytes OK -2026/06/02-19:38:52.219611 7f1ff7fff6c0 Delete type=0 #71 -2026/06/02-19:38:52.237075 7f1ff7fff6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.237220 7f1ff7fff6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at '!tables.results!zujdTVEcOrMemrQK' @ 5671 : 0 -2026/06/02-19:38:52.237225 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.241483 7f1ff7fff6c0 Generated table #74@1: 436 keys, 40329 bytes -2026/06/02-19:38:52.241507 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40329 bytes -2026/06/02-19:38:52.248771 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2026/06/02-19:38:52.248884 7f1ff7fff6c0 Delete type=2 #69 -2026/06/02-19:38:52.249011 7f1ff7fff6c0 Delete type=2 #73 -2026/06/02-19:38:52.273586 7f1ff7fff6c0 Manual compaction at level-1 from '!tables.results!zujdTVEcOrMemrQK' @ 5671 : 0 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.544375 7f22153fd6c0 Recovering log #72 +2026/06/02-19:43:31.554816 7f22153fd6c0 Delete type=3 #70 +2026/06/02-19:43:31.554878 7f22153fd6c0 Delete type=0 #72 +2026/06/02-19:44:40.500606 7f1ff7fff6c0 Level-0 table #78: started +2026/06/02-19:44:40.505562 7f1ff7fff6c0 Level-0 table #78: 36499 bytes OK +2026/06/02-19:44:40.512075 7f1ff7fff6c0 Delete type=0 #76 +2026/06/02-19:44:40.526628 7f1ff7fff6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.526936 7f1ff7fff6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1 +2026/06/02-19:44:40.526943 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.531590 7f1ff7fff6c0 Generated table #79@1: 436 keys, 40570 bytes +2026/06/02-19:44:40.531624 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40570 bytes +2026/06/02-19:44:40.538399 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2026/06/02-19:44:40.538517 7f1ff7fff6c0 Delete type=2 #74 +2026/06/02-19:44:40.538677 7f1ff7fff6c0 Delete type=2 #78 +2026/06/02-19:44:40.564184 7f1ff7fff6c0 Manual compaction at level-1 from '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end) diff --git a/packs-system/names/MANIFEST-000075 b/packs-system/names/MANIFEST-000075 deleted file mode 100644 index 8107af9..0000000 Binary files a/packs-system/names/MANIFEST-000075 and /dev/null differ diff --git a/packs-system/names/MANIFEST-000080 b/packs-system/names/MANIFEST-000080 new file mode 100644 index 0000000..98c54aa Binary files /dev/null and b/packs-system/names/MANIFEST-000080 differ diff --git a/packs-system/resonations/000075.log b/packs-system/resonations/000080.log similarity index 100% rename from packs-system/resonations/000075.log rename to packs-system/resonations/000080.log diff --git a/packs-system/resonations/000077.ldb b/packs-system/resonations/000082.ldb similarity index 84% rename from packs-system/resonations/000077.ldb rename to packs-system/resonations/000082.ldb index dfef551..3aa59e1 100644 Binary files a/packs-system/resonations/000077.ldb and b/packs-system/resonations/000082.ldb differ diff --git a/packs-system/resonations/CURRENT b/packs-system/resonations/CURRENT index 60f8f3c..741d918 100644 --- a/packs-system/resonations/CURRENT +++ b/packs-system/resonations/CURRENT @@ -1 +1 @@ -MANIFEST-000073 +MANIFEST-000078 diff --git a/packs-system/resonations/LOG b/packs-system/resonations/LOG index f0b5440..de692db 100644 --- a/packs-system/resonations/LOG +++ b/packs-system/resonations/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.473126 7f22163ff6c0 Recovering log #70 -2026/06/02-19:43:31.484666 7f22163ff6c0 Delete type=3 #68 -2026/06/02-19:43:31.484705 7f22163ff6c0 Delete type=0 #70 -2026/06/02-19:44:40.402774 7f1ff7fff6c0 Level-0 table #76: started -2026/06/02-19:44:40.407015 7f1ff7fff6c0 Level-0 table #76: 7108 bytes OK -2026/06/02-19:44:40.413760 7f1ff7fff6c0 Delete type=0 #74 -2026/06/02-19:44:40.446409 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.457226 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 302 : 1 -2026/06/02-19:44:40.457235 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.461196 7f1ff7fff6c0 Generated table #77@1: 1 keys, 911 bytes -2026/06/02-19:44:40.461226 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes -2026/06/02-19:44:40.467956 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:44:40.468078 7f1ff7fff6c0 Delete type=2 #72 -2026/06/02-19:44:40.468198 7f1ff7fff6c0 Delete type=2 #76 -2026/06/02-19:44:40.489599 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 302 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.255965 7f48093fc6c0 Recovering log #75 +2026/06/04-19:59:31.266393 7f48093fc6c0 Delete type=3 #73 +2026/06/04-19:59:31.266452 7f48093fc6c0 Delete type=0 #75 +2026/06/04-20:00:50.024423 7f4808bfb6c0 Level-0 table #81: started +2026/06/04-20:00:50.028206 7f4808bfb6c0 Level-0 table #81: 7108 bytes OK +2026/06/04-20:00:50.034820 7f4808bfb6c0 Delete type=0 #79 +2026/06/04-20:00:50.066089 7f4808bfb6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.066131 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 322 : 1 +2026/06/04-20:00:50.066135 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.069225 7f4808bfb6c0 Generated table #82@1: 1 keys, 911 bytes +2026/06/04-20:00:50.069242 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 911 bytes +2026/06/04-20:00:50.075815 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/04-20:00:50.076200 7f4808bfb6c0 Delete type=2 #77 +2026/06/04-20:00:50.076357 7f4808bfb6c0 Delete type=2 #81 +2026/06/04-20:00:50.096339 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 322 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/resonations/LOG.old b/packs-system/resonations/LOG.old index 590cb9b..f0b5440 100644 --- a/packs-system/resonations/LOG.old +++ b/packs-system/resonations/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.298101 7f2214bfc6c0 Recovering log #65 -2026/06/02-19:38:41.309083 7f2214bfc6c0 Delete type=3 #63 -2026/06/02-19:38:41.309147 7f2214bfc6c0 Delete type=0 #65 -2026/06/02-19:38:52.107907 7f1ff7fff6c0 Level-0 table #71: started -2026/06/02-19:38:52.112019 7f1ff7fff6c0 Level-0 table #71: 7108 bytes OK -2026/06/02-19:38:52.118652 7f1ff7fff6c0 Delete type=0 #69 -2026/06/02-19:38:52.153887 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.153996 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 282 : 1 -2026/06/02-19:38:52.154006 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.157685 7f1ff7fff6c0 Generated table #72@1: 1 keys, 911 bytes -2026/06/02-19:38:52.157721 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes -2026/06/02-19:38:52.164744 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:38:52.165117 7f1ff7fff6c0 Delete type=2 #67 -2026/06/02-19:38:52.165250 7f1ff7fff6c0 Delete type=2 #71 -2026/06/02-19:38:52.201019 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 282 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.473126 7f22163ff6c0 Recovering log #70 +2026/06/02-19:43:31.484666 7f22163ff6c0 Delete type=3 #68 +2026/06/02-19:43:31.484705 7f22163ff6c0 Delete type=0 #70 +2026/06/02-19:44:40.402774 7f1ff7fff6c0 Level-0 table #76: started +2026/06/02-19:44:40.407015 7f1ff7fff6c0 Level-0 table #76: 7108 bytes OK +2026/06/02-19:44:40.413760 7f1ff7fff6c0 Delete type=0 #74 +2026/06/02-19:44:40.446409 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.457226 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 302 : 1 +2026/06/02-19:44:40.457235 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.461196 7f1ff7fff6c0 Generated table #77@1: 1 keys, 911 bytes +2026/06/02-19:44:40.461226 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes +2026/06/02-19:44:40.467956 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/02-19:44:40.468078 7f1ff7fff6c0 Delete type=2 #72 +2026/06/02-19:44:40.468198 7f1ff7fff6c0 Delete type=2 #76 +2026/06/02-19:44:40.489599 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 302 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/resonations/MANIFEST-000073 b/packs-system/resonations/MANIFEST-000073 deleted file mode 100644 index 4ab2805..0000000 Binary files a/packs-system/resonations/MANIFEST-000073 and /dev/null differ diff --git a/packs-system/resonations/MANIFEST-000078 b/packs-system/resonations/MANIFEST-000078 new file mode 100644 index 0000000..c88a040 Binary files /dev/null and b/packs-system/resonations/MANIFEST-000078 differ diff --git a/packs-system/scenes/000012.log b/packs-system/scenes/000016.log similarity index 100% rename from packs-system/scenes/000012.log rename to packs-system/scenes/000016.log diff --git a/packs-system/scenes/CURRENT b/packs-system/scenes/CURRENT index 3051f81..23b73d9 100644 --- a/packs-system/scenes/CURRENT +++ b/packs-system/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000010 +MANIFEST-000014 diff --git a/packs-system/scenes/LOG b/packs-system/scenes/LOG index 46ef740..b36d0e5 100644 --- a/packs-system/scenes/LOG +++ b/packs-system/scenes/LOG @@ -1,8 +1,8 @@ -2026/06/02-19:43:31.609465 7f22153fd6c0 Recovering log #8 -2026/06/02-19:43:31.620427 7f22153fd6c0 Delete type=3 #6 -2026/06/02-19:43:31.620485 7f22153fd6c0 Delete type=0 #8 -2026/06/02-19:44:40.512258 7f1ff7fff6c0 Level-0 table #13: started -2026/06/02-19:44:40.512300 7f1ff7fff6c0 Level-0 table #13: 0 bytes OK -2026/06/02-19:44:40.519094 7f1ff7fff6c0 Delete type=0 #11 -2026/06/02-19:44:40.526642 7f1ff7fff6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.526909 7f1ff7fff6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.337020 7f480a3fe6c0 Recovering log #12 +2026/06/04-19:59:31.346261 7f480a3fe6c0 Delete type=3 #10 +2026/06/04-19:59:31.346300 7f480a3fe6c0 Delete type=0 #12 +2026/06/04-20:00:50.126988 7f4808bfb6c0 Level-0 table #17: started +2026/06/04-20:00:50.127020 7f4808bfb6c0 Level-0 table #17: 0 bytes OK +2026/06/04-20:00:50.133026 7f4808bfb6c0 Delete type=0 #15 +2026/06/04-20:00:50.133229 7f4808bfb6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.133257 7f4808bfb6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) diff --git a/packs-system/scenes/LOG.old b/packs-system/scenes/LOG.old index 6fbb790..46ef740 100644 --- a/packs-system/scenes/LOG.old +++ b/packs-system/scenes/LOG.old @@ -1,8 +1,8 @@ -2026/06/02-19:38:41.450683 7f2214bfc6c0 Recovering log #4 -2026/06/02-19:38:41.462030 7f2214bfc6c0 Delete type=3 #2 -2026/06/02-19:38:41.462080 7f2214bfc6c0 Delete type=0 #4 -2026/06/02-19:38:52.230748 7f1ff7fff6c0 Level-0 table #9: started -2026/06/02-19:38:52.230780 7f1ff7fff6c0 Level-0 table #9: 0 bytes OK -2026/06/02-19:38:52.236951 7f1ff7fff6c0 Delete type=0 #7 -2026/06/02-19:38:52.237131 7f1ff7fff6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.237146 7f1ff7fff6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.609465 7f22153fd6c0 Recovering log #8 +2026/06/02-19:43:31.620427 7f22153fd6c0 Delete type=3 #6 +2026/06/02-19:43:31.620485 7f22153fd6c0 Delete type=0 #8 +2026/06/02-19:44:40.512258 7f1ff7fff6c0 Level-0 table #13: started +2026/06/02-19:44:40.512300 7f1ff7fff6c0 Level-0 table #13: 0 bytes OK +2026/06/02-19:44:40.519094 7f1ff7fff6c0 Delete type=0 #11 +2026/06/02-19:44:40.526642 7f1ff7fff6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.526909 7f1ff7fff6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end) diff --git a/packs-system/scenes/MANIFEST-000010 b/packs-system/scenes/MANIFEST-000014 similarity index 80% rename from packs-system/scenes/MANIFEST-000010 rename to packs-system/scenes/MANIFEST-000014 index 40d2c43..00b760c 100644 Binary files a/packs-system/scenes/MANIFEST-000010 and b/packs-system/scenes/MANIFEST-000014 differ diff --git a/packs-system/weapons/000075.log b/packs-system/weapons/000080.log similarity index 100% rename from packs-system/weapons/000075.log rename to packs-system/weapons/000080.log diff --git a/packs-system/weapons/000077.ldb b/packs-system/weapons/000082.ldb similarity index 71% rename from packs-system/weapons/000077.ldb rename to packs-system/weapons/000082.ldb index ebc8c7d..ba3c285 100644 Binary files a/packs-system/weapons/000077.ldb and b/packs-system/weapons/000082.ldb differ diff --git a/packs-system/weapons/CURRENT b/packs-system/weapons/CURRENT index 60f8f3c..741d918 100644 --- a/packs-system/weapons/CURRENT +++ b/packs-system/weapons/CURRENT @@ -1 +1 @@ -MANIFEST-000073 +MANIFEST-000078 diff --git a/packs-system/weapons/LOG b/packs-system/weapons/LOG index b3aa775..a623252 100644 --- a/packs-system/weapons/LOG +++ b/packs-system/weapons/LOG @@ -1,15 +1,15 @@ -2026/06/02-19:43:31.516359 7f22153fd6c0 Recovering log #70 -2026/06/02-19:43:31.527478 7f22153fd6c0 Delete type=3 #68 -2026/06/02-19:43:31.527540 7f22153fd6c0 Delete type=0 #70 -2026/06/02-19:44:40.489853 7f1ff7fff6c0 Level-0 table #76: started -2026/06/02-19:44:40.493463 7f1ff7fff6c0 Level-0 table #76: 1965 bytes OK -2026/06/02-19:44:40.500444 7f1ff7fff6c0 Delete type=0 #74 -2026/06/02-19:44:40.526600 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:44:40.538777 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1 -2026/06/02-19:44:40.538789 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:44:40.542122 7f1ff7fff6c0 Generated table #77@1: 1 keys, 626 bytes -2026/06/02-19:44:40.542154 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes -2026/06/02-19:44:40.549101 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:44:40.549243 7f1ff7fff6c0 Delete type=2 #72 -2026/06/02-19:44:40.549396 7f1ff7fff6c0 Delete type=2 #76 -2026/06/02-19:44:40.564205 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-19:59:31.291257 7f480abff6c0 Recovering log #75 +2026/06/04-19:59:31.301289 7f480abff6c0 Delete type=3 #73 +2026/06/04-19:59:31.301323 7f480abff6c0 Delete type=0 #75 +2026/06/04-20:00:50.034965 7f4808bfb6c0 Level-0 table #81: started +2026/06/04-20:00:50.038649 7f4808bfb6c0 Level-0 table #81: 1966 bytes OK +2026/06/04-20:00:50.045673 7f4808bfb6c0 Delete type=0 #79 +2026/06/04-20:00:50.066100 7f4808bfb6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/04-20:00:50.086146 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 194 : 1 +2026/06/04-20:00:50.086154 7f4808bfb6c0 Compacting 1@1 + 1@2 files +2026/06/04-20:00:50.089546 7f4808bfb6c0 Generated table #82@1: 1 keys, 626 bytes +2026/06/04-20:00:50.089562 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 626 bytes +2026/06/04-20:00:50.096082 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/04-20:00:50.096151 7f4808bfb6c0 Delete type=2 #77 +2026/06/04-20:00:50.096257 7f4808bfb6c0 Delete type=2 #81 +2026/06/04-20:00:50.096468 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 194 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/weapons/LOG.old b/packs-system/weapons/LOG.old index 7ba99d6..b3aa775 100644 --- a/packs-system/weapons/LOG.old +++ b/packs-system/weapons/LOG.old @@ -1,15 +1,15 @@ -2026/06/02-19:38:41.343792 7f2214bfc6c0 Recovering log #65 -2026/06/02-19:38:41.356079 7f2214bfc6c0 Delete type=3 #63 -2026/06/02-19:38:41.356142 7f2214bfc6c0 Delete type=0 #65 -2026/06/02-19:38:52.141944 7f1ff7fff6c0 Level-0 table #71: started -2026/06/02-19:38:52.145396 7f1ff7fff6c0 Level-0 table #71: 1965 bytes OK -2026/06/02-19:38:52.153716 7f1ff7fff6c0 Delete type=0 #69 -2026/06/02-19:38:52.153970 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/06/02-19:38:52.165354 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 170 : 1 -2026/06/02-19:38:52.165366 7f1ff7fff6c0 Compacting 1@1 + 1@2 files -2026/06/02-19:38:52.169864 7f1ff7fff6c0 Generated table #72@1: 1 keys, 626 bytes -2026/06/02-19:38:52.169895 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes -2026/06/02-19:38:52.177600 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] -2026/06/02-19:38:52.177705 7f1ff7fff6c0 Delete type=2 #67 -2026/06/02-19:38:52.177829 7f1ff7fff6c0 Delete type=2 #71 -2026/06/02-19:38:52.201037 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 170 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:43:31.516359 7f22153fd6c0 Recovering log #70 +2026/06/02-19:43:31.527478 7f22153fd6c0 Delete type=3 #68 +2026/06/02-19:43:31.527540 7f22153fd6c0 Delete type=0 #70 +2026/06/02-19:44:40.489853 7f1ff7fff6c0 Level-0 table #76: started +2026/06/02-19:44:40.493463 7f1ff7fff6c0 Level-0 table #76: 1965 bytes OK +2026/06/02-19:44:40.500444 7f1ff7fff6c0 Delete type=0 #74 +2026/06/02-19:44:40.526600 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/06/02-19:44:40.538777 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1 +2026/06/02-19:44:40.538789 7f1ff7fff6c0 Compacting 1@1 + 1@2 files +2026/06/02-19:44:40.542122 7f1ff7fff6c0 Generated table #77@1: 1 keys, 626 bytes +2026/06/02-19:44:40.542154 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes +2026/06/02-19:44:40.549101 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ] +2026/06/02-19:44:40.549243 7f1ff7fff6c0 Delete type=2 #72 +2026/06/02-19:44:40.549396 7f1ff7fff6c0 Delete type=2 #76 +2026/06/02-19:44:40.564205 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/weapons/MANIFEST-000073 b/packs-system/weapons/MANIFEST-000073 deleted file mode 100644 index 0ce4c1a..0000000 Binary files a/packs-system/weapons/MANIFEST-000073 and /dev/null differ diff --git a/packs-system/weapons/MANIFEST-000078 b/packs-system/weapons/MANIFEST-000078 new file mode 100644 index 0000000..b5fcddf Binary files /dev/null and b/packs-system/weapons/MANIFEST-000078 differ diff --git a/templates/character-equipment.hbs b/templates/character-equipment.hbs index b3a7cee..e63c42a 100644 --- a/templates/character-equipment.hbs +++ b/templates/character-equipment.hbs @@ -9,6 +9,12 @@ +