diff --git a/modules/mournblade-actor-sheet.js b/modules/mournblade-actor-sheet.js
index 2929f9e..e3336b4 100644
--- a/modules/mournblade-actor-sheet.js
+++ b/modules/mournblade-actor-sheet.js
@@ -12,7 +12,7 @@ export class MournbladeActorSheet extends ActorSheet {
/** @override */
static get defaultOptions() {
- return mergeObject(super.defaultOptions, {
+ return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["fvtt-mournblade", "sheet", "actor"],
template: "systems/fvtt-mournblade/templates/actor-sheet.html",
width: 640,
@@ -25,7 +25,7 @@ export class MournbladeActorSheet extends ActorSheet {
/* -------------------------------------------- */
async getData() {
- const objectData = duplicate(this.object)
+ const objectData = foundry.utils.duplicate(this.object)
let actorData = objectData
let formData = {
@@ -40,24 +40,24 @@ export class MournbladeActorSheet extends ActorSheet {
effects: this.object.effects.map(e => foundry.utils.deepClone(e.data)),
limited: this.object.limited,
skills: this.actor.getSkills(),
- armes: duplicate(this.actor.getWeapons()),
- protections: duplicate(this.actor.getArmors()),
- dons: duplicate(this.actor.getDons()),
+ armes: foundry.utils.duplicate(this.actor.getWeapons()),
+ protections: foundry.utils.duplicate(this.actor.getArmors()),
+ dons: foundry.utils.duplicate(this.actor.getDons()),
alignement: this.actor.getAlignement(),
aspect: this.actor.getAspect(),
marge: this.actor.getMarge(),
- tendances:duplicate(this.actor.getTendances()),
- runes:duplicate(this.actor.getRunes()),
- traitsChaotiques:duplicate(this.actor.getTraitsChaotiques()),
- traitsEspeces: duplicate(this.actor.getTraitsEspeces()),
- origine: duplicate(this.actor.getOrigine() || {}),
- heritage: duplicate(this.actor.getHeritage() || {}),
- metier: duplicate(this.actor.getMetier() || {}),
+ tendances:foundry.utils.duplicate(this.actor.getTendances()),
+ runes:foundry.utils.duplicate(this.actor.getRunes()),
+ traitsChaotiques:foundry.utils.duplicate(this.actor.getTraitsChaotiques()),
+ traitsEspeces: foundry.utils.duplicate(this.actor.getTraitsEspeces()),
+ origine: foundry.utils.duplicate(this.actor.getOrigine() || {}),
+ heritage: foundry.utils.duplicate(this.actor.getHeritage() || {}),
+ metier: foundry.utils.duplicate(this.actor.getMetier() || {}),
combat: this.actor.getCombatValues(),
- equipements: duplicate(this.actor.getEquipments()),
- modifiers: duplicate(this.actor.getModifiers()),
- monnaies: duplicate(this.actor.getMonnaies()),
- runeEffects: duplicate(this.actor.getRuneEffects()),
+ equipements: foundry.utils.duplicate(this.actor.getEquipments()),
+ modifiers: foundry.utils.duplicate(this.actor.getModifiers()),
+ monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
+ runeEffects: foundry.utils.duplicate(this.actor.getRuneEffects()),
config: game.system.mournblade.config,
protectionTotal: this.actor.getProtectionTotal(),
santeMalus: this.actor.getStatusMalus(),
diff --git a/modules/mournblade-actor.js b/modules/mournblade-actor.js
index 8c215f2..094b1bc 100644
--- a/modules/mournblade-actor.js
+++ b/modules/mournblade-actor.js
@@ -31,7 +31,7 @@ export class MournbladeActor extends Actor {
if (data instanceof Array) {
return super.create(data, options);
}
- // If the created actor has items (only applicable to duplicated actors) bypass the new actor creation logic
+ // If the created actor has items (only applicable to foundry.utils.duplicated actors) bypass the new actor creation logic
if (data.items) {
let actor = super.create(data, options);
return actor;
@@ -60,11 +60,11 @@ export class MournbladeActor extends Actor {
/* -------------------------------------------- */
prepareArme(arme) {
- arme = duplicate(arme)
+ arme = foundry.utils.duplicate(arme)
let combat = this.getCombatValues()
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
arme.system.isMelee = true
- arme.system.competence = duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée"))
+ arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée"))
arme.system.attrKey = "pui"
arme.system.totalDegats = arme.system.degats + "+" + combat.bonusDegatsTotal
arme.system.totalOffensif = this.system.attributs.pui.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + combat.attaqueModifier
@@ -74,7 +74,7 @@ export class MournbladeActor extends Actor {
}
if (arme.system.typearme == "jet" || arme.system.typearme == "tir") {
arme.system.isDistance = true
- arme.system.competence = duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance"))
+ arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance"))
arme.system.attrKey = "adr"
arme.system.totalOffensif = this.system.attributs.adr.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + combat.attaqueModifier
arme.system.totalDegats = arme.system.degats
@@ -86,9 +86,9 @@ export class MournbladeActor extends Actor {
}
/* -------------------------------------------- */
prepareBouclier(bouclier) {
- bouclier = duplicate(bouclier)
+ bouclier = foundry.utils.duplicate(bouclier)
let combat = this.getCombatValues()
- bouclier.system.competence = duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée"))
+ bouclier.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée"))
bouclier.system.attrKey = "pui"
bouclier.system.totalDegats = bouclier.system.degats + "+" + combat.bonusDegatsTotal
bouclier.system.totalOffensif = this.system.attributs.pui.value + bouclier.system.competence.system.niveau
@@ -176,7 +176,7 @@ export class MournbladeActor extends Actor {
getSkills() {
let comp = []
for (let item of this.items) {
- item = duplicate(item)
+ 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)
@@ -286,7 +286,7 @@ export class MournbladeActor extends Actor {
getItemById(id) {
let item = this.items.find(item => item.id == id);
if (item) {
- item = duplicate(item)
+ item = foundry.utils.duplicate(item)
}
return item;
}
@@ -361,7 +361,7 @@ export class MournbladeActor extends Actor {
value = Math.max(0, Number(value))
}
if (value) {
- let newSante = duplicate(this.system.sante)
+ let newSante = foundry.utils.duplicate(this.system.sante)
newSante[type] += Number(value)
newSante[type] = Math.max(0, newSante[type])
if (newSante[type] > this.system.sante.base) {
@@ -382,7 +382,7 @@ export class MournbladeActor extends Actor {
incDecAme(value) {
value = Number(value)
if (value) {
- let newAme = duplicate(this.system.ame)
+ let newAme = foundry.utils.duplicate(this.system.ame)
newAme.value += Number(value)
newAme.value = Math.max(0, newAme.value)
newAme.value = Math.min(newAme.value, newAme.currentmax)
@@ -420,7 +420,7 @@ export class MournbladeActor extends Actor {
}
/* -------------------------------------------- */
subPointsAme(runeMode, value) {
- let ame = duplicate(this.system.ame)
+ let ame = foundry.utils.duplicate(this.system.ame)
if (runeMode == "prononcer") {
ame.value += value
} else {
@@ -466,13 +466,13 @@ export class MournbladeActor extends Actor {
getSubActors() {
let subActors = [];
for (let id of this.system.subactors) {
- subActors.push(duplicate(game.actors.get(id)));
+ subActors.push(foundry.utils.duplicate(game.actors.get(id)));
}
return subActors;
}
/* -------------------------------------------- */
async addSubActor(subActorId) {
- let subActors = duplicate(this.system.subactors);
+ let subActors = foundry.utils.duplicate(this.system.subactors);
subActors.push(subActorId);
await this.update({ 'system.subactors': subActors });
}
@@ -503,7 +503,7 @@ export class MournbladeActor extends Actor {
/* -------------------------------------------- */
async setPredilectionUsed(compId, predIdx) {
let comp = this.items.get(compId)
- let pred = duplicate(comp.system.predilections)
+ let pred = foundry.utils.duplicate(comp.system.predilections)
pred[predIdx].used = true
await this.updateEmbeddedDocuments('Item', [{ _id: compId, 'system.predilections': pred }])
}
@@ -526,7 +526,7 @@ export class MournbladeActor extends Actor {
}
if (arme.system.totalDefensif > maxDef) {
maxDef = arme.system.totalDefensif
- bestArme = duplicate(arme)
+ bestArme = foundry.utils.duplicate(arme)
}
}
return bestArme
@@ -535,7 +535,7 @@ export class MournbladeActor extends Actor {
depenseRessources(arme) {
if (arme.system.nbressources && Number(arme.system.nbressources) > 0) {
if (this.type == "creature") {
- let ressources = duplicate(this.system.ressources)
+ let ressources = foundry.utils.duplicate(this.system.ressources)
if (Number(ressources.value) >= Number(arme.system.nbressources)) {
ressources.value -= arme.system.nbressources
this.update({ 'system.ressources': ressources })
@@ -578,15 +578,15 @@ export class MournbladeActor extends Actor {
rollData.attrKey = attrKey
if (attrKey != "tochoose") {
rollData.actionImg = "systems/fvtt-mournblade/assets/icons/" + this.system.attributs[attrKey].labelnorm + ".webp"
- rollData.attr = duplicate(this.system.attributs[attrKey])
+ rollData.attr = foundry.utils.duplicate(this.system.attributs[attrKey])
}
}
if (compId) {
- rollData.competence = duplicate(this.items.get(compId) || {})
+ rollData.competence = foundry.utils.duplicate(this.items.get(compId) || {})
rollData.actionImg = rollData.competence?.img
}
if (compName) {
- rollData.competence = duplicate(this.items.find(item => item.name.toLowerCase() == compName.toLowerCase()) || {})
+ rollData.competence = foundry.utils.duplicate(this.items.find(item => item.name.toLowerCase() == compName.toLowerCase()) || {})
rollData.actionImg = rollData.competence?.img
}
return rollData
@@ -615,7 +615,7 @@ export class MournbladeActor extends Actor {
return
}
let rollData = this.getCommonRollData("cla", undefined, "Savoir : Runes")
- rollData.rune = duplicate(this.items.get(runeId) || {})
+ rollData.rune = foundry.utils.duplicate(this.items.get(runeId) || {})
rollData.difficulte = rollData.rune?.system?.seuil || 0
rollData.runemode = "prononcer"
rollData.runeame = 1
diff --git a/modules/mournblade-config.js b/modules/mournblade-config.js
index 6dc2fd1..bdc23e3 100644
--- a/modules/mournblade-config.js
+++ b/modules/mournblade-config.js
@@ -1,6 +1,6 @@
export const MOURNBLADE_CONFIG = {
-
- attaques:{
+
+ attaques: {
assaut: "Assaut",
precise: "Attaque Précise",
feinte: "Feinte",
@@ -9,17 +9,63 @@ export const MOURNBLADE_CONFIG = {
contenir: "Contenir l'adversaire",
desarmer: "Désarmer"
},
- couverts:{
- aucun: {name: "Aucun", value: 0},
- rondache: {name: "Rondache ou léger (-2)", value: -2},
- pavois: { name: "Pavois ou à moitié (-5)", value: -5},
- complet: {name:"Quasi complet (-10)", value: -10},
- },
+ couverts: {
+ aucun: { name: "Aucun", value: 0 },
+ rondache: { name: "Rondache ou léger (-2)", value: -2 },
+ pavois: { name: "Pavois ou à moitié (-5)", value: -5 },
+ complet: { name: "Quasi complet (-10)", value: -10 },
+ },
modifierTypes: {
- aucun: {name: "Aucun", value: 0},
- roll: {name: "Jet", value: 0},
- degats: {name: "Dégats", value: 0},
- defense: {name: "Capacité défensive", value: 0},
- attaque: {name: "Capacité offensive", value: 0},
- }
+ aucun: { name: "Aucun", value: 0 },
+ roll: { name: "Jet", value: 0 },
+ degats: { name: "Dégats", value: 0 },
+ defense: { name: "Capacité défensive", value: 0 },
+ attaque: { name: "Capacité offensive", value: 0 },
+ },
+ listeNiveau: {
+ },
+ listeNiveauCreature: {
+ },
+ listePortees: {
+ "10": "Moins que courte (10)",
+ "15": "Courte et + (15)",
+ "20": "Moyenne et + (20)",
+ "25": "Longue et + (25)"
+ },
+ modificateurOptions: {},
+ pointsAmeOptions: {},
+ difficulteOptions: {
+ "0": "Aucune/Inconnue",
+ "5": "Facile (5)",
+ "10": "Moyenne (10)",
+ "15": "Ardue (15)",
+ "20": "Hasardeuse (20)",
+ "25": "Insensée (25)",
+ "30": "Pure Folie (30)"
+ },
+ attributs: {
+ adr: "Adresse", pui: "Puissance", cla: "Clairvoyance", pre: "Présence", tre: "Trempe"
+ },
+ lancementRuneOptions: {
+ prononcer: "Prononcer la rune",
+ inscrire: "Inscrire la rune"
+ },
+ effetRuneOptions: {
+ prononcee: "Prononcée",
+ inscrite: "Inscrite"
+ },
+ typeArmeOptions: {
+ contact: "Arme de contact",
+ contactjet: "Arme de contact et de Jet",
+ jet: "Arme de Jet",
+ tir: "Arme de Tir",
+ special: "Spécial (capacité/don)"
+ },
+ allegeanceOptions: {
+ tous: "Tous",
+ chaos: "Chaos",
+ loi: "Loi",
+ betes: "Seigneurs des Bêtes",
+ elementaires: "Seigneurs Elementaires"
+ },
};
\ No newline at end of file
diff --git a/modules/mournblade-creature-sheet.js b/modules/mournblade-creature-sheet.js
index 2b676f6..6eb22be 100644
--- a/modules/mournblade-creature-sheet.js
+++ b/modules/mournblade-creature-sheet.js
@@ -12,7 +12,7 @@ export class MournbladeCreatureSheet extends MournbladeActorSheet {
/** @override */
static get defaultOptions() {
- return mergeObject(super.defaultOptions, {
+ return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["fvtt-mournblade", "sheet", "actor"],
template: "systems/fvtt-mournblade/templates/creature-sheet.html",
width: 640,
diff --git a/modules/mournblade-item-sheet.js b/modules/mournblade-item-sheet.js
index 53f553b..263ebab 100644
--- a/modules/mournblade-item-sheet.js
+++ b/modules/mournblade-item-sheet.js
@@ -9,7 +9,7 @@ export class MournbladeItemSheet extends ItemSheet {
/** @override */
static get defaultOptions() {
- return mergeObject(super.defaultOptions, {
+ return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["fvtt-mournblade", "sheet", "item"],
template: "systems/fvtt-mournblade/templates/item-sheet.html",
dragDrop: [{ dragSelector: null, dropSelector: null }],
@@ -48,7 +48,7 @@ export class MournbladeItemSheet extends ItemSheet {
/* -------------------------------------------- */
async getData() {
- const objectData = duplicate(this.object)
+ const objectData = foundry.utils.duplicate(this.object)
let itemData = objectData
let formData = {
title: this.title,
@@ -91,7 +91,7 @@ export class MournbladeItemSheet extends ItemSheet {
/* -------------------------------------------- */
postItem() {
- let chatData = duplicate(MournbladeUtility.data(this.item));
+ let chatData = foundry.utils.duplicate(MournbladeUtility.data(this.item));
if (this.actor) {
chatData.actor = { id: this.actor.id };
}
@@ -134,26 +134,26 @@ export class MournbladeItemSheet extends ItemSheet {
html.find('.edit-prediction').change(ev => {
const li = $(ev.currentTarget).parents(".prediction-item")
let index = li.data("prediction-index")
- let pred = duplicate(this.object.system.predilections)
+ let pred = foundry.utils.duplicate(this.object.system.predilections)
pred[index].name = ev.currentTarget.value
this.object.update( { 'system.predilections': pred })
})
html.find('.delete-prediction').click(ev => {
const li = $(ev.currentTarget).parents(".prediction-item")
let index = li.data("prediction-index")
- let pred = duplicate(this.object.system.predilections)
+ let pred = foundry.utils.duplicate(this.object.system.predilections)
pred.splice(index,1)
this.object.update( { 'system.predilections': pred })
})
html.find('.use-prediction').change(ev => {
const li = $(ev.currentTarget).parents(".prediction-item")
let index = li.data("prediction-index")
- let pred = duplicate(this.object.system.predilections)
+ let pred = foundry.utils.duplicate(this.object.system.predilections)
pred[index].used = ev.currentTarget.checked
this.object.update( { 'system.predilections': pred })
})
html.find('#add-predilection').click(ev => {
- let pred = duplicate(this.object.system.predilections)
+ let pred = foundry.utils.duplicate(this.object.system.predilections)
pred.push( { name: "Nouvelle prédilection", id: randomID(), used: false })
this.object.update( { 'system.predilections': pred })
})
diff --git a/modules/mournblade-utility.js b/modules/mournblade-utility.js
index 061e35a..02d18da 100644
--- a/modules/mournblade-utility.js
+++ b/modules/mournblade-utility.js
@@ -59,15 +59,6 @@ export class MournbladeUtility {
return actor
}
- /* -------------------------------------------- */
- static getModificateurOptions() {
- let opt = []
- for (let i = -15; i <= 15; i++) {
- opt.push(``)
- }
- return opt.concat("\n")
- }
-
/* -------------------------------------------- */
static sortArrayObjectsByName(myArray) {
myArray.sort((a, b) => {
@@ -75,18 +66,9 @@ export class MournbladeUtility {
})
}
- /* -------------------------------------------- */
- static getPointAmeOptions() {
- let opt = []
- for (let i = 1; i <= 20; i++) {
- opt.push(``)
- }
- return opt.concat("\n")
- }
-
/* -------------------------------------------- */
static getAttributs() {
- return { adr: "Adresse", pui: "Puissance", cla: "Clairvoyance", pre: "Présence", tre: "Trempe" }
+ return game.system.mournblade.config.attributs
}
/* -------------------------------------------- */
static pushInitiativeOptions(html, options) {
@@ -101,6 +83,11 @@ export class MournbladeUtility {
static async ready() {
const skills = await MournbladeUtility.loadCompendium("fvtt-mournblade.skills")
this.skills = skills.map(i => i.toObject())
+
+ game.system.mournblade.config.listeNiveauSkill = MournbladeUtility.createDirectOptionList(0, 10)
+ game.system.mournblade.config.listeNiveauCreature = MournbladeUtility.createDirectOptionList(0, 35)
+ game.system.mournblade.config.modificateurOptions = MournbladeUtility.createArrayOptionList(-15, 15)
+ game.system.mournblade.config.pointsAmeOptions = MournbladeUtility.createDirectOptionList(0, 20)
}
/* -------------------------------------------- */
@@ -122,8 +109,8 @@ export class MournbladeUtility {
/* -------------------------------------------- */
static getPredilection(comp, predIdx) {
- let pred = duplicate(comp.system.predilections)
- return duplicate(pred[predIdx] || { name: "Error!" })
+ let pred = foundry.utils.duplicate(comp.system.predilections)
+ return foundry.utils.duplicate(pred[predIdx] || { name: "Error!" })
}
/* -------------------------------------------- */
@@ -150,7 +137,7 @@ export class MournbladeUtility {
let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData)
await actor.setPredilectionUsed(rollData.competence._id, predIdx)
- rollData.competence = duplicate(actor.getCompetence(rollData.competence._id))
+ rollData.competence = foundry.utils.duplicate(actor.getCompetence(rollData.competence._id))
rollData.predilectionUsed = MournbladeUtility.getPredilection(rollData.competence, predIdx)
await MournbladeUtility.rollMournblade(rollData)
})
@@ -180,9 +167,7 @@ export class MournbladeUtility {
const templatePaths = [
'systems/fvtt-mournblade/templates/editor-notes-gm.html',
- 'systems/fvtt-mournblade/templates/partial-item-description.html',
- 'systems/fvtt-mournblade/templates/partial-list-niveau.html',
- 'systems/fvtt-mournblade/templates/partial-list-niveau-creature.html'
+ 'systems/fvtt-mournblade/templates/partial-item-description.html'
]
return loadTemplates(templatePaths);
}
@@ -224,12 +209,10 @@ export class MournbladeUtility {
}
return options;
}
-
- /* -------------------------------------------- */
- static buildListOptions(min, max) {
- let options = ""
+ static createArrayOptionList(min, max) {
+ let options = [];
for (let i = min; i <= max; i++) {
- options += ``
+ options.push({key:`${i}`, label:`${i}`});
}
return options;
}
@@ -337,7 +320,7 @@ export class MournbladeUtility {
}
if (!rollData.attr) {
rollData.actionImg = "systems/fvtt-mournblade/assets/icons/" + actor.system.attributs[rollData.attrKey].labelnorm + ".webp"
- rollData.attr = duplicate(actor.system.attributs[rollData.attrKey])
+ rollData.attr = foundry.utils.duplicate(actor.system.attributs[rollData.attrKey])
}
rollData.diceFormula = rollData.mainDice
@@ -349,7 +332,7 @@ export class MournbladeUtility {
}
//console.log("BEFORE COMP", rollData)
if (rollData.competence) {
- rollData.predilections = duplicate(rollData.competence.system.predilections)
+ rollData.predilections = foundry.utils.duplicate(rollData.competence.system.predilections)
let compmod = (rollData.competence.system.niveau == 0) ? -3 : 0
rollData.diceFormula += `+${rollData.attr.value}+${rollData.competence.system.niveau}+${rollData.modificateur}+${compmod}`
} else {
@@ -376,7 +359,7 @@ export class MournbladeUtility {
}
desavantagesBonus = Math.min(15, desavantagesBonus)
rollData.diceFormula += `+${desavantagesBonus}`
-
+
// Monté ?
if (rollData.isMonte) {
rollData.diceFormula += "+5"
@@ -411,10 +394,10 @@ export class MournbladeUtility {
rollData.runeduree = 1
}
}
-
- let myRoll = new Roll(rollData.diceFormula).roll({ async: false })
+
+ let myRoll = await new Roll(rollData.diceFormula).evaluate();
await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode"))
- rollData.roll = duplicate(myRoll)
+ rollData.roll = foundry.utils.duplicate(myRoll)
rollData.diceResult = myRoll.terms[0].results[0].result
console.log(">>>> ", myRoll)
@@ -439,7 +422,7 @@ export class MournbladeUtility {
if (rollData.typeAttaque == "immobiliser" && rollData.difficulte > 0 && rollData.isPureSuccess) {
actor.setModifier("Immobilisation en cours : -5 pour prochaine action", "roll", -5)
}
- if ( rollData.typeAttaque == "chargecavalerie" ) {
+ if (rollData.typeAttaque == "chargecavalerie") {
actor.setModifier("Charge de Cavalerie : -5 défense pour le tour", "defense", -5)
}
this.createChatWithRollMode(rollData.alias, {
@@ -466,10 +449,10 @@ export class MournbladeUtility {
if (rollData.typeAttaque == "charger") {
rollData.degatsFormula += "+2"
}
- if ( rollData.typeAttaque == "chargecavalerie" ) {
+ if (rollData.typeAttaque == "chargecavalerie") {
rollData.degatsFormula += "+5"
}
-
+
if (rollData.typeAttaque == "precise") {
degatsMessage = "Degats normaux"
if (rollData.isHeroique) { // Degats max
@@ -499,8 +482,8 @@ export class MournbladeUtility {
degatsMessage = "Pas de dégats, mais l'adversaire ne peut pas vous attaquer pour le reste du tour"
rollData.degatsFormula = false
if (rollData.isHeroique) { // Malus pour prochaine action
- degatsMessage = "Pas de dégats, mais tout les adversaires avec une défense inférieure ou égale à " + rollData.finalResult-10 +
- " ne peuvent pas vous attaquer pour le reste du tour"
+ degatsMessage = "Pas de dégats, mais tout les adversaires avec une défense inférieure ou égale à " + rollData.finalResult - 10 +
+ " ne peuvent pas vous attaquer pour le reste du tour"
}
}
if (rollData.typeAttaque == "desarmer") {
@@ -525,14 +508,14 @@ export class MournbladeUtility {
rollData.degatsFormula += "+" + rollData.degatsFormula
}
// Latest modifiers
- for(let mod of rollData.modifiers) {
- if (mod.system.modifiertype == "degats") {
+ for (let mod of rollData.modifiers) {
+ if (mod.system.modifiertype == "degats") {
rollData.degatsFormula += `+${mod.system.value}`
}
- }
- let degatsRoll = new Roll(rollData.degatsFormula).roll({ async: false, maximize: maximize })
+ }
+ let degatsRoll = await new Roll(rollData.degatsFormula).evaluate({ maximize: maximize })
await this.showDiceSoNice(degatsRoll, game.settings.get("core", "rollMode"))
- rollData.degatsRoll = duplicate(degatsRoll)
+ rollData.degatsRoll = foundry.utils.duplicate(degatsRoll)
rollData.finalResult = degatsRoll.total
}
@@ -563,7 +546,7 @@ export class MournbladeUtility {
defender.setModifier("Prochaine action complexe", "roll", -rollData.nextMalus)
}
if (rollData.defenderDesarme) {
- ui.notifications.info("L'arme de " + defender.name + " est arrachée de ses mains (à gérer manuellement)" )
+ ui.notifications.info("L'arme de " + defender.name + " est arrachée de ses mains (à gérer manuellement)")
}
let degats = rollData.finalResult
@@ -580,9 +563,9 @@ export class MournbladeUtility {
static async bonusRollMournblade(rollData) {
rollData.bonusFormula = rollData.addedBonus
- let bonusRoll = new Roll(rollData.bonusFormula).roll({ async: false })
+ let bonusRoll = await new Roll(rollData.bonusFormula).evaluate()
await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode"));
- rollData.bonusRoll = duplicate(bonusRoll)
+ rollData.bonusRoll = foundry.utils.duplicate(bonusRoll)
rollData.finalResult += rollData.bonusRoll.total
@@ -616,7 +599,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */
static blindMessageToGM(chatOptions) {
- let chatGM = duplicate(chatOptions);
+ let chatGM = foundry.utils.duplicate(chatOptions);
chatGM.whisper = this.getUsers(user => user.isGM);
chatGM.content = "Blinde message of " + game.user.name + "
" + chatOptions.content;
console.log("blindMessageToGM", chatGM);
@@ -679,13 +662,11 @@ export class MournbladeUtility {
/* -------------------------------------------- */
static getBasicRollData() {
let rollData = {
- rollId: randomID(16),
+ rollId: foundry.utils.randomID(16),
rollMode: game.settings.get("core", "rollMode"),
- modificateursOptions: this.getModificateurOptions(),
- pointAmeOptions: this.getPointAmeOptions(),
difficulte: 0,
modificateur: 0,
- config: duplicate(game.system.mournblade.config),
+ config: foundry.utils.duplicate(game.system.mournblade.config),
}
MournbladeUtility.updateWithTarget(rollData)
return rollData
diff --git a/packs/armes/000090.ldb b/packs/armes/000090.ldb
deleted file mode 100644
index df26e3d..0000000
Binary files a/packs/armes/000090.ldb and /dev/null differ
diff --git a/packs/armes/000195.ldb b/packs/armes/000195.ldb
new file mode 100644
index 0000000..4bc6541
Binary files /dev/null and b/packs/armes/000195.ldb differ
diff --git a/packs/armes/000169.log b/packs/armes/000198.log
similarity index 100%
rename from packs/armes/000169.log
rename to packs/armes/000198.log
diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT
index c5ea6dc..8071610 100644
--- a/packs/armes/CURRENT
+++ b/packs/armes/CURRENT
@@ -1 +1 @@
-MANIFEST-000167
+MANIFEST-000196
diff --git a/packs/armes/LOG b/packs/armes/LOG
index e81f58e..9330bd7 100644
--- a/packs/armes/LOG
+++ b/packs/armes/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.262772 7f38a20006c0 Recovering log #165
-2024/04/05-22:32:00.273368 7f38a20006c0 Delete type=3 #163
-2024/04/05-22:32:00.273429 7f38a20006c0 Delete type=0 #165
-2024/04/05-22:32:55.827607 7f38a10006c0 Level-0 table #170: started
-2024/04/05-22:32:55.827633 7f38a10006c0 Level-0 table #170: 0 bytes OK
-2024/04/05-22:32:55.833693 7f38a10006c0 Delete type=0 #168
-2024/04/05-22:32:55.847425 7f38a10006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.847463 7f38a10006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.595518 7f0832a006c0 Recovering log #193
+2024/04/25-23:18:20.606674 7f0832a006c0 Delete type=3 #191
+2024/04/25-23:18:20.606816 7f0832a006c0 Delete type=0 #193
+2024/04/25-23:31:59.770416 7f08310006c0 Level-0 table #199: started
+2024/04/25-23:31:59.770479 7f08310006c0 Level-0 table #199: 0 bytes OK
+2024/04/25-23:31:59.807298 7f08310006c0 Delete type=0 #197
+2024/04/25-23:31:59.807694 7f08310006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.846668 7f08310006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old
index 7dbc389..500b4ff 100644
--- a/packs/armes/LOG.old
+++ b/packs/armes/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.838933 7fc398c006c0 Recovering log #161
-2024/04/05-10:33:10.849164 7fc398c006c0 Delete type=3 #159
-2024/04/05-10:33:10.849241 7fc398c006c0 Delete type=0 #161
-2024/04/05-10:37:42.813439 7fc3938006c0 Level-0 table #166: started
-2024/04/05-10:37:42.813463 7fc3938006c0 Level-0 table #166: 0 bytes OK
-2024/04/05-10:37:42.820695 7fc3938006c0 Delete type=0 #164
-2024/04/05-10:37:42.820863 7fc3938006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.820879 7fc3938006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.778464 7f78fb4006c0 Recovering log #189
+2024/04/25-22:03:44.789142 7f78fb4006c0 Delete type=3 #187
+2024/04/25-22:03:44.789200 7f78fb4006c0 Delete type=0 #189
+2024/04/25-23:17:56.583102 7f78f90006c0 Level-0 table #194: started
+2024/04/25-23:17:56.587218 7f78f90006c0 Level-0 table #194: 14619 bytes OK
+2024/04/25-23:17:56.593478 7f78f90006c0 Delete type=0 #192
+2024/04/25-23:17:56.593750 7f78f90006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.635561 7f78f90006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 143 : 1
+2024/04/25-23:17:56.635586 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.639493 7f78f90006c0 Generated table #195@1: 48 keys, 14619 bytes
+2024/04/25-23:17:56.639537 7f78f90006c0 Compacted 1@1 + 1@2 files => 14619 bytes
+2024/04/25-23:17:56.645856 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.646010 7f78f90006c0 Delete type=2 #90
+2024/04/25-23:17:56.646200 7f78f90006c0 Delete type=2 #194
+2024/04/25-23:17:56.646356 7f78f90006c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 143 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
diff --git a/packs/armes/MANIFEST-000167 b/packs/armes/MANIFEST-000167
deleted file mode 100644
index 325615d..0000000
Binary files a/packs/armes/MANIFEST-000167 and /dev/null differ
diff --git a/packs/armes/MANIFEST-000196 b/packs/armes/MANIFEST-000196
new file mode 100644
index 0000000..96835e0
Binary files /dev/null and b/packs/armes/MANIFEST-000196 differ
diff --git a/packs/dons/000005.ldb b/packs/dons/000005.ldb
deleted file mode 100644
index 623c7de..0000000
Binary files a/packs/dons/000005.ldb and /dev/null differ
diff --git a/packs/dons/000194.ldb b/packs/dons/000194.ldb
new file mode 100644
index 0000000..98e2e05
Binary files /dev/null and b/packs/dons/000194.ldb differ
diff --git a/packs/dons/000168.log b/packs/dons/000197.log
similarity index 100%
rename from packs/dons/000168.log
rename to packs/dons/000197.log
diff --git a/packs/dons/CURRENT b/packs/dons/CURRENT
index 830373b..6504cac 100644
--- a/packs/dons/CURRENT
+++ b/packs/dons/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/dons/LOG b/packs/dons/LOG
index b027d99..2ede0fc 100644
--- a/packs/dons/LOG
+++ b/packs/dons/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.303088 7f38a34006c0 Recovering log #164
-2024/04/05-22:32:00.314418 7f38a34006c0 Delete type=3 #162
-2024/04/05-22:32:00.314502 7f38a34006c0 Delete type=0 #164
-2024/04/05-22:32:55.861596 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.861637 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.867760 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.874811 7f38a10006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.874840 7f38a10006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.639847 7f0833e006c0 Recovering log #192
+2024/04/25-23:18:20.650619 7f0833e006c0 Delete type=3 #190
+2024/04/25-23:18:20.650726 7f0833e006c0 Delete type=0 #192
+2024/04/25-23:31:59.846695 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.846738 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.878047 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.950365 7f08310006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.950424 7f08310006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
diff --git a/packs/dons/LOG.old b/packs/dons/LOG.old
index 3b70416..ae742f1 100644
--- a/packs/dons/LOG.old
+++ b/packs/dons/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.874418 7fc3996006c0 Recovering log #160
-2024/04/05-10:33:10.885145 7fc3996006c0 Delete type=3 #158
-2024/04/05-10:33:10.885204 7fc3996006c0 Delete type=0 #160
-2024/04/05-10:37:42.841468 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.841499 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.847438 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.847611 7fc3938006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.847642 7fc3938006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.820803 7f78fa0006c0 Recovering log #188
+2024/04/25-22:03:44.831810 7f78fa0006c0 Delete type=3 #186
+2024/04/25-22:03:44.831882 7f78fa0006c0 Delete type=0 #188
+2024/04/25-23:17:56.646583 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.650291 7f78f90006c0 Level-0 table #193: 15907 bytes OK
+2024/04/25-23:17:56.657623 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.689962 7f78f90006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.690062 7f78f90006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at '!items!zzz9JrtWjELdoAfK' @ 60 : 1
+2024/04/25-23:17:56.690077 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.694261 7f78f90006c0 Generated table #194@1: 30 keys, 15907 bytes
+2024/04/25-23:17:56.694309 7f78f90006c0 Compacted 1@1 + 1@2 files => 15907 bytes
+2024/04/25-23:17:56.701741 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.701915 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.702149 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.736235 7f78f90006c0 Manual compaction at level-1 from '!items!zzz9JrtWjELdoAfK' @ 60 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
diff --git a/packs/dons/MANIFEST-000166 b/packs/dons/MANIFEST-000166
deleted file mode 100644
index 59ec5e3..0000000
Binary files a/packs/dons/MANIFEST-000166 and /dev/null differ
diff --git a/packs/dons/MANIFEST-000195 b/packs/dons/MANIFEST-000195
new file mode 100644
index 0000000..3bce1e7
Binary files /dev/null and b/packs/dons/MANIFEST-000195 differ
diff --git a/packs/equipement/000005.ldb b/packs/equipement/000005.ldb
deleted file mode 100644
index 9a15f17..0000000
Binary files a/packs/equipement/000005.ldb and /dev/null differ
diff --git a/packs/equipement/000194.ldb b/packs/equipement/000194.ldb
new file mode 100644
index 0000000..2a215a5
Binary files /dev/null and b/packs/equipement/000194.ldb differ
diff --git a/packs/equipement/000168.log b/packs/equipement/000197.log
similarity index 100%
rename from packs/equipement/000168.log
rename to packs/equipement/000197.log
diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT
index 830373b..6504cac 100644
--- a/packs/equipement/CURRENT
+++ b/packs/equipement/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/equipement/LOG b/packs/equipement/LOG
index 3f17d89..d44c355 100644
--- a/packs/equipement/LOG
+++ b/packs/equipement/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.290095 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.300122 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.300224 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.847559 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.847585 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.853735 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.874789 7f38a10006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.874828 7f38a10006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.625174 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.636417 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.636541 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:31:59.807936 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.807990 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.846313 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.913834 7f08310006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.950407 7f08310006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old
index 17ec770..f911aef 100644
--- a/packs/equipement/LOG.old
+++ b/packs/equipement/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.863002 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.872681 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.872738 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.820943 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.820973 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.827269 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.847575 7fc3938006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.847619 7fc3938006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.807163 7f78faa006c0 Recovering log #188
+2024/04/25-22:03:44.817025 7f78faa006c0 Delete type=3 #186
+2024/04/25-22:03:44.817133 7f78faa006c0 Delete type=0 #188
+2024/04/25-23:17:56.668294 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.671931 7f78f90006c0 Level-0 table #193: 9643 bytes OK
+2024/04/25-23:17:56.679337 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.690017 7f78f90006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.713583 7f78f90006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 110 : 1
+2024/04/25-23:17:56.713606 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.717333 7f78f90006c0 Generated table #194@1: 55 keys, 9643 bytes
+2024/04/25-23:17:56.717385 7f78f90006c0 Compacted 1@1 + 1@2 files => 9643 bytes
+2024/04/25-23:17:56.724376 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.724681 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.724931 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.736282 7f78f90006c0 Manual compaction at level-1 from '!items!y47dBO3Mf5Pn7tOd' @ 110 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
diff --git a/packs/equipement/MANIFEST-000166 b/packs/equipement/MANIFEST-000166
deleted file mode 100644
index d18b820..0000000
Binary files a/packs/equipement/MANIFEST-000166 and /dev/null differ
diff --git a/packs/equipement/MANIFEST-000195 b/packs/equipement/MANIFEST-000195
new file mode 100644
index 0000000..d02742f
Binary files /dev/null and b/packs/equipement/MANIFEST-000195 differ
diff --git a/packs/heritages/000005.ldb b/packs/heritages/000005.ldb
deleted file mode 100644
index 3696f6c..0000000
Binary files a/packs/heritages/000005.ldb and /dev/null differ
diff --git a/packs/heritages/000194.ldb b/packs/heritages/000194.ldb
new file mode 100644
index 0000000..19e7cba
Binary files /dev/null and b/packs/heritages/000194.ldb differ
diff --git a/packs/heritages/000168.log b/packs/heritages/000197.log
similarity index 100%
rename from packs/heritages/000168.log
rename to packs/heritages/000197.log
diff --git a/packs/heritages/CURRENT b/packs/heritages/CURRENT
index 830373b..6504cac 100644
--- a/packs/heritages/CURRENT
+++ b/packs/heritages/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/heritages/LOG b/packs/heritages/LOG
index 896711b..697866b 100644
--- a/packs/heritages/LOG
+++ b/packs/heritages/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.334658 7f38a34006c0 Recovering log #164
-2024/04/05-22:32:00.344895 7f38a34006c0 Delete type=3 #162
-2024/04/05-22:32:00.344976 7f38a34006c0 Delete type=0 #164
-2024/04/05-22:32:55.867890 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.867913 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.874663 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.874821 7f38a10006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.874847 7f38a10006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.668825 7f0833e006c0 Recovering log #192
+2024/04/25-23:18:20.680265 7f0833e006c0 Delete type=3 #190
+2024/04/25-23:18:20.680363 7f0833e006c0 Delete type=0 #192
+2024/04/25-23:31:59.913864 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.913918 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.950159 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.950438 7f08310006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.950490 7f08310006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
diff --git a/packs/heritages/LOG.old b/packs/heritages/LOG.old
index 57e2089..1839a05 100644
--- a/packs/heritages/LOG.old
+++ b/packs/heritages/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.899441 7fc3996006c0 Recovering log #160
-2024/04/05-10:33:10.909599 7fc3996006c0 Delete type=3 #158
-2024/04/05-10:33:10.909664 7fc3996006c0 Delete type=0 #160
-2024/04/05-10:37:42.827388 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.827415 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.833886 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.847590 7fc3938006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.847627 7fc3938006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.848567 7f78fbe006c0 Recovering log #188
+2024/04/25-22:03:44.859167 7f78fbe006c0 Delete type=3 #186
+2024/04/25-22:03:44.859237 7f78fbe006c0 Delete type=0 #188
+2024/04/25-23:17:56.736429 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.740111 7f78f90006c0 Level-0 table #193: 6857 bytes OK
+2024/04/25-23:17:56.747766 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.781813 7f78f90006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.781945 7f78f90006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at '!items!ui4JGsGwHNlSXVK3' @ 20 : 1
+2024/04/25-23:17:56.781966 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.786785 7f78f90006c0 Generated table #194@1: 10 keys, 6857 bytes
+2024/04/25-23:17:56.786842 7f78f90006c0 Compacted 1@1 + 1@2 files => 6857 bytes
+2024/04/25-23:17:56.793253 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.793403 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.793624 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.829747 7f78f90006c0 Manual compaction at level-1 from '!items!ui4JGsGwHNlSXVK3' @ 20 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
diff --git a/packs/heritages/MANIFEST-000166 b/packs/heritages/MANIFEST-000166
deleted file mode 100644
index ad8d7ec..0000000
Binary files a/packs/heritages/MANIFEST-000166 and /dev/null differ
diff --git a/packs/heritages/MANIFEST-000195 b/packs/heritages/MANIFEST-000195
new file mode 100644
index 0000000..70a9fa7
Binary files /dev/null and b/packs/heritages/MANIFEST-000195 differ
diff --git a/packs/metiers/000005.ldb b/packs/metiers/000005.ldb
deleted file mode 100644
index c820e89..0000000
Binary files a/packs/metiers/000005.ldb and /dev/null differ
diff --git a/packs/metiers/000194.ldb b/packs/metiers/000194.ldb
new file mode 100644
index 0000000..490d3d6
Binary files /dev/null and b/packs/metiers/000194.ldb differ
diff --git a/packs/metiers/000168.log b/packs/metiers/000197.log
similarity index 100%
rename from packs/metiers/000168.log
rename to packs/metiers/000197.log
diff --git a/packs/metiers/CURRENT b/packs/metiers/CURRENT
index 830373b..6504cac 100644
--- a/packs/metiers/CURRENT
+++ b/packs/metiers/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/metiers/LOG b/packs/metiers/LOG
index 2ea18b6..e70115c 100644
--- a/packs/metiers/LOG
+++ b/packs/metiers/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.349335 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.359431 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.359512 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.881485 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.881507 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.887726 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.902069 7f38a10006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.902110 7f38a10006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.683579 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.739808 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.740012 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:31:59.987531 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.987597 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:32:00.025092 7f08310006c0 Delete type=0 #196
+2024/04/25-23:32:00.098181 7f08310006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.098246 7f08310006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
diff --git a/packs/metiers/LOG.old b/packs/metiers/LOG.old
index b5ab78f..677c96a 100644
--- a/packs/metiers/LOG.old
+++ b/packs/metiers/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.911832 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.922143 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.922205 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.855350 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.855382 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.861347 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.875214 7fc3938006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.875295 7fc3938006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.862107 7f78faa006c0 Recovering log #188
+2024/04/25-22:03:44.872187 7f78faa006c0 Delete type=3 #186
+2024/04/25-22:03:44.872261 7f78faa006c0 Delete type=0 #188
+2024/04/25-23:17:56.748013 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.751838 7f78f90006c0 Level-0 table #193: 14928 bytes OK
+2024/04/25-23:17:56.758505 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.781852 7f78f90006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.793815 7f78f90006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at '!items!xlyFCQClBZ1N3O1B' @ 34 : 1
+2024/04/25-23:17:56.793837 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.798220 7f78f90006c0 Generated table #194@1: 17 keys, 14928 bytes
+2024/04/25-23:17:56.798264 7f78f90006c0 Compacted 1@1 + 1@2 files => 14928 bytes
+2024/04/25-23:17:56.805819 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.806009 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.806246 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.829790 7f78f90006c0 Manual compaction at level-1 from '!items!xlyFCQClBZ1N3O1B' @ 34 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
diff --git a/packs/metiers/MANIFEST-000166 b/packs/metiers/MANIFEST-000166
deleted file mode 100644
index 2d8b8bb..0000000
Binary files a/packs/metiers/MANIFEST-000166 and /dev/null differ
diff --git a/packs/metiers/MANIFEST-000195 b/packs/metiers/MANIFEST-000195
new file mode 100644
index 0000000..a61ae20
Binary files /dev/null and b/packs/metiers/MANIFEST-000195 differ
diff --git a/packs/origines/000005.ldb b/packs/origines/000005.ldb
deleted file mode 100644
index 3b79b4b..0000000
Binary files a/packs/origines/000005.ldb and /dev/null differ
diff --git a/packs/origines/000194.ldb b/packs/origines/000194.ldb
new file mode 100644
index 0000000..517b5e2
Binary files /dev/null and b/packs/origines/000194.ldb differ
diff --git a/packs/origines/000168.log b/packs/origines/000197.log
similarity index 100%
rename from packs/origines/000168.log
rename to packs/origines/000197.log
diff --git a/packs/origines/CURRENT b/packs/origines/CURRENT
index 830373b..6504cac 100644
--- a/packs/origines/CURRENT
+++ b/packs/origines/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/origines/LOG b/packs/origines/LOG
index 42bac3d..2b95644 100644
--- a/packs/origines/LOG
+++ b/packs/origines/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.317992 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.328712 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.328797 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.853852 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.853876 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.861390 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.874801 7f38a10006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.874834 7f38a10006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.653541 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.665587 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.665693 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:31:59.878272 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.878321 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.913563 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.950389 7f08310006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.950473 7f08310006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
diff --git a/packs/origines/LOG.old b/packs/origines/LOG.old
index ca1aab4..a5d377f 100644
--- a/packs/origines/LOG.old
+++ b/packs/origines/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.887357 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.897273 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.897357 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.834020 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.834050 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.841338 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.847601 7fc3938006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.847635 7fc3938006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.835252 7f78fb4006c0 Recovering log #188
+2024/04/25-22:03:44.844890 7f78fb4006c0 Delete type=3 #186
+2024/04/25-22:03:44.844947 7f78fb4006c0 Delete type=0 #188
+2024/04/25-23:17:56.657844 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.661522 7f78f90006c0 Level-0 table #193: 9292 bytes OK
+2024/04/25-23:17:56.668102 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.689993 7f78f90006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.702314 7f78f90006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at '!items!yBvkQb9S64s908sR' @ 40 : 1
+2024/04/25-23:17:56.702334 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.706532 7f78f90006c0 Generated table #194@1: 20 keys, 9292 bytes
+2024/04/25-23:17:56.706587 7f78f90006c0 Compacted 1@1 + 1@2 files => 9292 bytes
+2024/04/25-23:17:56.712971 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.713170 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.713410 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.736260 7f78f90006c0 Manual compaction at level-1 from '!items!yBvkQb9S64s908sR' @ 40 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
diff --git a/packs/origines/MANIFEST-000166 b/packs/origines/MANIFEST-000166
deleted file mode 100644
index d51d48e..0000000
Binary files a/packs/origines/MANIFEST-000166 and /dev/null differ
diff --git a/packs/origines/MANIFEST-000195 b/packs/origines/MANIFEST-000195
new file mode 100644
index 0000000..7249487
Binary files /dev/null and b/packs/origines/MANIFEST-000195 differ
diff --git a/packs/pnj-creatures/000015.ldb b/packs/pnj-creatures/000015.ldb
deleted file mode 100644
index f148af2..0000000
Binary files a/packs/pnj-creatures/000015.ldb and /dev/null differ
diff --git a/packs/pnj-creatures/000090.ldb b/packs/pnj-creatures/000090.ldb
new file mode 100644
index 0000000..956daca
Binary files /dev/null and b/packs/pnj-creatures/000090.ldb differ
diff --git a/packs/pnj-creatures/000064.log b/packs/pnj-creatures/000093.log
similarity index 100%
rename from packs/pnj-creatures/000064.log
rename to packs/pnj-creatures/000093.log
diff --git a/packs/pnj-creatures/CURRENT b/packs/pnj-creatures/CURRENT
index 5ca571d..00f4669 100644
--- a/packs/pnj-creatures/CURRENT
+++ b/packs/pnj-creatures/CURRENT
@@ -1 +1 @@
-MANIFEST-000062
+MANIFEST-000091
diff --git a/packs/pnj-creatures/LOG b/packs/pnj-creatures/LOG
index cbf40b4..9c5567b 100644
--- a/packs/pnj-creatures/LOG
+++ b/packs/pnj-creatures/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.212633 7f38a20006c0 Recovering log #60
-2024/04/05-22:32:00.222206 7f38a20006c0 Delete type=3 #58
-2024/04/05-22:32:00.222297 7f38a20006c0 Delete type=0 #60
-2024/04/05-22:32:55.801427 7f38a10006c0 Level-0 table #65: started
-2024/04/05-22:32:55.801455 7f38a10006c0 Level-0 table #65: 0 bytes OK
-2024/04/05-22:32:55.808908 7f38a10006c0 Delete type=0 #63
-2024/04/05-22:32:55.819661 7f38a10006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.819687 7f38a10006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.542505 7f0832a006c0 Recovering log #88
+2024/04/25-23:18:20.553330 7f0832a006c0 Delete type=3 #86
+2024/04/25-23:18:20.553446 7f0832a006c0 Delete type=0 #88
+2024/04/25-23:31:59.654488 7f08310006c0 Level-0 table #94: started
+2024/04/25-23:31:59.654563 7f08310006c0 Level-0 table #94: 0 bytes OK
+2024/04/25-23:31:59.691350 7f08310006c0 Delete type=0 #92
+2024/04/25-23:31:59.691614 7f08310006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.807584 7f08310006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
diff --git a/packs/pnj-creatures/LOG.old b/packs/pnj-creatures/LOG.old
index c770f05..449a46d 100644
--- a/packs/pnj-creatures/LOG.old
+++ b/packs/pnj-creatures/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.799853 7fc398c006c0 Recovering log #56
-2024/04/05-10:33:10.810380 7fc398c006c0 Delete type=3 #54
-2024/04/05-10:33:10.810447 7fc398c006c0 Delete type=0 #56
-2024/04/05-10:37:42.776069 7fc3938006c0 Level-0 table #61: started
-2024/04/05-10:37:42.776136 7fc3938006c0 Level-0 table #61: 0 bytes OK
-2024/04/05-10:37:42.782798 7fc3938006c0 Delete type=0 #59
-2024/04/05-10:37:42.782925 7fc3938006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.793116 7fc3938006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.727571 7f78fa0006c0 Recovering log #84
+2024/04/25-22:03:44.737860 7f78fa0006c0 Delete type=3 #82
+2024/04/25-22:03:44.737921 7f78fa0006c0 Delete type=0 #84
+2024/04/25-23:17:56.553677 7f78f90006c0 Level-0 table #89: started
+2024/04/25-23:17:56.565474 7f78f90006c0 Level-0 table #89: 424873 bytes OK
+2024/04/25-23:17:56.571664 7f78f90006c0 Delete type=0 #87
+2024/04/25-23:17:56.593711 7f78f90006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.604145 7f78f90006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 1383 : 1
+2024/04/25-23:17:56.604159 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.616841 7f78f90006c0 Generated table #90@1: 694 keys, 425338 bytes
+2024/04/25-23:17:56.616878 7f78f90006c0 Compacted 1@1 + 1@2 files => 425338 bytes
+2024/04/25-23:17:56.623058 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.623248 7f78f90006c0 Delete type=2 #15
+2024/04/25-23:17:56.623623 7f78f90006c0 Delete type=2 #89
+2024/04/25-23:17:56.646323 7f78f90006c0 Manual compaction at level-1 from '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 1383 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
diff --git a/packs/pnj-creatures/MANIFEST-000062 b/packs/pnj-creatures/MANIFEST-000062
deleted file mode 100644
index 2c73bb8..0000000
Binary files a/packs/pnj-creatures/MANIFEST-000062 and /dev/null differ
diff --git a/packs/pnj-creatures/MANIFEST-000091 b/packs/pnj-creatures/MANIFEST-000091
new file mode 100644
index 0000000..69cac41
Binary files /dev/null and b/packs/pnj-creatures/MANIFEST-000091 differ
diff --git a/packs/protection/000005.ldb b/packs/protection/000005.ldb
deleted file mode 100644
index 26a6204..0000000
Binary files a/packs/protection/000005.ldb and /dev/null differ
diff --git a/packs/protection/000194.ldb b/packs/protection/000194.ldb
new file mode 100644
index 0000000..3ddd877
Binary files /dev/null and b/packs/protection/000194.ldb differ
diff --git a/packs/protection/000168.log b/packs/protection/000197.log
similarity index 100%
rename from packs/protection/000168.log
rename to packs/protection/000197.log
diff --git a/packs/protection/CURRENT b/packs/protection/CURRENT
index 830373b..6504cac 100644
--- a/packs/protection/CURRENT
+++ b/packs/protection/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/protection/LOG b/packs/protection/LOG
index 29d6ac5..b1f4eaf 100644
--- a/packs/protection/LOG
+++ b/packs/protection/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.276534 7f38a34006c0 Recovering log #164
-2024/04/05-22:32:00.287282 7f38a34006c0 Delete type=3 #162
-2024/04/05-22:32:00.287341 7f38a34006c0 Delete type=0 #164
-2024/04/05-22:32:55.840890 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.840916 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.847282 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.847457 7f38a10006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.847477 7f38a10006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.610323 7f0833e006c0 Recovering log #192
+2024/04/25-23:18:20.622545 7f0833e006c0 Delete type=3 #190
+2024/04/25-23:18:20.622654 7f0833e006c0 Delete type=0 #192
+2024/04/25-23:31:59.733906 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.734001 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.770187 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.807670 7f08310006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.807915 7f08310006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
diff --git a/packs/protection/LOG.old b/packs/protection/LOG.old
index 7c4464c..3ddf00a 100644
--- a/packs/protection/LOG.old
+++ b/packs/protection/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.851390 7fc3996006c0 Recovering log #160
-2024/04/05-10:33:10.861354 7fc3996006c0 Delete type=3 #158
-2024/04/05-10:33:10.861468 7fc3996006c0 Delete type=0 #160
-2024/04/05-10:37:42.807302 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.807334 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.813306 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.820853 7fc3938006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.820887 7fc3938006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.793150 7f78fbe006c0 Recovering log #188
+2024/04/25-22:03:44.803271 7f78fbe006c0 Delete type=3 #186
+2024/04/25-22:03:44.803377 7f78fbe006c0 Delete type=0 #188
+2024/04/25-23:17:56.679571 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.683127 7f78f90006c0 Level-0 table #193: 2847 bytes OK
+2024/04/25-23:17:56.689699 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.690037 7f78f90006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.725109 7f78f90006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at '!items!veoS6Gtzj6Dq087V' @ 14 : 1
+2024/04/25-23:17:56.725132 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.729034 7f78f90006c0 Generated table #194@1: 7 keys, 2847 bytes
+2024/04/25-23:17:56.729087 7f78f90006c0 Compacted 1@1 + 1@2 files => 2847 bytes
+2024/04/25-23:17:56.735693 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.735874 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.736084 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.736304 7f78f90006c0 Manual compaction at level-1 from '!items!veoS6Gtzj6Dq087V' @ 14 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
diff --git a/packs/protection/MANIFEST-000166 b/packs/protection/MANIFEST-000166
deleted file mode 100644
index 3aff65c..0000000
Binary files a/packs/protection/MANIFEST-000166 and /dev/null differ
diff --git a/packs/protection/MANIFEST-000195 b/packs/protection/MANIFEST-000195
new file mode 100644
index 0000000..10a8182
Binary files /dev/null and b/packs/protection/MANIFEST-000195 differ
diff --git a/packs/runes/000005.ldb b/packs/runes/000005.ldb
deleted file mode 100644
index 64dcb1a..0000000
Binary files a/packs/runes/000005.ldb and /dev/null differ
diff --git a/packs/runes/000194.ldb b/packs/runes/000194.ldb
new file mode 100644
index 0000000..843bbe8
Binary files /dev/null and b/packs/runes/000194.ldb differ
diff --git a/packs/runes/000168.log b/packs/runes/000197.log
similarity index 100%
rename from packs/runes/000168.log
rename to packs/runes/000197.log
diff --git a/packs/runes/CURRENT b/packs/runes/CURRENT
index 830373b..6504cac 100644
--- a/packs/runes/CURRENT
+++ b/packs/runes/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/runes/LOG b/packs/runes/LOG
index 9c9a279..ae773ad 100644
--- a/packs/runes/LOG
+++ b/packs/runes/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.392182 7f38a34006c0 Recovering log #164
-2024/04/05-22:32:00.401887 7f38a34006c0 Delete type=3 #162
-2024/04/05-22:32:00.401955 7f38a34006c0 Delete type=0 #164
-2024/04/05-22:32:55.895639 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.895662 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.901785 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.902096 7f38a10006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.902124 7f38a10006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.771521 7f0833e006c0 Recovering log #192
+2024/04/25-23:18:20.782849 7f0833e006c0 Delete type=3 #190
+2024/04/25-23:18:20.782970 7f0833e006c0 Delete type=0 #192
+2024/04/25-23:32:00.061611 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:32:00.061677 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:32:00.097976 7f08310006c0 Delete type=0 #196
+2024/04/25-23:32:00.098231 7f08310006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.098275 7f08310006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
diff --git a/packs/runes/LOG.old b/packs/runes/LOG.old
index a174338..a6149e3 100644
--- a/packs/runes/LOG.old
+++ b/packs/runes/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.949868 7fc3996006c0 Recovering log #160
-2024/04/05-10:33:10.960580 7fc3996006c0 Delete type=3 #158
-2024/04/05-10:33:10.960639 7fc3996006c0 Delete type=0 #160
-2024/04/05-10:37:42.868075 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.868101 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.874969 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.875258 7fc3938006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.875328 7fc3938006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.942647 7f78fbe006c0 Recovering log #188
+2024/04/25-22:03:44.952273 7f78fbe006c0 Delete type=3 #186
+2024/04/25-22:03:44.952331 7f78fbe006c0 Delete type=0 #188
+2024/04/25-23:17:56.829965 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.834429 7f78f90006c0 Level-0 table #193: 33589 bytes OK
+2024/04/25-23:17:56.841621 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.877068 7f78f90006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.877166 7f78f90006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at '!items!xnCf2xIPzdsUoBTy' @ 90 : 1
+2024/04/25-23:17:56.877183 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.882808 7f78f90006c0 Generated table #194@1: 45 keys, 33589 bytes
+2024/04/25-23:17:56.882860 7f78f90006c0 Compacted 1@1 + 1@2 files => 33589 bytes
+2024/04/25-23:17:56.889362 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.889490 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.889707 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.919312 7f78f90006c0 Manual compaction at level-1 from '!items!xnCf2xIPzdsUoBTy' @ 90 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
diff --git a/packs/runes/MANIFEST-000166 b/packs/runes/MANIFEST-000166
deleted file mode 100644
index 9fbe027..0000000
Binary files a/packs/runes/MANIFEST-000166 and /dev/null differ
diff --git a/packs/runes/MANIFEST-000195 b/packs/runes/MANIFEST-000195
new file mode 100644
index 0000000..86e290f
Binary files /dev/null and b/packs/runes/MANIFEST-000195 differ
diff --git a/packs/scenes/000051.ldb b/packs/scenes/000051.ldb
deleted file mode 100644
index 1b71a83..0000000
Binary files a/packs/scenes/000051.ldb and /dev/null differ
diff --git a/packs/scenes/000110.ldb b/packs/scenes/000110.ldb
new file mode 100644
index 0000000..b95d952
Binary files /dev/null and b/packs/scenes/000110.ldb differ
diff --git a/packs/scenes/000084.log b/packs/scenes/000113.log
similarity index 100%
rename from packs/scenes/000084.log
rename to packs/scenes/000113.log
diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT
index d4b9a0f..0e66324 100644
--- a/packs/scenes/CURRENT
+++ b/packs/scenes/CURRENT
@@ -1 +1 @@
-MANIFEST-000082
+MANIFEST-000111
diff --git a/packs/scenes/LOG b/packs/scenes/LOG
index c2416fa..8ad7d46 100644
--- a/packs/scenes/LOG
+++ b/packs/scenes/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.418976 7f38a34006c0 Recovering log #80
-2024/04/05-22:32:00.429111 7f38a34006c0 Delete type=3 #78
-2024/04/05-22:32:00.429196 7f38a34006c0 Delete type=0 #80
-2024/04/05-22:32:55.908848 7f38a10006c0 Level-0 table #85: started
-2024/04/05-22:32:55.908902 7f38a10006c0 Level-0 table #85: 0 bytes OK
-2024/04/05-22:32:55.915681 7f38a10006c0 Delete type=0 #83
-2024/04/05-22:32:55.915862 7f38a10006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.915878 7f38a10006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.802683 7f0833e006c0 Recovering log #108
+2024/04/25-23:18:20.813089 7f0833e006c0 Delete type=3 #106
+2024/04/25-23:18:20.813231 7f0833e006c0 Delete type=0 #108
+2024/04/25-23:32:00.135709 7f08310006c0 Level-0 table #114: started
+2024/04/25-23:32:00.135776 7f08310006c0 Level-0 table #114: 0 bytes OK
+2024/04/25-23:32:00.192118 7f08310006c0 Delete type=0 #112
+2024/04/25-23:32:00.192474 7f08310006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.192524 7f08310006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old
index 6a0ad35..01402c0 100644
--- a/packs/scenes/LOG.old
+++ b/packs/scenes/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.975053 7fc3996006c0 Recovering log #76
-2024/04/05-10:33:10.985213 7fc3996006c0 Delete type=3 #74
-2024/04/05-10:33:10.985285 7fc3996006c0 Delete type=0 #76
-2024/04/05-10:37:42.881876 7fc3938006c0 Level-0 table #81: started
-2024/04/05-10:37:42.881906 7fc3938006c0 Level-0 table #81: 0 bytes OK
-2024/04/05-10:37:42.889098 7fc3938006c0 Delete type=0 #79
-2024/04/05-10:37:42.889473 7fc3938006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.889524 7fc3938006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.972308 7f78fa0006c0 Recovering log #104
+2024/04/25-22:03:44.983385 7f78fa0006c0 Delete type=3 #102
+2024/04/25-22:03:44.983533 7f78fa0006c0 Delete type=0 #104
+2024/04/25-23:17:56.866744 7f78f90006c0 Level-0 table #109: started
+2024/04/25-23:17:56.870242 7f78f90006c0 Level-0 table #109: 1378 bytes OK
+2024/04/25-23:17:56.876818 7f78f90006c0 Delete type=0 #107
+2024/04/25-23:17:56.877139 7f78f90006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.901681 7f78f90006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at '!scenes!ZDV2IwduhOXTxy72' @ 2 : 1
+2024/04/25-23:17:56.901697 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.905023 7f78f90006c0 Generated table #110@1: 1 keys, 1378 bytes
+2024/04/25-23:17:56.905059 7f78f90006c0 Compacted 1@1 + 1@2 files => 1378 bytes
+2024/04/25-23:17:56.911287 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.911440 7f78f90006c0 Delete type=2 #51
+2024/04/25-23:17:56.911672 7f78f90006c0 Delete type=2 #109
+2024/04/25-23:17:56.919364 7f78f90006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 2 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
diff --git a/packs/scenes/MANIFEST-000082 b/packs/scenes/MANIFEST-000082
deleted file mode 100644
index 0870fa2..0000000
Binary files a/packs/scenes/MANIFEST-000082 and /dev/null differ
diff --git a/packs/scenes/MANIFEST-000111 b/packs/scenes/MANIFEST-000111
new file mode 100644
index 0000000..40a10b0
Binary files /dev/null and b/packs/scenes/MANIFEST-000111 differ
diff --git a/packs/skills-creatures/000005.ldb b/packs/skills-creatures/000005.ldb
deleted file mode 100644
index 7182f32..0000000
Binary files a/packs/skills-creatures/000005.ldb and /dev/null differ
diff --git a/packs/skills-creatures/000102.ldb b/packs/skills-creatures/000102.ldb
new file mode 100644
index 0000000..494b337
Binary files /dev/null and b/packs/skills-creatures/000102.ldb differ
diff --git a/packs/skills-creatures/000076.log b/packs/skills-creatures/000105.log
similarity index 100%
rename from packs/skills-creatures/000076.log
rename to packs/skills-creatures/000105.log
diff --git a/packs/skills-creatures/CURRENT b/packs/skills-creatures/CURRENT
index f8d57cc..1fb45e8 100644
--- a/packs/skills-creatures/CURRENT
+++ b/packs/skills-creatures/CURRENT
@@ -1 +1 @@
-MANIFEST-000074
+MANIFEST-000103
diff --git a/packs/skills-creatures/LOG b/packs/skills-creatures/LOG
index 5dbf228..16d3a31 100644
--- a/packs/skills-creatures/LOG
+++ b/packs/skills-creatures/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.250297 7f38a34006c0 Recovering log #72
-2024/04/05-22:32:00.260214 7f38a34006c0 Delete type=3 #70
-2024/04/05-22:32:00.260274 7f38a34006c0 Delete type=0 #72
-2024/04/05-22:32:55.819818 7f38a10006c0 Level-0 table #77: started
-2024/04/05-22:32:55.819849 7f38a10006c0 Level-0 table #77: 0 bytes OK
-2024/04/05-22:32:55.827482 7f38a10006c0 Delete type=0 #75
-2024/04/05-22:32:55.847412 7f38a10006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.847448 7f38a10006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.580223 7f0833e006c0 Recovering log #100
+2024/04/25-23:18:20.591502 7f0833e006c0 Delete type=3 #98
+2024/04/25-23:18:20.591624 7f0833e006c0 Delete type=0 #100
+2024/04/25-23:31:59.691806 7f08310006c0 Level-0 table #106: started
+2024/04/25-23:31:59.691866 7f08310006c0 Level-0 table #106: 0 bytes OK
+2024/04/25-23:31:59.733591 7f08310006c0 Delete type=0 #104
+2024/04/25-23:31:59.807634 7f08310006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.807869 7f08310006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
diff --git a/packs/skills-creatures/LOG.old b/packs/skills-creatures/LOG.old
index 515b201..08dc96a 100644
--- a/packs/skills-creatures/LOG.old
+++ b/packs/skills-creatures/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.827250 7fc3996006c0 Recovering log #68
-2024/04/05-10:33:10.836850 7fc3996006c0 Delete type=3 #66
-2024/04/05-10:33:10.836938 7fc3996006c0 Delete type=0 #68
-2024/04/05-10:37:42.800320 7fc3938006c0 Level-0 table #73: started
-2024/04/05-10:37:42.800361 7fc3938006c0 Level-0 table #73: 0 bytes OK
-2024/04/05-10:37:42.807171 7fc3938006c0 Delete type=0 #71
-2024/04/05-10:37:42.820825 7fc3938006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.820871 7fc3938006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.764878 7f78fa0006c0 Recovering log #96
+2024/04/25-22:03:44.774545 7f78fa0006c0 Delete type=3 #94
+2024/04/25-22:03:44.774662 7f78fa0006c0 Delete type=0 #96
+2024/04/25-23:17:56.543258 7f78f90006c0 Level-0 table #101: started
+2024/04/25-23:17:56.546957 7f78f90006c0 Level-0 table #101: 3822 bytes OK
+2024/04/25-23:17:56.553493 7f78f90006c0 Delete type=0 #99
+2024/04/25-23:17:56.593687 7f78f90006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.593774 7f78f90006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at '!items!t692JcsGHG4YJIlM' @ 25 : 1
+2024/04/25-23:17:56.593788 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.597203 7f78f90006c0 Generated table #102@1: 8 keys, 3822 bytes
+2024/04/25-23:17:56.597262 7f78f90006c0 Compacted 1@1 + 1@2 files => 3822 bytes
+2024/04/25-23:17:56.603681 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.603829 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.604034 7f78f90006c0 Delete type=2 #101
+2024/04/25-23:17:56.646304 7f78f90006c0 Manual compaction at level-1 from '!items!t692JcsGHG4YJIlM' @ 25 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
diff --git a/packs/skills-creatures/MANIFEST-000074 b/packs/skills-creatures/MANIFEST-000074
deleted file mode 100644
index 375ee82..0000000
Binary files a/packs/skills-creatures/MANIFEST-000074 and /dev/null differ
diff --git a/packs/skills-creatures/MANIFEST-000103 b/packs/skills-creatures/MANIFEST-000103
new file mode 100644
index 0000000..0790f25
Binary files /dev/null and b/packs/skills-creatures/MANIFEST-000103 differ
diff --git a/packs/skills/000005.ldb b/packs/skills/000005.ldb
deleted file mode 100644
index 0e2fcef..0000000
Binary files a/packs/skills/000005.ldb and /dev/null differ
diff --git a/packs/skills/000194.ldb b/packs/skills/000194.ldb
new file mode 100644
index 0000000..2fc564c
Binary files /dev/null and b/packs/skills/000194.ldb differ
diff --git a/packs/skills/000168.log b/packs/skills/000197.log
similarity index 100%
rename from packs/skills/000168.log
rename to packs/skills/000197.log
diff --git a/packs/skills/CURRENT b/packs/skills/CURRENT
index 830373b..6504cac 100644
--- a/packs/skills/CURRENT
+++ b/packs/skills/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/skills/LOG b/packs/skills/LOG
index ff43c50..67050d0 100644
--- a/packs/skills/LOG
+++ b/packs/skills/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.235905 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.247273 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.247388 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.833815 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.833839 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.840764 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.847437 7f38a10006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.847470 7f38a10006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.564492 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.576603 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.576708 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:31:59.612869 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.612922 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.654250 7f08310006c0 Delete type=0 #196
+2024/04/25-23:31:59.691593 7f08310006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+2024/04/25-23:31:59.691665 7f08310006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
diff --git a/packs/skills/LOG.old b/packs/skills/LOG.old
index 4c19ad7..6b88a7a 100644
--- a/packs/skills/LOG.old
+++ b/packs/skills/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.815378 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.825596 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.825674 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.793134 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.793174 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.800105 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.813427 7fc3938006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.820841 7fc3938006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.750024 7f78faa006c0 Recovering log #188
+2024/04/25-22:03:44.760694 7f78faa006c0 Delete type=3 #186
+2024/04/25-22:03:44.760755 7f78faa006c0 Delete type=0 #188
+2024/04/25-23:17:56.572109 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.575643 7f78f90006c0 Level-0 table #193: 8008 bytes OK
+2024/04/25-23:17:56.582835 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.593728 7f78f90006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.623881 7f78f90006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at '!items!tq6mEgXog7h4VyWk' @ 30 : 1
+2024/04/25-23:17:56.623901 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.627852 7f78f90006c0 Generated table #194@1: 15 keys, 8008 bytes
+2024/04/25-23:17:56.627901 7f78f90006c0 Compacted 1@1 + 1@2 files => 8008 bytes
+2024/04/25-23:17:56.634883 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.635088 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.635377 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.646338 7f78f90006c0 Manual compaction at level-1 from '!items!tq6mEgXog7h4VyWk' @ 30 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
diff --git a/packs/skills/MANIFEST-000166 b/packs/skills/MANIFEST-000166
deleted file mode 100644
index 1128221..0000000
Binary files a/packs/skills/MANIFEST-000166 and /dev/null differ
diff --git a/packs/skills/MANIFEST-000195 b/packs/skills/MANIFEST-000195
new file mode 100644
index 0000000..217fedd
Binary files /dev/null and b/packs/skills/MANIFEST-000195 differ
diff --git a/packs/tables/000005.ldb b/packs/tables/000005.ldb
deleted file mode 100644
index 977e25a..0000000
Binary files a/packs/tables/000005.ldb and /dev/null differ
diff --git a/packs/tables/000194.ldb b/packs/tables/000194.ldb
new file mode 100644
index 0000000..8ecfbb2
Binary files /dev/null and b/packs/tables/000194.ldb differ
diff --git a/packs/tables/000168.log b/packs/tables/000197.log
similarity index 100%
rename from packs/tables/000168.log
rename to packs/tables/000197.log
diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT
index 830373b..6504cac 100644
--- a/packs/tables/CURRENT
+++ b/packs/tables/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/tables/LOG b/packs/tables/LOG
index d9f7de4..5038f66 100644
--- a/packs/tables/LOG
+++ b/packs/tables/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.405440 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.415993 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.416069 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.902209 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.902235 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.908619 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.915844 7f38a10006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.915886 7f38a10006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.786257 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.798264 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.798397 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:32:00.098348 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:32:00.098387 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:32:00.135443 7f08310006c0 Delete type=0 #196
+2024/04/25-23:32:00.192409 7f08310006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.192496 7f08310006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old
index c2c65df..872f862 100644
--- a/packs/tables/LOG.old
+++ b/packs/tables/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.963307 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.972775 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.972828 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.875442 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.875492 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.881722 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.889396 7fc3938006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.889501 7fc3938006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.956443 7f78faa006c0 Recovering log #188
+2024/04/25-22:03:44.967829 7f78faa006c0 Delete type=3 #186
+2024/04/25-22:03:44.967938 7f78faa006c0 Delete type=0 #188
+2024/04/25-23:17:56.841894 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.846015 7f78f90006c0 Level-0 table #193: 3107 bytes OK
+2024/04/25-23:17:56.853166 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.877097 7f78f90006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.889911 7f78f90006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 41 : 1
+2024/04/25-23:17:56.889933 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.893756 7f78f90006c0 Generated table #194@1: 21 keys, 3107 bytes
+2024/04/25-23:17:56.893793 7f78f90006c0 Compacted 1@1 + 1@2 files => 3107 bytes
+2024/04/25-23:17:56.901188 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.901353 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.901544 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.919346 7f78f90006c0 Manual compaction at level-1 from '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 41 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
diff --git a/packs/tables/MANIFEST-000166 b/packs/tables/MANIFEST-000166
deleted file mode 100644
index 6ecfb84..0000000
Binary files a/packs/tables/MANIFEST-000166 and /dev/null differ
diff --git a/packs/tables/MANIFEST-000195 b/packs/tables/MANIFEST-000195
new file mode 100644
index 0000000..36719a8
Binary files /dev/null and b/packs/tables/MANIFEST-000195 differ
diff --git a/packs/tendances/000005.ldb b/packs/tendances/000005.ldb
deleted file mode 100644
index 0e5783e..0000000
Binary files a/packs/tendances/000005.ldb and /dev/null differ
diff --git a/packs/tendances/000194.ldb b/packs/tendances/000194.ldb
new file mode 100644
index 0000000..7acd8ea
Binary files /dev/null and b/packs/tendances/000194.ldb differ
diff --git a/packs/tendances/000168.log b/packs/tendances/000197.log
similarity index 100%
rename from packs/tendances/000168.log
rename to packs/tendances/000197.log
diff --git a/packs/tendances/CURRENT b/packs/tendances/CURRENT
index 830373b..6504cac 100644
--- a/packs/tendances/CURRENT
+++ b/packs/tendances/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/tendances/LOG b/packs/tendances/LOG
index f923dad..d57b858 100644
--- a/packs/tendances/LOG
+++ b/packs/tendances/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.364389 7f38a34006c0 Recovering log #164
-2024/04/05-22:32:00.374553 7f38a34006c0 Delete type=3 #162
-2024/04/05-22:32:00.374622 7f38a34006c0 Delete type=0 #164
-2024/04/05-22:32:55.874924 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.874951 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.881363 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.902037 7f38a10006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.902104 7f38a10006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.743079 7f0833e006c0 Recovering log #192
+2024/04/25-23:18:20.753869 7f0833e006c0 Delete type=3 #190
+2024/04/25-23:18:20.754013 7f0833e006c0 Delete type=0 #192
+2024/04/25-23:31:59.950606 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:31:59.950667 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:31:59.987252 7f08310006c0 Delete type=0 #196
+2024/04/25-23:32:00.098162 7f08310006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.098217 7f08310006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
diff --git a/packs/tendances/LOG.old b/packs/tendances/LOG.old
index 4241f23..0587164 100644
--- a/packs/tendances/LOG.old
+++ b/packs/tendances/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.924241 7fc3996006c0 Recovering log #160
-2024/04/05-10:33:10.934847 7fc3996006c0 Delete type=3 #158
-2024/04/05-10:33:10.934919 7fc3996006c0 Delete type=0 #160
-2024/04/05-10:37:42.847723 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.847747 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.855211 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.875186 7fc3938006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.875278 7fc3938006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.876077 7f78fa0006c0 Recovering log #188
+2024/04/25-22:03:44.886138 7f78fa0006c0 Delete type=3 #186
+2024/04/25-22:03:44.886195 7f78fa0006c0 Delete type=0 #188
+2024/04/25-23:17:56.758780 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.763569 7f78f90006c0 Level-0 table #193: 26223 bytes OK
+2024/04/25-23:17:56.770237 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.781882 7f78f90006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.806434 7f78f90006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at '!items!zhPPsmTtLv7cyNHJ' @ 110 : 1
+2024/04/25-23:17:56.806458 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.810923 7f78f90006c0 Generated table #194@1: 55 keys, 26223 bytes
+2024/04/25-23:17:56.810957 7f78f90006c0 Compacted 1@1 + 1@2 files => 26223 bytes
+2024/04/25-23:17:56.817259 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.817489 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.817761 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.829823 7f78f90006c0 Manual compaction at level-1 from '!items!zhPPsmTtLv7cyNHJ' @ 110 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
diff --git a/packs/tendances/MANIFEST-000166 b/packs/tendances/MANIFEST-000166
deleted file mode 100644
index bf06d21..0000000
Binary files a/packs/tendances/MANIFEST-000166 and /dev/null differ
diff --git a/packs/tendances/MANIFEST-000195 b/packs/tendances/MANIFEST-000195
new file mode 100644
index 0000000..1eaea14
Binary files /dev/null and b/packs/tendances/MANIFEST-000195 differ
diff --git a/packs/traits-chaotiques/000005.ldb b/packs/traits-chaotiques/000005.ldb
deleted file mode 100644
index d78ff48..0000000
Binary files a/packs/traits-chaotiques/000005.ldb and /dev/null differ
diff --git a/packs/traits-chaotiques/000194.ldb b/packs/traits-chaotiques/000194.ldb
new file mode 100644
index 0000000..812bf3d
Binary files /dev/null and b/packs/traits-chaotiques/000194.ldb differ
diff --git a/packs/traits-chaotiques/000168.log b/packs/traits-chaotiques/000197.log
similarity index 100%
rename from packs/traits-chaotiques/000168.log
rename to packs/traits-chaotiques/000197.log
diff --git a/packs/traits-chaotiques/CURRENT b/packs/traits-chaotiques/CURRENT
index 830373b..6504cac 100644
--- a/packs/traits-chaotiques/CURRENT
+++ b/packs/traits-chaotiques/CURRENT
@@ -1 +1 @@
-MANIFEST-000166
+MANIFEST-000195
diff --git a/packs/traits-chaotiques/LOG b/packs/traits-chaotiques/LOG
index 251fe85..49f7a37 100644
--- a/packs/traits-chaotiques/LOG
+++ b/packs/traits-chaotiques/LOG
@@ -1,8 +1,8 @@
-2024/04/05-22:32:00.378177 7f38a20006c0 Recovering log #164
-2024/04/05-22:32:00.388636 7f38a20006c0 Delete type=3 #162
-2024/04/05-22:32:00.388706 7f38a20006c0 Delete type=0 #164
-2024/04/05-22:32:55.887853 7f38a10006c0 Level-0 table #169: started
-2024/04/05-22:32:55.887878 7f38a10006c0 Level-0 table #169: 0 bytes OK
-2024/04/05-22:32:55.895508 7f38a10006c0 Delete type=0 #167
-2024/04/05-22:32:55.902085 7f38a10006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
-2024/04/05-22:32:55.902117 7f38a10006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+2024/04/25-23:18:20.757862 7f0832a006c0 Recovering log #192
+2024/04/25-23:18:20.768717 7f0832a006c0 Delete type=3 #190
+2024/04/25-23:18:20.768873 7f0832a006c0 Delete type=0 #192
+2024/04/25-23:32:00.025340 7f08310006c0 Level-0 table #198: started
+2024/04/25-23:32:00.025408 7f08310006c0 Level-0 table #198: 0 bytes OK
+2024/04/25-23:32:00.061325 7f08310006c0 Delete type=0 #196
+2024/04/25-23:32:00.098201 7f08310006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+2024/04/25-23:32:00.098291 7f08310006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
diff --git a/packs/traits-chaotiques/LOG.old b/packs/traits-chaotiques/LOG.old
index f6d1d7a..e29a948 100644
--- a/packs/traits-chaotiques/LOG.old
+++ b/packs/traits-chaotiques/LOG.old
@@ -1,8 +1,15 @@
-2024/04/05-10:33:10.937107 7fc398c006c0 Recovering log #160
-2024/04/05-10:33:10.947340 7fc398c006c0 Delete type=3 #158
-2024/04/05-10:33:10.947420 7fc398c006c0 Delete type=0 #160
-2024/04/05-10:37:42.861464 7fc3938006c0 Level-0 table #165: started
-2024/04/05-10:37:42.861492 7fc3938006c0 Level-0 table #165: 0 bytes OK
-2024/04/05-10:37:42.867949 7fc3938006c0 Delete type=0 #163
-2024/04/05-10:37:42.875237 7fc3938006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
-2024/04/05-10:37:42.875311 7fc3938006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+2024/04/25-22:03:44.889861 7f78fb4006c0 Recovering log #188
+2024/04/25-22:03:44.939377 7f78fb4006c0 Delete type=3 #186
+2024/04/25-22:03:44.939435 7f78fb4006c0 Delete type=0 #188
+2024/04/25-23:17:56.770456 7f78f90006c0 Level-0 table #193: started
+2024/04/25-23:17:56.774175 7f78f90006c0 Level-0 table #193: 11163 bytes OK
+2024/04/25-23:17:56.781454 7f78f90006c0 Delete type=0 #191
+2024/04/25-23:17:56.781909 7f78f90006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+2024/04/25-23:17:56.817916 7f78f90006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at '!items!zeOtWz6oscp8Su5l' @ 40 : 1
+2024/04/25-23:17:56.817952 7f78f90006c0 Compacting 1@1 + 1@2 files
+2024/04/25-23:17:56.822276 7f78f90006c0 Generated table #194@1: 20 keys, 11163 bytes
+2024/04/25-23:17:56.822314 7f78f90006c0 Compacted 1@1 + 1@2 files => 11163 bytes
+2024/04/25-23:17:56.829003 7f78f90006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
+2024/04/25-23:17:56.829217 7f78f90006c0 Delete type=2 #5
+2024/04/25-23:17:56.829498 7f78f90006c0 Delete type=2 #193
+2024/04/25-23:17:56.829861 7f78f90006c0 Manual compaction at level-1 from '!items!zeOtWz6oscp8Su5l' @ 40 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
diff --git a/packs/traits-chaotiques/MANIFEST-000166 b/packs/traits-chaotiques/MANIFEST-000166
deleted file mode 100644
index d46485d..0000000
Binary files a/packs/traits-chaotiques/MANIFEST-000166 and /dev/null differ
diff --git a/packs/traits-chaotiques/MANIFEST-000195 b/packs/traits-chaotiques/MANIFEST-000195
new file mode 100644
index 0000000..b5607ea
Binary files /dev/null and b/packs/traits-chaotiques/MANIFEST-000195 differ
diff --git a/system.json b/system.json
index b1727bd..da26e6a 100644
--- a/system.json
+++ b/system.json
@@ -1,7 +1,7 @@
{
"id": "fvtt-mournblade",
"description": "Mournblade RPG for FoundryVTT",
- "version": "11.1.5",
+ "version": "12.0.0",
"authors": [
{
"name": "Uberwald/LeRatierBretonnien",
@@ -23,7 +23,7 @@
"gridUnits": "m",
"license": "LICENSE.txt",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-mournblade/raw/branch/v10/system.json",
- "download": "https://www.uberwald.me/gitea/public/fvtt-mournblade/archive/fvtt-mournblade-11.1.5.zip",
+ "download": "https://www.uberwald.me/gitea/public/fvtt-mournblade/archive/fvtt-mournblade-12.0.0.zip",
"packFolders": [
{
"name": "Mournblade",
@@ -264,7 +264,7 @@
"url": "https://www.uberwald.me/gitea/public/fvtt-mournblade",
"background": "systems/fvtt-mournblade/assets/ui/fond_mournblade.webp",
"compatibility": {
- "minimum": "10",
- "verified": "11"
+ "minimum": "11",
+ "verified": "12"
}
}
\ No newline at end of file
diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html
index 22d11ed..1ef95d2 100644
--- a/templates/actor-sheet.html
+++ b/templates/actor-sheet.html
@@ -20,9 +20,7 @@
@@ -38,9 +36,7 @@
@@ -99,9 +95,7 @@
class="roll-attribut">{{attr.label}}
{{/each}}
@@ -271,10 +265,8 @@
{{#if (ne skill.system.attribut1 "none")}}
diff --git a/templates/creature-sheet.html b/templates/creature-sheet.html
index 93277a8..9565c5c 100644
--- a/templates/creature-sheet.html
+++ b/templates/creature-sheet.html
@@ -36,9 +36,7 @@
class="roll-attribut">{{attr.label}}
{{/each}}
@@ -205,9 +203,7 @@
{{#if (ne skill.system.attribut1 "none")}}
diff --git a/templates/item-arme-sheet.html b/templates/item-arme-sheet.html
index ed108e0..d966148 100644
--- a/templates/item-arme-sheet.html
+++ b/templates/item-arme-sheet.html
@@ -13,13 +13,7 @@
diff --git a/templates/item-competence-sheet.html b/templates/item-competence-sheet.html
index 1a33a9d..2357a16 100644
--- a/templates/item-competence-sheet.html
+++ b/templates/item-competence-sheet.html
@@ -19,11 +19,7 @@
@@ -31,11 +27,7 @@
@@ -43,11 +35,7 @@
diff --git a/templates/item-don-sheet.html b/templates/item-don-sheet.html
index b722c1d..9bccc92 100644
--- a/templates/item-don-sheet.html
+++ b/templates/item-don-sheet.html
@@ -13,13 +13,7 @@
diff --git a/templates/item-modifier-sheet.html b/templates/item-modifier-sheet.html
index f7bd453..ea22ec1 100644
--- a/templates/item-modifier-sheet.html
+++ b/templates/item-modifier-sheet.html
@@ -13,11 +13,7 @@
diff --git a/templates/item-pacte-sheet.html b/templates/item-pacte-sheet.html
index 4d0587e..208a0e3 100644
--- a/templates/item-pacte-sheet.html
+++ b/templates/item-pacte-sheet.html
@@ -13,13 +13,7 @@
diff --git a/templates/item-runeeffect-sheet.html b/templates/item-runeeffect-sheet.html
index e670b31..4ee7c61 100644
--- a/templates/item-runeeffect-sheet.html
+++ b/templates/item-runeeffect-sheet.html
@@ -18,10 +18,7 @@
diff --git a/templates/item-tendance-sheet.html b/templates/item-tendance-sheet.html
index 4d0587e..208a0e3 100644
--- a/templates/item-tendance-sheet.html
+++ b/templates/item-tendance-sheet.html
@@ -13,13 +13,7 @@
diff --git a/templates/partial-list-niveau-creature.html b/templates/partial-list-niveau-creature.html
deleted file mode 100644
index 8879315..0000000
--- a/templates/partial-list-niveau-creature.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/templates/partial-list-niveau.html b/templates/partial-list-niveau.html
deleted file mode 100644
index 706f51a..0000000
--- a/templates/partial-list-niveau.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/templates/roll-dialog-generic.html b/templates/roll-dialog-generic.html
index 764ef18..1c3da02 100644
--- a/templates/roll-dialog-generic.html
+++ b/templates/roll-dialog-generic.html
@@ -13,11 +13,7 @@
Attribut
{{else}}
{{attr.label}}
@@ -41,18 +37,13 @@
Lancement