diff --git a/lang/en.json b/lang/en.json index a3015b3..03a52a0 100644 --- a/lang/en.json +++ b/lang/en.json @@ -175,6 +175,7 @@ "BOL.ui.armorAgiMalus": "Armor+Shield Modifier (Agi)", "BOL.ui.armorInitMalus": "Armor Modifier (Init)", "BOL.ui.attackValue": "Attack Value", + "BOL.ui.attackModifier": "Attack Modifier", "BOL.ui.weaponbonus": "Cette arme bénéficie déja d'un Dé de Bonus (Arme Favorite prise en compte, par exemple)", "BOL.ui.initMalus": "Init malus", "BOL.ui.creature": "Creature", @@ -214,7 +215,12 @@ "BOL.ui.horoscopeDiceRemaining": "Remaining Dice", "BOL.ui.horoscopeDiceMax": "Max Dice", "BOL.ui.astrologyNoPoints": "You do not have enough Astrology Points!", - + "BOL.ui.newEquipment": "New equipment", + "BOL.ui.newNaturalWeapon": "Natural weapon", + "BOL.ui.newNaturalProtection": "Natural protection", + "BOL.ui.createNaturalWeapon": "Create a natural weapon", + "BOL.ui.createNaturalProtection": "Create a natural protection", + "BOL.featureCategory.origins": "Origins", "BOL.featureCategory.races": "Races", "BOL.featureCategory.careers": "Careers", @@ -231,7 +237,7 @@ "BOL.featureSubtypes.language": "Language", "BOL.featureSubtypes.gods": "Faith & Gods", "BOL.featureSubtypes.fightOption": "Combat Option", - "BOL.featureSubtypes.effect": "Effcet", + "BOL.featureSubtypes.effect": "Effect", "BOL.featureSubtypes.effects": "Effects", "BOL.featureSubtypes.boleffect": "Effect", "BOL.featureSubtypes.horoscope": "Horoscope", @@ -260,6 +266,7 @@ "BOL.itemCategory.other": "Other", "BOL.itemCategory.capacity" : "Capacity", "BOL.itemCategory.alchemy": "Alchemy", + "BOL.itemCategory.vehicleweapon": "Vehicle weapon", "BOL.combatCategory.protections": "Protections", "BOL.combatCategory.shields": "Shields", diff --git a/lang/fr.json b/lang/fr.json index e0d0c64..6b501d4 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -203,6 +203,7 @@ "BOL.ui.armorAgiMalus": "Malus d'Armure+Bouclier (Agi)", "BOL.ui.armorInitMalus": "Malus d'Armure (Init)", "BOL.ui.attackValue": "Valeur d'attaque", + "BOL.ui.attackModifier": "Attaque", "BOL.ui.vehicleWeapons": "Armes de véhicules", "BOL.ui.hullDamage": "D.coque", "BOL.ui.crewDamage": "D.équipage", @@ -234,7 +235,12 @@ "BOL.ui.warninitiative": "Votre initiative n'est pas disponible. Effectuez un jet d'Initiative pour ce combat.", "BOL.ui.isspecial": "Spéciale ?", "BOL.ui.createEquipment": "Créer un Equipement", - + "BOL.ui.newEquipment": "Nouvel équipement", + "BOL.ui.newNaturalWeapon": "Arme naturelle", + "BOL.ui.newNaturalProtection": "Protection naturelle", + "BOL.ui.createNaturalWeapon": "Créer une arme naturelle", + "BOL.ui.createNaturalProtection": "Créer une protection naturelle", + "BOL.featureCategory.origins": "Origines", "BOL.featureCategory.races": "Races", "BOL.featureCategory.careers": "Carrières", diff --git a/module/actor/actor-sheet.js b/module/actor/actor-sheet.js index 3fa2a56..2d05062 100644 --- a/module/actor/actor-sheet.js +++ b/module/actor/actor-sheet.js @@ -47,10 +47,19 @@ export class BoLActorSheet extends ActorSheet { // Equip/Unequip item html.find('.item-equip').click(this._onToggleEquip.bind(this)); - html.find('.create_item').click(ev => { - this.actor.createEmbeddedDocuments('Item', [{ name: "Nouvel Equipement", type: "item" }], { renderSheet: true }); + html.find('.create-item').click(ev => { + this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newEquipment"), type: "item" }], { renderSheet: true }); }); + html.find('.create-natural-weapon').click(ev => { + let system = foundry.utils.duplicate(game.bol.config.defaultNaturalWeapon) + this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newNaturalWeapon"), type: "item", system }], { renderSheet: true }); + }); + html.find('.create-natural-protection').click(ev => { + let system = foundry.utils.duplicate(game.bol.config.defaultNaturalProtection) + this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newNaturalProtection"), type: "item", system }], { renderSheet: true }); + }); + html.find(".toggle-fight-option").click((ev) => { const li = $(ev.currentTarget).parents(".item") this.actor.toggleFightOption(li.data("itemId")) diff --git a/module/actor/actor.js b/module/actor/actor.js index 078960b..f726fe9 100644 --- a/module/actor/actor.js +++ b/module/actor/actor.js @@ -20,6 +20,7 @@ export class BoLActor extends Actor { } super.prepareData() } + /* -------------------------------------------- */ async _preCreate(data, options, user) { diff --git a/module/controllers/bol-rolls.js b/module/controllers/bol-rolls.js index 83f11b4..e886261 100644 --- a/module/controllers/bol-rolls.js +++ b/module/controllers/bol-rolls.js @@ -632,13 +632,25 @@ export class BoLDefaultRoll { const activeDice = r.terms[0].results.filter(r => r.active) const diceTotal = activeDice.map(r => r.result).reduce((a, b) => a + b) this.rollData.roll = r - this.rollData.isSuccess = (r.total >= diceData.successValue) - this.rollData.isCritical = (diceTotal >= diceData.criticalSuccessValue) - this.rollData.isRealCritical = (diceTotal >= diceData.criticalSuccessValue) - this.rollData.isHeroic = (diceTotal >= diceData.criticalSuccessValue) - this.rollData.isLegendary = false this.rollData.isFumble = (diceTotal <= diceData.criticalFailureValue) - this.rollData.isFailure = !this.rollData.isSuccess + if ( this.rollData.isFumble ) { + this.rollData.isSuccess = false + this.rollData.isCritical = false + this.rollData.isRealCritical = false + this.rollData.isHeroic = false + this.rollData.isFailure = true + } else { + this.rollData.isCritical = (diceTotal >= diceData.criticalSuccessValue) + if ( this.rollData.isCritical) { + this.rollData.isSuccess = true + } else { + this.rollData.isSuccess = (r.total >= diceData.successValue) + } + this.rollData.isRealCritical = (diceTotal >= diceData.criticalSuccessValue) + this.rollData.isHeroic = (diceTotal >= diceData.criticalSuccessValue) + this.rollData.isFailure = !this.rollData.isSuccess + } + this.rollData.isLegendary = false let actor = BoLUtility.getActorFromRollData(this.rollData) if (this.rollData.reroll == undefined) { diff --git a/module/system/config.js b/module/system/config.js index 1998394..6ac5f1c 100644 --- a/module/system/config.js +++ b/module/system/config.js @@ -10,14 +10,14 @@ System.debugMode = true; export const BOL = {}; BOL.damageValues = { - "1": "1", - "2": "2", - "3": "3", - "d3" : "d3", - "d6M" : "d6M (Malus)", - "d6" : "d6", - "d6B" : "d6B (Bonus)", - "d6BB" : "d6B + dé bonus", + "1": "1", + "2": "2", + "3": "3", + "d3": "d3", + "d6M": "d6M (Malus)", + "d6": "d6", + "d6B": "d6B (Bonus)", + "d6BB": "d6B + dé bonus", } BOL.damageMultiplier = { @@ -55,125 +55,125 @@ BOL.alchemyType = { } BOL.equipmentSlots = { - "none" : "BOL.equipmentSlots.none", - "head" : "BOL.equipmentSlots.head", - "neck" : "BOL.equipmentSlots.neck", - "shoulders" : "BOL.equipmentSlots.shoulders", - "body" : "BOL.equipmentSlots.body", - "rhand" : "BOL.equipmentSlots.rhand", - "lhand" : "BOL.equipmentSlots.lhand", - "2hands" : "BOL.equipmentSlots.2hands", - "rarm" : "BOL.equipmentSlots.rarm", - "larm" : "BOL.equipmentSlots.larm", - "chest" : "BOL.equipmentSlots.chest", - "belt" : "BOL.equipmentSlots.belt", - "legs" : "BOL.equipmentSlots.legs", - "feet" : "BOL.equipmentSlots.feet", - "finder" : "BOL.equipmentSlots.finder", - "ear" : "BOL.equipmentSlots.ear" + "none": "BOL.equipmentSlots.none", + "head": "BOL.equipmentSlots.head", + "neck": "BOL.equipmentSlots.neck", + "shoulders": "BOL.equipmentSlots.shoulders", + "body": "BOL.equipmentSlots.body", + "rhand": "BOL.equipmentSlots.rhand", + "lhand": "BOL.equipmentSlots.lhand", + "2hands": "BOL.equipmentSlots.2hands", + "rarm": "BOL.equipmentSlots.rarm", + "larm": "BOL.equipmentSlots.larm", + "chest": "BOL.equipmentSlots.chest", + "belt": "BOL.equipmentSlots.belt", + "legs": "BOL.equipmentSlots.legs", + "feet": "BOL.equipmentSlots.feet", + "finder": "BOL.equipmentSlots.finder", + "ear": "BOL.equipmentSlots.ear" } BOL.armorQualities = { - "none" : "BOL.armorQuality.none", - "light" : "BOL.armorQuality.light", - "lightQ" : "BOL.armorQuality.lightQ", - "lightSup" : "BOL.armorQuality.lightSup", - "lightLeg" : "BOL.armorQuality.lightLeg", - "medium" : "BOL.armorQuality.medium", - "mediumQ" : "BOL.armorQuality.mediumQ", - "mediumSup" : "BOL.armorQuality.mediumSup", - "mediumLeg" : "BOL.armorQuality.mediumLeg", - "heavy" : "BOL.armorQuality.heavy", - "heavyQ" : "BOL.armorQuality.heavyQ", - "heavySup" : "BOL.armorQuality.heavySup", - "heavyLeg" : "BOL.armorQuality.heavyLeg" + "none": "BOL.armorQuality.none", + "light": "BOL.armorQuality.light", + "lightQ": "BOL.armorQuality.lightQ", + "lightSup": "BOL.armorQuality.lightSup", + "lightLeg": "BOL.armorQuality.lightLeg", + "medium": "BOL.armorQuality.medium", + "mediumQ": "BOL.armorQuality.mediumQ", + "mediumSup": "BOL.armorQuality.mediumSup", + "mediumLeg": "BOL.armorQuality.mediumLeg", + "heavy": "BOL.armorQuality.heavy", + "heavyQ": "BOL.armorQuality.heavyQ", + "heavySup": "BOL.armorQuality.heavySup", + "heavyLeg": "BOL.armorQuality.heavyLeg" } BOL.soakFormulas = { - "none" : "0", - "light" : "1d6-3", - "lightQ" : "1d6r1-3", - "lightSup" : "1d6-2", - "lightLeg" : "2d6kh1-2", - "medium" : "1d6-2", - "mediumQ" : "1d6r1-2", - "mediumSup" : "1d6-1", - "mediumLeg" : "2d6kh1-1", - "heavy" : "1d6-1", - "heavyQ" : "1d6r1-1", - "heavySup" : "1d6", - "heavyLeg" : "2d6kh1" + "none": "0", + "light": "1d6-3", + "lightQ": "1d6r1-3", + "lightSup": "1d6-2", + "lightLeg": "2d6kh1-2", + "medium": "1d6-2", + "mediumQ": "1d6r1-2", + "mediumSup": "1d6-1", + "mediumLeg": "2d6kh1-1", + "heavy": "1d6-1", + "heavyQ": "1d6r1-1", + "heavySup": "1d6", + "heavyLeg": "2d6kh1" } BOL.attackAttributes = { - "vigor" : "BOL.attributes.vigor", - "agility" : "BOL.attributes.agility", - "mind" : "BOL.attributes.mind", - "appeal" : "BOL.attributes.appeal" + "vigor": "BOL.attributes.vigor", + "agility": "BOL.attributes.agility", + "mind": "BOL.attributes.mind", + "appeal": "BOL.attributes.appeal" } BOL.attackAptitudes = { - "melee" : "BOL.aptitudes.melee", - "ranged" : "BOL.aptitudes.ranged" + "melee": "BOL.aptitudes.melee", + "ranged": "BOL.aptitudes.ranged" } BOL.aptitudes = { - "melee" : "BOL.aptitudes.melee", - "ranged" : "BOL.aptitudes.ranged", - "init" : "BOL.aptitudes.init", - "def" : "BOL.aptitudes.def" + "melee": "BOL.aptitudes.melee", + "ranged": "BOL.aptitudes.ranged", + "init": "BOL.aptitudes.init", + "def": "BOL.aptitudes.def" } BOL.resources = { - "hp" : "BOL.resources.hp", - "hero" : "BOL.resources.hero", - "faith" : "BOL.resources.faith", - "power" : "BOL.resources.power", - "alchemypoints" : "BOL.resources.alchemypoints" + "hp": "BOL.resources.hp", + "hero": "BOL.resources.hero", + "faith": "BOL.resources.faith", + "power": "BOL.resources.power", + "alchemypoints": "BOL.resources.alchemypoints" } BOL.weaponSizes = { - "unarmed" : "BOL.weaponSize.unarmed", - "improvised" : "BOL.weaponSize.improvised", - "light" : "BOL.weaponSize.light", - "medium" : "BOL.weaponSize.medium", - "heavy" : "BOL.weaponSize.heavy" + "unarmed": "BOL.weaponSize.unarmed", + "improvised": "BOL.weaponSize.improvised", + "light": "BOL.weaponSize.light", + "medium": "BOL.weaponSize.medium", + "heavy": "BOL.weaponSize.heavy" } BOL.damageAttributes = { - "zero" : "0", - "vigor" : "BOL.attributes.vigor", - "half-vigor" : "BOL.attributes.halfvigor" + "zero": "0", + "vigor": "BOL.attributes.vigor", + "half-vigor": "BOL.attributes.halfvigor" } BOL.itemCategories = { - "equipment" : "BOL.itemCategory.equipment", - "capacity" : "BOL.itemCategory.capacity", - "spell" : "BOL.itemCategory.spell", - "alchemy" : "BOL.itemCategory.alchemy", - "vehicle" : "BOL.itemCategory.vehicle", - "vehicleweapon": "BOL.itemCategory.vehicleweapon", - "other" : "BOL.itemCategory.other" + "equipment": "BOL.itemCategory.equipment", + "capacity": "BOL.itemCategory.capacity", + "spell": "BOL.itemCategory.spell", + "alchemy": "BOL.itemCategory.alchemy", + "vehicle": "BOL.itemCategory.vehicle", + "vehicleweapon": "BOL.itemCategory.vehicleweapon", + "other": "BOL.itemCategory.other" } BOL.itemSubtypes = { - "armor" : "BOL.equipmentCategory.armor", - "weapon" : "BOL.equipmentCategory.weapon", - "shield" : "BOL.equipmentCategory.shield", - "helm" : "BOL.equipmentCategory.helm", - "jewel" : "BOL.equipmentCategory.jewel", - "scroll" : "BOL.equipmentCategory.scroll", - "container" : "BOL.equipmentCategory.container", - "ammunition" : "BOL.equipmentCategory.ammunition", - "currency" : "BOL.equipmentCategory.currency", - "other" : "BOL.equipmentCategory.other" + "armor": "BOL.equipmentCategory.armor", + "weapon": "BOL.equipmentCategory.weapon", + "shield": "BOL.equipmentCategory.shield", + "helm": "BOL.equipmentCategory.helm", + "jewel": "BOL.equipmentCategory.jewel", + "scroll": "BOL.equipmentCategory.scroll", + "container": "BOL.equipmentCategory.container", + "ammunition": "BOL.equipmentCategory.ammunition", + "currency": "BOL.equipmentCategory.currency", + "other": "BOL.equipmentCategory.other" } BOL.vehicleSubtypes = { - "mount" : "BOL.vehicleCategory.mount", - "flying" : "BOL.vehicleCategory.flying", - "boat" : "BOL.vehicleCategory.boat", - "other" : "BOL.vehicleCategory.other" + "mount": "BOL.vehicleCategory.mount", + "flying": "BOL.vehicleCategory.flying", + "boat": "BOL.vehicleCategory.boat", + "other": "BOL.vehicleCategory.other" } // BOL.equipmentCategories = { @@ -190,27 +190,27 @@ BOL.vehicleSubtypes = { // } BOL.rangeModifiers = { - "1": "BOL.dialog.pointblank", - "0": "BOL.dialog.close", - "-1": "BOL.dialog.medium", - "-2": "BOL.dialog.long", - "-4": "BOL.dialog.distant", - "-6": "BOL.dialog.extreme", - "-8": "BOL.dialog.utmost" + "1": "BOL.dialog.pointblank", + "0": "BOL.dialog.close", + "-1": "BOL.dialog.medium", + "-2": "BOL.dialog.long", + "-4": "BOL.dialog.distant", + "-6": "BOL.dialog.extreme", + "-8": "BOL.dialog.utmost" } BOL.difficultyModifiers = { - "4": "BOL.dialog.soeasy", - "2": "BOL.dialog.veryeasy", - "1": "BOL.dialog.easy", - "0": "BOL.dialog.moderate", - "-1": "BOL.dialog.hard", - "-2": "BOL.dialog.tough", - "-4": "BOL.dialog.demanding", - "-6": "BOL.dialog.formidable", - "-8": "BOL.dialog.heroic", - "-10": "BOL.dialog.mythic", - "-12": "BOL.dialog.divine" + "4": "BOL.dialog.soeasy", + "2": "BOL.dialog.veryeasy", + "1": "BOL.dialog.easy", + "0": "BOL.dialog.moderate", + "-1": "BOL.dialog.hard", + "-2": "BOL.dialog.tough", + "-4": "BOL.dialog.demanding", + "-6": "BOL.dialog.formidable", + "-8": "BOL.dialog.heroic", + "-10": "BOL.dialog.mythic", + "-12": "BOL.dialog.divine" } BOL.alchemyModifiers = { @@ -245,97 +245,97 @@ BOL.effectIdentifiers = { "always": "BOL.ui.always", } BOL.protectionCategories = { - "armor" : "BOL.protectionCategory.armor", - "shield" : "BOL.protectionCategory.shield", - "helm" : "BOL.protectionCategory.helm", - "other" : "BOL.protectionCategory.other" + "armor": "BOL.protectionCategory.armor", + "shield": "BOL.protectionCategory.shield", + "helm": "BOL.protectionCategory.helm", + "other": "BOL.protectionCategory.other" } BOL.weaponCategories = { - "melee" : "BOL.weaponCategory.melee", - "ranged" : "BOL.weaponCategory.ranged", - "other" : "BOL.weaponCategory.other" + "melee": "BOL.weaponCategory.melee", + "ranged": "BOL.weaponCategory.ranged", + "other": "BOL.weaponCategory.other" } BOL.itemProperties1 = { - "equipable" : "BOL.itemProperty.equipable", - "protection" : "BOL.itemProperty.protection", - "magical" : "BOL.itemProperty.magical", - "worn" : "BOL.itemProperty.worn", + "equipable": "BOL.itemProperty.equipable", + "protection": "BOL.itemProperty.protection", + "magical": "BOL.itemProperty.magical", + "worn": "BOL.itemProperty.worn", } BOL.itemProperties2 = { - "equipable" : "BOL.itemProperty.equipable", - "protection" : "BOL.itemProperty.protection", - "blocking" : "BOL.itemProperty.blocking", - "magical" : "BOL.itemProperty.magical", - "concealable" : "BOL.itemProperty.concealable", - "2H" : "BOL.itemProperty.2H", - "helm" : "BOL.itemProperty.helm", - "improvised" : "BOL.itemProperty.improvised", - "shield" : "BOL.itemProperty.shield", - "melee" : "BOL.itemProperty.melee", - "throwable" : "BOL.itemProperty.throwable", - "ignoreshield" : "BOL.itemProperty.ignoreshield", - "bashing" : "BOL.itemProperty.bashing", - "stackable" : "BOL.itemProperty.stackable", - "ranged" : "BOL.itemProperty.ranged", - "weapon" : "BOL.itemProperty.weapon", - "reloadable" : "BOL.itemProperty.reloadable", - "worn" : "BOL.itemProperty.worn", - "spell" : "BOL.itemProperty.spell", - "armor" : "BOL.itemProperty.armor", - "consumable" : "BOL.itemProperty.consumable", - "bow" : "BOL.itemProperty.bow", - "crossbow" : "BOL.itemProperty.crossbow", - "throwing" : "BOL.itemProperty.throwing", - "activable" : "BOL.itemProperty.activable", - "powder" : "BOL.itemProperty.powder", - "damage" : "BOL.itemProperty.damage", - "difficulty": "BOL.itemProperty.difficulty" + "equipable": "BOL.itemProperty.equipable", + "protection": "BOL.itemProperty.protection", + "blocking": "BOL.itemProperty.blocking", + "magical": "BOL.itemProperty.magical", + "concealable": "BOL.itemProperty.concealable", + "2H": "BOL.itemProperty.2H", + "helm": "BOL.itemProperty.helm", + "improvised": "BOL.itemProperty.improvised", + "shield": "BOL.itemProperty.shield", + "melee": "BOL.itemProperty.melee", + "throwable": "BOL.itemProperty.throwable", + "ignoreshield": "BOL.itemProperty.ignoreshield", + "bashing": "BOL.itemProperty.bashing", + "stackable": "BOL.itemProperty.stackable", + "ranged": "BOL.itemProperty.ranged", + "weapon": "BOL.itemProperty.weapon", + "reloadable": "BOL.itemProperty.reloadable", + "worn": "BOL.itemProperty.worn", + "spell": "BOL.itemProperty.spell", + "armor": "BOL.itemProperty.armor", + "consumable": "BOL.itemProperty.consumable", + "bow": "BOL.itemProperty.bow", + "crossbow": "BOL.itemProperty.crossbow", + "throwing": "BOL.itemProperty.throwing", + "activable": "BOL.itemProperty.activable", + "powder": "BOL.itemProperty.powder", + "damage": "BOL.itemProperty.damage", + "difficulty": "BOL.itemProperty.difficulty" } BOL.itemStats = { - "quantity" : "BOL.itemStat.quantity", - "weight" : "BOL.itemStat.weight", - "price" : "BOL.itemStat.price", - "range" : "BOL.itemStat.range", - "damage" : "BOL.itemStat.damage", - "reload" : "BOL.itemStat.reload", - "soak" : "BOL.itemStat.soak", - "blocking" : "BOL.itemStat.blocking", - "modifiers" : "BOL.itemStat.modifiers" + "quantity": "BOL.itemStat.quantity", + "weight": "BOL.itemStat.weight", + "price": "BOL.itemStat.price", + "range": "BOL.itemStat.range", + "damage": "BOL.itemStat.damage", + "reload": "BOL.itemStat.reload", + "soak": "BOL.itemStat.soak", + "blocking": "BOL.itemStat.blocking", + "modifiers": "BOL.itemStat.modifiers" } BOL.itemModifiers = { - "init" : "BOL.itemModifiers.init", - "social" : "BOL.itemModifiers.social", - "agility" : "BOL.itemModifiers.agility", - "powercost" : "BOL.itemModifiers.powercost" + "init": "BOL.itemModifiers.init", + "social": "BOL.itemModifiers.social", + "agility": "BOL.itemModifiers.agility", + "powercost": "BOL.itemModifiers.powercost" } BOL.itemBlocking = { - "malus" : "BOL.itemBlocking.malus", - "nbAttacksPerRound" : "BOL.itemBlocking.nbAttacksPerRound" + "malus": "BOL.itemBlocking.malus", + "nbAttacksPerRound": "BOL.itemBlocking.nbAttacksPerRound" } BOL.itemSoak = { - "formula" : "BOL.itemSoak.formula", - "value" : "BOL.itemSoak.value" + "formula": "BOL.itemSoak.formula", + "value": "BOL.itemSoak.value" } BOL.featureSubtypes = { - "origin" : "BOL.featureSubtypes.origin", - "race" : "BOL.featureSubtypes.race", - "career" : "BOL.featureSubtypes.career", - "boon" : "BOL.featureSubtypes.boon", - "flaw" : "BOL.featureSubtypes.flaw", - "language" : "BOL.featureSubtypes.language", - "godsfaith" : "BOL.featureSubtypes.gods", - "fightoption" : "BOL.featureSubtypes.fightOption", - "boleffect": "BOL.featureSubtypes.effect", - "horoscope": "BOL.featureSubtypes.horoscope", - "xplog": "BOL.featureSubtypes.xplog", + "origin": "BOL.featureSubtypes.origin", + "race": "BOL.featureSubtypes.race", + "career": "BOL.featureSubtypes.career", + "boon": "BOL.featureSubtypes.boon", + "flaw": "BOL.featureSubtypes.flaw", + "language": "BOL.featureSubtypes.language", + "godsfaith": "BOL.featureSubtypes.gods", + "fightoption": "BOL.featureSubtypes.fightOption", + "boleffect": "BOL.featureSubtypes.effect", + "horoscope": "BOL.featureSubtypes.horoscope", + "xplog": "BOL.featureSubtypes.xplog", } BOL.fightOptionTypes = { @@ -350,17 +350,17 @@ BOL.fightOptionTypes = { } BOL.itemIcons = { - "item": "icons/containers/chest/chest-worn-oak-tan.webp", - "feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp", - "species": "icons/environment/people/group.webp", - "profile": "icons/sundries/documents/blueprint-axe.webp", - "path": "icons/sundries/books/book-embossed-gold-red.webp" + "item": "icons/containers/chest/chest-worn-oak-tan.webp", + "feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp", + "species": "icons/environment/people/group.webp", + "profile": "icons/sundries/documents/blueprint-axe.webp", + "path": "icons/sundries/books/book-embossed-gold-red.webp" } BOL.actorIcons = { - "npc": "icons/environment/people/commoner.webp", - "encounter": "icons/svg/mystery-man-black.svg", - "loot": "icons/containers/bags/sack-simple-leather-brown.webp" + "npc": "icons/environment/people/commoner.webp", + "encounter": "icons/svg/mystery-man-black.svg", + "loot": "icons/containers/bags/sack-simple-leather-brown.webp" } BOL.bougetteState = { @@ -379,18 +379,18 @@ BOL.bougetteDice = { } BOL.creatureSize = { - "tiny": {order: 1, label: "BOL.size.tiny"}, - "verysmall": {order: 2, label: "BOL.size.verysmall"}, - "small": {order: 3, label: "BOL.size.small"}, - "medium": {order: 4, label: "BOL.size.medium"}, - "large": {order: 5, label: "BOL.size.large"}, - "verylarge": {order: 6, label: "BOL.size.verylarge"}, - "huge": {order: 7, label: "BOL.size.huge"}, - "massive": {order: 8, label: "BOL.size.massive"}, - "enormous": {order: 9, label: "BOL.size.enormous"}, - "gigantic": {order: 10, label: "BOL.size.gigantic"}, - "immense": {order: 11, label: "BOL.size.immense"}, - "colossal": {order: 12, label: "BOL.size.colossal"} + "tiny": { order: 1, label: "BOL.size.tiny" }, + "verysmall": { order: 2, label: "BOL.size.verysmall" }, + "small": { order: 3, label: "BOL.size.small" }, + "medium": { order: 4, label: "BOL.size.medium" }, + "large": { order: 5, label: "BOL.size.large" }, + "verylarge": { order: 6, label: "BOL.size.verylarge" }, + "huge": { order: 7, label: "BOL.size.huge" }, + "massive": { order: 8, label: "BOL.size.massive" }, + "enormous": { order: 9, label: "BOL.size.enormous" }, + "gigantic": { order: 10, label: "BOL.size.gigantic" }, + "immense": { order: 11, label: "BOL.size.immense" }, + "colossal": { order: 12, label: "BOL.size.colossal" } } BOL.horoscopeAnswer = { @@ -417,110 +417,208 @@ BOL.bolEffectModifier = { BOL.statusEffects = [ { - "id": "dead", - "label": "EFFECT.StatusDead", - "icon": "icons/svg/skull.svg" + "id": "dead", + "label": "EFFECT.StatusDead", + "icon": "icons/svg/skull.svg" }, { - "id": "unconscious", - "label": "EFFECT.StatusUnconscious", - "icon": "icons/svg/unconscious.svg" + "id": "unconscious", + "label": "EFFECT.StatusUnconscious", + "icon": "icons/svg/unconscious.svg" }, { - "id": "sleep", - "label": "EFFECT.StatusAsleep", - "icon": "icons/svg/sleep.svg" + "id": "sleep", + "label": "EFFECT.StatusAsleep", + "icon": "icons/svg/sleep.svg" }, { - "id": "stun", - "label": "EFFECT.StatusStunned", - "icon": "icons/svg/daze.svg" + "id": "stun", + "label": "EFFECT.StatusStunned", + "icon": "icons/svg/daze.svg" }, { - "id": "prone", - "label": "EFFECT.StatusProne", - "icon": "icons/svg/falling.svg" + "id": "prone", + "label": "EFFECT.StatusProne", + "icon": "icons/svg/falling.svg" }, { - "id": "restrain", - "label": "EFFECT.StatusRestrained", - "icon": "icons/svg/net.svg" + "id": "restrain", + "label": "EFFECT.StatusRestrained", + "icon": "icons/svg/net.svg" }, { - "id": "paralysis", - "label": "EFFECT.StatusParalysis", - "icon": "icons/svg/paralysis.svg" + "id": "paralysis", + "label": "EFFECT.StatusParalysis", + "icon": "icons/svg/paralysis.svg" }, { - "id": "fly", - "label": "EFFECT.StatusFlying", - "icon": "icons/svg/wing.svg" + "id": "fly", + "label": "EFFECT.StatusFlying", + "icon": "icons/svg/wing.svg" }, { - "id": "blind", - "label": "EFFECT.StatusBlind", - "icon": "icons/svg/blind.svg" + "id": "blind", + "label": "EFFECT.StatusBlind", + "icon": "icons/svg/blind.svg" }, { - "id": "deaf", - "label": "EFFECT.StatusDeaf", - "icon": "icons/svg/deaf.svg" + "id": "deaf", + "label": "EFFECT.StatusDeaf", + "icon": "icons/svg/deaf.svg" }, { - "id": "silence", - "label": "EFFECT.StatusSilenced", - "icon": "icons/svg/silenced.svg" + "id": "silence", + "label": "EFFECT.StatusSilenced", + "icon": "icons/svg/silenced.svg" }, { - "id": "fear", - "label": "EFFECT.StatusFear", - "icon": "icons/svg/terror.svg" + "id": "fear", + "label": "EFFECT.StatusFear", + "icon": "icons/svg/terror.svg" }, { - "id": "burning", - "label": "EFFECT.StatusBurning", - "icon": "icons/svg/fire.svg" + "id": "burning", + "label": "EFFECT.StatusBurning", + "icon": "icons/svg/fire.svg" }, { - "id": "frozen", - "label": "EFFECT.StatusFrozen", - "icon": "icons/svg/frozen.svg" + "id": "frozen", + "label": "EFFECT.StatusFrozen", + "icon": "icons/svg/frozen.svg" }, { - "id": "shock", - "label": "EFFECT.StatusShocked", - "icon": "icons/svg/lightning.svg" + "id": "shock", + "label": "EFFECT.StatusShocked", + "icon": "icons/svg/lightning.svg" }, { - "id": "disease", - "label": "EFFECT.StatusDisease", - "icon": "icons/svg/biohazard.svg" + "id": "disease", + "label": "EFFECT.StatusDisease", + "icon": "icons/svg/biohazard.svg" }, { - "id": "poison", - "label": "EFFECT.StatusPoison", - "icon": "icons/svg/poison.svg" + "id": "poison", + "label": "EFFECT.StatusPoison", + "icon": "icons/svg/poison.svg" }, { - "id": "curse", - "label": "EFFECT.StatusCursed", - "icon": "icons/svg/sun.svg" + "id": "curse", + "label": "EFFECT.StatusCursed", + "icon": "icons/svg/sun.svg" }, { - "id": "invisible", - "label": "EFFECT.StatusInvisible", - "icon": "icons/svg/invisible.svg" + "id": "invisible", + "label": "EFFECT.StatusInvisible", + "icon": "icons/svg/invisible.svg" }, { - "id": "target", - "label": "EFFECT.StatusTarget", - "icon": "icons/svg/target.svg" + "id": "target", + "label": "EFFECT.StatusTarget", + "icon": "icons/svg/target.svg" }, { - "id": "eye", - "label": "EFFECT.StatusMarked", - "icon": "icons/svg/eye.svg" + "id": "eye", + "label": "EFFECT.StatusMarked", + "icon": "icons/svg/eye.svg" } ] +BOL.defaultNaturalWeapon = { + "category": "equipment", + "subtype": "weapon", + "description": "", + "properties": { + "ranged": false, + "melee": false, + "spell": false, + "protection": false, + "weapon": true, + "armor": false, + "helm": false, + "shield": false, + "equipable": false, + "consumable": false, + "magical": false, + "2H": false, + "reloadable": false, + "bow": false, + "crossbow": false, + "throwing": false, + "stackable": false, + "natural": true, + "concealable": false, + "ignoreshield": false, + "attackBonusDice": false, + "onlymodifier": true, + "attackAttribute": "vigor", + "attackAptitude": "melee", + "attackModifiers": 1, + "weaponSize": "unarmed", + "damage": "d6B", + "damageAttribute": "vigor", + "damageModifiers": null, + "damageMultiplier": "1", + "damageReroll1": false + }, + "quantity": 1, + "weight": 0, + "price": 0, + "worn": false +} + +BOL.defaultNaturalProtection = { + "category": "equipment", + "subtype": "armor", + "description": "", + "properties": { + "ranged": false, + "melee": false, + "spell": false, + "protection": true, + "weapon": false, + "armor": true, + "helm": false, + "shield": false, + "equipable": true, + "consumable": false, + "magical": false, + "2H": false, + "reloadable": false, + "bow": false, + "crossbow": false, + "throwing": false, + "stackable": false, + "natural": true, + "concealable": false, + "ignoreshield": false, + "attackBonusDice": false, + "onlymodifier": true, + "attackAttribute": "vigor", + "attackAptitude": "melee", + "attackModifiers": 1, + "weaponSize": "unarmed", + "damage": "d6B", + "damageAttribute": "vigor", + "damageModifiers": null, + "damageMultiplier": "1", + "damageReroll1": false, + "modifiers": { + "init": null, + "agility": null, + "powercost": null, + "social": false + }, + "armorQuality": "none", + "soak": { + "formula": "", + "value": 1 + }, + "slot": "none" + }, + "quantity": 1, + "weight": 0, + "price": 0, + "worn": true +} + BOL.debug = false; \ No newline at end of file diff --git a/packs/aides-de-jeu/000305.log b/packs/aides-de-jeu/000317.log similarity index 100% rename from packs/aides-de-jeu/000305.log rename to packs/aides-de-jeu/000317.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index 284c57b..073c26f 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index f3642c5..20675d5 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.614939 7f14756006c0 Recovering log #301 -2024/08/12-22:22:36.625124 7f14756006c0 Delete type=3 #299 -2024/08/12-22:22:36.625176 7f14756006c0 Delete type=0 #301 -2024/08/12-22:24:19.300777 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.300851 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.307219 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.328842 7f146fe006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.328887 7f146fe006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.600289 7f80f3e006c0 Recovering log #313 +2024/09/04-08:29:45.624187 7f80f3e006c0 Delete type=3 #311 +2024/09/04-08:29:45.624335 7f80f3e006c0 Delete type=0 #313 +2024/09/04-08:55:35.075489 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.075528 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.081858 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.082117 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.082171 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index 39a64f7..1f95a3d 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.749548 7f14756006c0 Recovering log #297 -2024/08/12-14:24:59.759617 7f14756006c0 Delete type=3 #295 -2024/08/12-14:24:59.759718 7f14756006c0 Delete type=0 #297 -2024/08/12-15:14:31.888362 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.888390 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.894838 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.894997 7f146fe006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.895028 7f146fe006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.404112 7f80f3e006c0 Recovering log #309 +2024/09/03-23:57:02.504332 7f80f3e006c0 Delete type=3 #307 +2024/09/03-23:57:02.504411 7f80f3e006c0 Delete type=0 #309 +2024/09/04-00:02:12.553825 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.553904 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.560122 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.566679 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.566727 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/MANIFEST-000303 b/packs/aides-de-jeu/MANIFEST-000315 similarity index 84% rename from packs/aides-de-jeu/MANIFEST-000303 rename to packs/aides-de-jeu/MANIFEST-000315 index 34f9c6a..a9b418c 100644 Binary files a/packs/aides-de-jeu/MANIFEST-000303 and b/packs/aides-de-jeu/MANIFEST-000315 differ diff --git a/packs/armors/000211.log b/packs/armors/000223.log similarity index 100% rename from packs/armors/000211.log rename to packs/armors/000223.log diff --git a/packs/armors/CURRENT b/packs/armors/CURRENT index 52262f0..2582555 100644 --- a/packs/armors/CURRENT +++ b/packs/armors/CURRENT @@ -1 +1 @@ -MANIFEST-000209 +MANIFEST-000221 diff --git a/packs/armors/LOG b/packs/armors/LOG index 72516c3..67638bd 100644 --- a/packs/armors/LOG +++ b/packs/armors/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.584046 7f1476a006c0 Recovering log #207 -2024/08/12-22:22:36.594399 7f1476a006c0 Delete type=3 #205 -2024/08/12-22:22:36.594454 7f1476a006c0 Delete type=0 #207 -2024/08/12-22:24:19.315310 7f146fe006c0 Level-0 table #212: started -2024/08/12-22:24:19.315377 7f146fe006c0 Level-0 table #212: 0 bytes OK -2024/08/12-22:24:19.321841 7f146fe006c0 Delete type=0 #210 -2024/08/12-22:24:19.328866 7f146fe006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.328902 7f146fe006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.543967 7f80f2a006c0 Recovering log #219 +2024/09/04-08:29:45.568470 7f80f2a006c0 Delete type=3 #217 +2024/09/04-08:29:45.568609 7f80f2a006c0 Delete type=0 #219 +2024/09/04-08:55:35.053637 7f80f10006c0 Level-0 table #224: started +2024/09/04-08:55:35.053701 7f80f10006c0 Level-0 table #224: 0 bytes OK +2024/09/04-08:55:35.060581 7f80f10006c0 Delete type=0 #222 +2024/09/04-08:55:35.082061 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.082130 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) diff --git a/packs/armors/LOG.old b/packs/armors/LOG.old index e4d3746..7b2098d 100644 --- a/packs/armors/LOG.old +++ b/packs/armors/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.720560 7f1474c006c0 Recovering log #203 -2024/08/12-14:24:59.731538 7f1474c006c0 Delete type=3 #201 -2024/08/12-14:24:59.731601 7f1474c006c0 Delete type=0 #203 -2024/08/12-15:14:31.868072 7f146fe006c0 Level-0 table #208: started -2024/08/12-15:14:31.868103 7f146fe006c0 Level-0 table #208: 0 bytes OK -2024/08/12-15:14:31.874133 7f146fe006c0 Delete type=0 #206 -2024/08/12-15:14:31.894963 7f146fe006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.895004 7f146fe006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.191364 7f80f2a006c0 Recovering log #215 +2024/09/03-23:57:02.292367 7f80f2a006c0 Delete type=3 #213 +2024/09/03-23:57:02.292426 7f80f2a006c0 Delete type=0 #215 +2024/09/04-00:02:12.560295 7f80f10006c0 Level-0 table #220: started +2024/09/04-00:02:12.560338 7f80f10006c0 Level-0 table #220: 0 bytes OK +2024/09/04-00:02:12.566575 7f80f10006c0 Delete type=0 #218 +2024/09/04-00:02:12.566717 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.566746 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) diff --git a/packs/armors/MANIFEST-000209 b/packs/armors/MANIFEST-000221 similarity index 73% rename from packs/armors/MANIFEST-000209 rename to packs/armors/MANIFEST-000221 index f05f164..5917387 100644 Binary files a/packs/armors/MANIFEST-000209 and b/packs/armors/MANIFEST-000221 differ diff --git a/packs/boons/000305.log b/packs/boons/000317.log similarity index 100% rename from packs/boons/000305.log rename to packs/boons/000317.log diff --git a/packs/boons/CURRENT b/packs/boons/CURRENT index 284c57b..073c26f 100644 --- a/packs/boons/CURRENT +++ b/packs/boons/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/boons/LOG b/packs/boons/LOG index 01608fe..a06f456 100644 --- a/packs/boons/LOG +++ b/packs/boons/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.471458 7f1476a006c0 Recovering log #301 -2024/08/12-22:22:36.483054 7f1476a006c0 Delete type=3 #299 -2024/08/12-22:22:36.483128 7f1476a006c0 Delete type=0 #301 -2024/08/12-22:24:19.266903 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.266943 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.273091 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.273227 7f146fe006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.273257 7f146fe006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.183554 7f80f2a006c0 Recovering log #313 +2024/09/04-08:29:45.233441 7f80f2a006c0 Delete type=3 #311 +2024/09/04-08:29:45.233583 7f80f2a006c0 Delete type=0 #313 +2024/09/04-08:55:34.993899 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:34.993962 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.001825 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.023994 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.024130 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) diff --git a/packs/boons/LOG.old b/packs/boons/LOG.old index 0eff985..07e0e04 100644 --- a/packs/boons/LOG.old +++ b/packs/boons/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.604150 7f1474c006c0 Recovering log #297 -2024/08/12-14:24:59.615057 7f1474c006c0 Delete type=3 #295 -2024/08/12-14:24:59.615112 7f1474c006c0 Delete type=0 #297 -2024/08/12-15:14:31.833556 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.833611 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.840431 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.840645 7f146fe006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.840677 7f146fe006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.593096 7f80f2a006c0 Recovering log #309 +2024/09/03-23:57:01.647346 7f80f2a006c0 Delete type=3 #307 +2024/09/03-23:57:01.647452 7f80f2a006c0 Delete type=0 #309 +2024/09/04-00:02:12.502227 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.502249 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.508162 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.521455 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.521494 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) diff --git a/packs/boons/MANIFEST-000303 b/packs/boons/MANIFEST-000315 similarity index 72% rename from packs/boons/MANIFEST-000303 rename to packs/boons/MANIFEST-000315 index 39099d7..160ce4b 100644 Binary files a/packs/boons/MANIFEST-000303 and b/packs/boons/MANIFEST-000315 differ diff --git a/packs/boonsflawscreatures/000305.log b/packs/boonsflawscreatures/000317.log similarity index 100% rename from packs/boonsflawscreatures/000305.log rename to packs/boonsflawscreatures/000317.log diff --git a/packs/boonsflawscreatures/CURRENT b/packs/boonsflawscreatures/CURRENT index 284c57b..073c26f 100644 --- a/packs/boonsflawscreatures/CURRENT +++ b/packs/boonsflawscreatures/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/boonsflawscreatures/LOG b/packs/boonsflawscreatures/LOG index 10ee5d6..c68a7e0 100644 --- a/packs/boonsflawscreatures/LOG +++ b/packs/boonsflawscreatures/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.487187 7f14760006c0 Recovering log #301 -2024/08/12-22:22:36.497741 7f14760006c0 Delete type=3 #299 -2024/08/12-22:22:36.497799 7f14760006c0 Delete type=0 #301 -2024/08/12-22:24:19.252816 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.252870 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.259892 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.273201 7f146fe006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.273242 7f146fe006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.236757 7f80f34006c0 Recovering log #313 +2024/09/04-08:29:45.285076 7f80f34006c0 Delete type=3 #311 +2024/09/04-08:29:45.285171 7f80f34006c0 Delete type=0 #313 +2024/09/04-08:55:35.008961 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.009000 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.015744 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.024074 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.024182 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) diff --git a/packs/boonsflawscreatures/LOG.old b/packs/boonsflawscreatures/LOG.old index d09b601..9504297 100644 --- a/packs/boonsflawscreatures/LOG.old +++ b/packs/boonsflawscreatures/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.619377 7f14760006c0 Recovering log #297 -2024/08/12-14:24:59.630095 7f14760006c0 Delete type=3 #295 -2024/08/12-14:24:59.630243 7f14760006c0 Delete type=0 #297 -2024/08/12-15:14:31.826328 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.826360 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.833311 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.840635 7f146fe006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.840669 7f146fe006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.659093 7f80f20006c0 Recovering log #309 +2024/09/03-23:57:01.714808 7f80f20006c0 Delete type=3 #307 +2024/09/03-23:57:01.714865 7f80f20006c0 Delete type=0 #309 +2024/09/04-00:02:12.496079 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.496122 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.502129 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.521438 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.521486 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) diff --git a/packs/boonsflawscreatures/MANIFEST-000303 b/packs/boonsflawscreatures/MANIFEST-000315 similarity index 73% rename from packs/boonsflawscreatures/MANIFEST-000303 rename to packs/boonsflawscreatures/MANIFEST-000315 index acc0d26..d6d0a70 100644 Binary files a/packs/boonsflawscreatures/MANIFEST-000303 and b/packs/boonsflawscreatures/MANIFEST-000315 differ diff --git a/packs/careers/000305.log b/packs/careers/000317.log similarity index 100% rename from packs/careers/000305.log rename to packs/careers/000317.log diff --git a/packs/careers/CURRENT b/packs/careers/CURRENT index 284c57b..073c26f 100644 --- a/packs/careers/CURRENT +++ b/packs/careers/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/careers/LOG b/packs/careers/LOG index e9dfd7a..e402223 100644 --- a/packs/careers/LOG +++ b/packs/careers/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.513300 7f1474c006c0 Recovering log #301 -2024/08/12-22:22:36.524215 7f1474c006c0 Delete type=3 #299 -2024/08/12-22:22:36.524271 7f1474c006c0 Delete type=0 #301 -2024/08/12-22:24:19.294026 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.294078 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.300326 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.300533 7f146fe006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.300580 7f146fe006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.337427 7f80f20006c0 Recovering log #313 +2024/09/04-08:29:45.385247 7f80f20006c0 Delete type=3 #311 +2024/09/04-08:29:45.385347 7f80f20006c0 Delete type=0 #313 +2024/09/04-08:55:35.015910 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.015983 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.023688 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.024104 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.024208 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) diff --git a/packs/careers/LOG.old b/packs/careers/LOG.old index fef4b6c..9e0e117 100644 --- a/packs/careers/LOG.old +++ b/packs/careers/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.647136 7f1476a006c0 Recovering log #297 -2024/08/12-14:24:59.658341 7f1476a006c0 Delete type=3 #295 -2024/08/12-14:24:59.658389 7f1476a006c0 Delete type=0 #297 -2024/08/12-15:14:31.810317 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.812977 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.819987 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.840600 7f146fe006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.840654 7f146fe006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.783330 7f80f3e006c0 Recovering log #309 +2024/09/03-23:57:01.838726 7f80f3e006c0 Delete type=3 #307 +2024/09/03-23:57:01.838785 7f80f3e006c0 Delete type=0 #309 +2024/09/04-00:02:12.508272 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.508294 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.514198 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.521467 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.521503 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) diff --git a/packs/careers/MANIFEST-000303 b/packs/careers/MANIFEST-000315 similarity index 72% rename from packs/careers/MANIFEST-000303 rename to packs/careers/MANIFEST-000315 index 3d59570..d50dd1a 100644 Binary files a/packs/careers/MANIFEST-000303 and b/packs/careers/MANIFEST-000315 differ diff --git a/packs/effets-exemples/000303.log b/packs/effets-exemples/000315.log similarity index 100% rename from packs/effets-exemples/000303.log rename to packs/effets-exemples/000315.log diff --git a/packs/effets-exemples/CURRENT b/packs/effets-exemples/CURRENT index 066a17b..e6b0e26 100644 --- a/packs/effets-exemples/CURRENT +++ b/packs/effets-exemples/CURRENT @@ -1 +1 @@ -MANIFEST-000301 +MANIFEST-000313 diff --git a/packs/effets-exemples/LOG b/packs/effets-exemples/LOG index 73bf397..d819a06 100644 --- a/packs/effets-exemples/LOG +++ b/packs/effets-exemples/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.709096 7f14760006c0 Recovering log #299 -2024/08/12-22:22:36.719849 7f14760006c0 Delete type=3 #297 -2024/08/12-22:22:36.719957 7f14760006c0 Delete type=0 #299 -2024/08/12-22:24:19.364925 7f146fe006c0 Level-0 table #304: started -2024/08/12-22:24:19.364969 7f146fe006c0 Level-0 table #304: 0 bytes OK -2024/08/12-22:24:19.372290 7f146fe006c0 Delete type=0 #302 -2024/08/12-22:24:19.389594 7f146fe006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.389641 7f146fe006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.792446 7f80f34006c0 Recovering log #311 +2024/09/04-08:29:45.814564 7f80f34006c0 Delete type=3 #309 +2024/09/04-08:29:45.814808 7f80f34006c0 Delete type=0 #311 +2024/09/04-08:55:35.119784 7f80f10006c0 Level-0 table #316: started +2024/09/04-08:55:35.119834 7f80f10006c0 Level-0 table #316: 0 bytes OK +2024/09/04-08:55:35.127260 7f80f10006c0 Delete type=0 #314 +2024/09/04-08:55:35.146545 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.146620 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) diff --git a/packs/effets-exemples/LOG.old b/packs/effets-exemples/LOG.old index de1da3e..10e4f0d 100644 --- a/packs/effets-exemples/LOG.old +++ b/packs/effets-exemples/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.845850 7f14760006c0 Recovering log #295 -2024/08/12-14:24:59.856716 7f14760006c0 Delete type=3 #293 -2024/08/12-14:24:59.856868 7f14760006c0 Delete type=0 #295 -2024/08/12-15:14:31.940476 7f146fe006c0 Level-0 table #300: started -2024/08/12-15:14:31.940532 7f146fe006c0 Level-0 table #300: 0 bytes OK -2024/08/12-15:14:31.946997 7f146fe006c0 Delete type=0 #298 -2024/08/12-15:14:31.953834 7f146fe006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.965266 7f146fe006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.921085 7f80f34006c0 Recovering log #307 +2024/09/03-23:57:02.974041 7f80f34006c0 Delete type=3 #305 +2024/09/03-23:57:02.974104 7f80f34006c0 Delete type=0 #307 +2024/09/04-00:02:12.594370 7f80f10006c0 Level-0 table #312: started +2024/09/04-00:02:12.594419 7f80f10006c0 Level-0 table #312: 0 bytes OK +2024/09/04-00:02:12.600538 7f80f10006c0 Delete type=0 #310 +2024/09/04-00:02:12.625472 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.625539 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) diff --git a/packs/effets-exemples/MANIFEST-000301 b/packs/effets-exemples/MANIFEST-000313 similarity index 73% rename from packs/effets-exemples/MANIFEST-000301 rename to packs/effets-exemples/MANIFEST-000313 index d6db2db..5e02c97 100644 Binary files a/packs/effets-exemples/MANIFEST-000301 and b/packs/effets-exemples/MANIFEST-000313 differ diff --git a/packs/equipment/000306.log b/packs/equipment/000318.log similarity index 100% rename from packs/equipment/000306.log rename to packs/equipment/000318.log diff --git a/packs/equipment/CURRENT b/packs/equipment/CURRENT index 3e78a5c..e90c1f7 100644 --- a/packs/equipment/CURRENT +++ b/packs/equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000304 +MANIFEST-000316 diff --git a/packs/equipment/LOG b/packs/equipment/LOG index 57af157..392ceac 100644 --- a/packs/equipment/LOG +++ b/packs/equipment/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.555704 7f14756006c0 Recovering log #302 -2024/08/12-22:22:36.566632 7f14756006c0 Delete type=3 #300 -2024/08/12-22:22:36.566685 7f14756006c0 Delete type=0 #302 -2024/08/12-22:24:19.273389 7f146fe006c0 Level-0 table #307: started -2024/08/12-22:24:19.273414 7f146fe006c0 Level-0 table #307: 0 bytes OK -2024/08/12-22:24:19.279499 7f146fe006c0 Delete type=0 #305 -2024/08/12-22:24:19.300478 7f146fe006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.300735 7f146fe006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.493437 7f80f3e006c0 Recovering log #314 +2024/09/04-08:29:45.515415 7f80f3e006c0 Delete type=3 #312 +2024/09/04-08:29:45.515533 7f80f3e006c0 Delete type=0 #314 +2024/09/04-08:55:35.039308 7f80f10006c0 Level-0 table #319: started +2024/09/04-08:55:35.039346 7f80f10006c0 Level-0 table #319: 0 bytes OK +2024/09/04-08:55:35.045797 7f80f10006c0 Delete type=0 #317 +2024/09/04-08:55:35.053432 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.053506 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) diff --git a/packs/equipment/LOG.old b/packs/equipment/LOG.old index 225d9f4..227031f 100644 --- a/packs/equipment/LOG.old +++ b/packs/equipment/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.689555 7f14756006c0 Recovering log #298 -2024/08/12-14:24:59.700195 7f14756006c0 Delete type=3 #296 -2024/08/12-14:24:59.700248 7f14756006c0 Delete type=0 #298 -2024/08/12-15:14:31.853236 7f146fe006c0 Level-0 table #303: started -2024/08/12-15:14:31.853280 7f146fe006c0 Level-0 table #303: 0 bytes OK -2024/08/12-15:14:31.860223 7f146fe006c0 Delete type=0 #301 -2024/08/12-15:14:31.867937 7f146fe006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.867974 7f146fe006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.978005 7f80f34006c0 Recovering log #310 +2024/09/03-23:57:02.062495 7f80f34006c0 Delete type=3 #308 +2024/09/03-23:57:02.062561 7f80f34006c0 Delete type=0 #310 +2024/09/04-00:02:12.540620 7f80f10006c0 Level-0 table #315: started +2024/09/04-00:02:12.540655 7f80f10006c0 Level-0 table #315: 0 bytes OK +2024/09/04-00:02:12.547462 7f80f10006c0 Delete type=0 #313 +2024/09/04-00:02:12.547615 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.547641 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) diff --git a/packs/equipment/MANIFEST-000304 b/packs/equipment/MANIFEST-000316 similarity index 73% rename from packs/equipment/MANIFEST-000304 rename to packs/equipment/MANIFEST-000316 index 6f4d70f..d0deb1d 100644 Binary files a/packs/equipment/MANIFEST-000304 and b/packs/equipment/MANIFEST-000316 differ diff --git a/packs/fightoptions/000304.log b/packs/fightoptions/000316.log similarity index 100% rename from packs/fightoptions/000304.log rename to packs/fightoptions/000316.log diff --git a/packs/fightoptions/CURRENT b/packs/fightoptions/CURRENT index 093b738..616c076 100644 --- a/packs/fightoptions/CURRENT +++ b/packs/fightoptions/CURRENT @@ -1 +1 @@ -MANIFEST-000302 +MANIFEST-000314 diff --git a/packs/fightoptions/LOG b/packs/fightoptions/LOG index 7f5173a..20ecccd 100644 --- a/packs/fightoptions/LOG +++ b/packs/fightoptions/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.669427 7f14756006c0 Recovering log #300 -2024/08/12-22:22:36.679352 7f14756006c0 Delete type=3 #298 -2024/08/12-22:22:36.679408 7f14756006c0 Delete type=0 #300 -2024/08/12-22:24:19.343213 7f146fe006c0 Level-0 table #305: started -2024/08/12-22:24:19.343237 7f146fe006c0 Level-0 table #305: 0 bytes OK -2024/08/12-22:24:19.350586 7f146fe006c0 Delete type=0 #303 -2024/08/12-22:24:19.357356 7f146fe006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.357462 7f146fe006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.709007 7f80f3e006c0 Recovering log #312 +2024/09/04-08:29:45.733181 7f80f3e006c0 Delete type=3 #310 +2024/09/04-08:29:45.733331 7f80f3e006c0 Delete type=0 #312 +2024/09/04-08:55:35.089354 7f80f10006c0 Level-0 table #317: started +2024/09/04-08:55:35.089399 7f80f10006c0 Level-0 table #317: 0 bytes OK +2024/09/04-08:55:35.096826 7f80f10006c0 Delete type=0 #315 +2024/09/04-08:55:35.112520 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.112626 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) diff --git a/packs/fightoptions/LOG.old b/packs/fightoptions/LOG.old index 878aaa1..6dfb4b1 100644 --- a/packs/fightoptions/LOG.old +++ b/packs/fightoptions/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.805392 7f14756006c0 Recovering log #296 -2024/08/12-14:24:59.815257 7f14756006c0 Delete type=3 #294 -2024/08/12-14:24:59.815311 7f14756006c0 Delete type=0 #296 -2024/08/12-15:14:31.908687 7f146fe006c0 Level-0 table #301: started -2024/08/12-15:14:31.908731 7f146fe006c0 Level-0 table #301: 0 bytes OK -2024/08/12-15:14:31.915933 7f146fe006c0 Delete type=0 #299 -2024/08/12-15:14:31.922743 7f146fe006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.922808 7f146fe006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.729641 7f80f3e006c0 Recovering log #308 +2024/09/03-23:57:02.791542 7f80f3e006c0 Delete type=3 #306 +2024/09/03-23:57:02.791637 7f80f3e006c0 Delete type=0 #308 +2024/09/04-00:02:12.587081 7f80f10006c0 Level-0 table #313: started +2024/09/04-00:02:12.587145 7f80f10006c0 Level-0 table #313: 0 bytes OK +2024/09/04-00:02:12.593984 7f80f10006c0 Delete type=0 #311 +2024/09/04-00:02:12.594221 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.594283 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) diff --git a/packs/fightoptions/MANIFEST-000302 b/packs/fightoptions/MANIFEST-000314 similarity index 73% rename from packs/fightoptions/MANIFEST-000302 rename to packs/fightoptions/MANIFEST-000314 index d0655dc..742f645 100644 Binary files a/packs/fightoptions/MANIFEST-000302 and b/packs/fightoptions/MANIFEST-000314 differ diff --git a/packs/flaws/000305.log b/packs/flaws/000317.log similarity index 100% rename from packs/flaws/000305.log rename to packs/flaws/000317.log diff --git a/packs/flaws/CURRENT b/packs/flaws/CURRENT index 284c57b..073c26f 100644 --- a/packs/flaws/CURRENT +++ b/packs/flaws/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/flaws/LOG b/packs/flaws/LOG index 3be1e41..af4a518 100644 --- a/packs/flaws/LOG +++ b/packs/flaws/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.500455 7f14756006c0 Recovering log #301 -2024/08/12-22:22:36.510370 7f14756006c0 Delete type=3 #299 -2024/08/12-22:22:36.510467 7f14756006c0 Delete type=0 #301 -2024/08/12-22:24:19.260077 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.260133 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.266719 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.273212 7f146fe006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.273249 7f146fe006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.289560 7f80f3e006c0 Recovering log #313 +2024/09/04-08:29:45.334158 7f80f3e006c0 Delete type=3 #311 +2024/09/04-08:29:45.334251 7f80f3e006c0 Delete type=0 #313 +2024/09/04-08:55:35.002154 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.002242 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.008788 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.024042 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.024156 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) diff --git a/packs/flaws/LOG.old b/packs/flaws/LOG.old index 819f019..7c64c3d 100644 --- a/packs/flaws/LOG.old +++ b/packs/flaws/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.633499 7f14756006c0 Recovering log #297 -2024/08/12-14:24:59.643504 7f14756006c0 Delete type=3 #295 -2024/08/12-14:24:59.643606 7f14756006c0 Delete type=0 #297 -2024/08/12-15:14:31.820154 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.820205 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.826207 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.840623 7f146fe006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.840662 7f146fe006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.721377 7f80f34006c0 Recovering log #309 +2024/09/03-23:57:01.776658 7f80f34006c0 Delete type=3 #307 +2024/09/03-23:57:01.776714 7f80f34006c0 Delete type=0 #309 +2024/09/04-00:02:12.514386 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.514437 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.521280 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.521478 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.521512 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) diff --git a/packs/flaws/MANIFEST-000303 b/packs/flaws/MANIFEST-000315 similarity index 73% rename from packs/flaws/MANIFEST-000303 rename to packs/flaws/MANIFEST-000315 index 64562a5..a81cb47 100644 Binary files a/packs/flaws/MANIFEST-000303 and b/packs/flaws/MANIFEST-000315 differ diff --git a/packs/godsfaith/000304.log b/packs/godsfaith/000316.log similarity index 100% rename from packs/godsfaith/000304.log rename to packs/godsfaith/000316.log diff --git a/packs/godsfaith/CURRENT b/packs/godsfaith/CURRENT index 093b738..616c076 100644 --- a/packs/godsfaith/CURRENT +++ b/packs/godsfaith/CURRENT @@ -1 +1 @@ -MANIFEST-000302 +MANIFEST-000314 diff --git a/packs/godsfaith/LOG b/packs/godsfaith/LOG index fdf8f3a..11334f6 100644 --- a/packs/godsfaith/LOG +++ b/packs/godsfaith/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.655094 7f14760006c0 Recovering log #300 -2024/08/12-22:22:36.666046 7f14760006c0 Delete type=3 #298 -2024/08/12-22:22:36.666099 7f14760006c0 Delete type=0 #300 -2024/08/12-22:24:19.350808 7f146fe006c0 Level-0 table #305: started -2024/08/12-22:24:19.350848 7f146fe006c0 Level-0 table #305: 0 bytes OK -2024/08/12-22:24:19.357169 7f146fe006c0 Delete type=0 #303 -2024/08/12-22:24:19.357384 7f146fe006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.357488 7f146fe006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.683134 7f80f34006c0 Recovering log #312 +2024/09/04-08:29:45.705019 7f80f34006c0 Delete type=3 #310 +2024/09/04-08:29:45.705164 7f80f34006c0 Delete type=0 #312 +2024/09/04-08:55:35.097039 7f80f10006c0 Level-0 table #317: started +2024/09/04-08:55:35.097075 7f80f10006c0 Level-0 table #317: 0 bytes OK +2024/09/04-08:55:35.103696 7f80f10006c0 Delete type=0 #315 +2024/09/04-08:55:35.112549 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.112652 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) diff --git a/packs/godsfaith/LOG.old b/packs/godsfaith/LOG.old index 79e3dee..0c75797 100644 --- a/packs/godsfaith/LOG.old +++ b/packs/godsfaith/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.790839 7f14760006c0 Recovering log #296 -2024/08/12-14:24:59.801540 7f14760006c0 Delete type=3 #294 -2024/08/12-14:24:59.801595 7f14760006c0 Delete type=0 #296 -2024/08/12-15:14:31.902415 7f146fe006c0 Level-0 table #301: started -2024/08/12-15:14:31.902463 7f146fe006c0 Level-0 table #301: 0 bytes OK -2024/08/12-15:14:31.908530 7f146fe006c0 Delete type=0 #299 -2024/08/12-15:14:31.922732 7f146fe006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.922775 7f146fe006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.666135 7f80f34006c0 Recovering log #308 +2024/09/03-23:57:02.722130 7f80f34006c0 Delete type=3 #306 +2024/09/03-23:57:02.722238 7f80f34006c0 Delete type=0 #308 +2024/09/04-00:02:12.580228 7f80f10006c0 Level-0 table #313: started +2024/09/04-00:02:12.580253 7f80f10006c0 Level-0 table #313: 0 bytes OK +2024/09/04-00:02:12.586840 7f80f10006c0 Delete type=0 #311 +2024/09/04-00:02:12.594205 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.594266 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) diff --git a/packs/godsfaith/MANIFEST-000302 b/packs/godsfaith/MANIFEST-000314 similarity index 76% rename from packs/godsfaith/MANIFEST-000302 rename to packs/godsfaith/MANIFEST-000314 index c7c0676..27a3e33 100644 Binary files a/packs/godsfaith/MANIFEST-000302 and b/packs/godsfaith/MANIFEST-000314 differ diff --git a/packs/languages/000305.log b/packs/languages/000317.log similarity index 100% rename from packs/languages/000305.log rename to packs/languages/000317.log diff --git a/packs/languages/CURRENT b/packs/languages/CURRENT index 284c57b..073c26f 100644 --- a/packs/languages/CURRENT +++ b/packs/languages/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/languages/LOG b/packs/languages/LOG index 6d4ae34..4c18313 100644 --- a/packs/languages/LOG +++ b/packs/languages/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.629308 7f1474c006c0 Recovering log #301 -2024/08/12-22:22:36.639961 7f1474c006c0 Delete type=3 #299 -2024/08/12-22:22:36.640023 7f1474c006c0 Delete type=0 #301 -2024/08/12-22:24:19.322043 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.322091 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.328713 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.328879 7f146fe006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.328908 7f146fe006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.628430 7f80f20006c0 Recovering log #313 +2024/09/04-08:29:45.650295 7f80f20006c0 Delete type=3 #311 +2024/09/04-08:29:45.650414 7f80f20006c0 Delete type=0 #313 +2024/09/04-08:55:35.067585 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.067673 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.075311 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.082099 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.082155 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) diff --git a/packs/languages/LOG.old b/packs/languages/LOG.old index a3f35be..82f7cc1 100644 --- a/packs/languages/LOG.old +++ b/packs/languages/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.763075 7f1476a006c0 Recovering log #297 -2024/08/12-14:24:59.773060 7f1476a006c0 Delete type=3 #295 -2024/08/12-14:24:59.773198 7f1476a006c0 Delete type=0 #297 -2024/08/12-15:14:31.881862 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.881911 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.888239 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.894987 7f146fe006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.895018 7f146fe006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.521039 7f80f20006c0 Recovering log #309 +2024/09/03-23:57:02.598636 7f80f20006c0 Delete type=3 #307 +2024/09/03-23:57:02.598696 7f80f20006c0 Delete type=0 #309 +2024/09/04-00:02:12.566783 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.566808 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.573557 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.594165 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.594235 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) diff --git a/packs/languages/MANIFEST-000303 b/packs/languages/MANIFEST-000315 similarity index 73% rename from packs/languages/MANIFEST-000303 rename to packs/languages/MANIFEST-000315 index ba39068..760a5b3 100644 Binary files a/packs/languages/MANIFEST-000303 and b/packs/languages/MANIFEST-000315 differ diff --git a/packs/objets-alchimie/000305.log b/packs/objets-alchimie/000317.log similarity index 100% rename from packs/objets-alchimie/000305.log rename to packs/objets-alchimie/000317.log diff --git a/packs/objets-alchimie/CURRENT b/packs/objets-alchimie/CURRENT index 284c57b..073c26f 100644 --- a/packs/objets-alchimie/CURRENT +++ b/packs/objets-alchimie/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/objets-alchimie/LOG b/packs/objets-alchimie/LOG index 8d90399..f48a7fa 100644 --- a/packs/objets-alchimie/LOG +++ b/packs/objets-alchimie/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.694438 7f1476a006c0 Recovering log #301 -2024/08/12-22:22:36.705954 7f1476a006c0 Delete type=3 #299 -2024/08/12-22:22:36.706016 7f1476a006c0 Delete type=0 #301 -2024/08/12-22:24:19.357633 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.357706 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.364683 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.389584 7f146fe006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.389621 7f146fe006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.765001 7f80f2a006c0 Recovering log #313 +2024/09/04-08:29:45.788819 7f80f2a006c0 Delete type=3 #311 +2024/09/04-08:29:45.788950 7f80f2a006c0 Delete type=0 #313 +2024/09/04-08:55:35.112898 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.113011 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.119600 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.146523 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.146600 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) diff --git a/packs/objets-alchimie/LOG.old b/packs/objets-alchimie/LOG.old index 5fa2a72..9bdb1b8 100644 --- a/packs/objets-alchimie/LOG.old +++ b/packs/objets-alchimie/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.832587 7f1474c006c0 Recovering log #297 -2024/08/12-14:24:59.842202 7f1474c006c0 Delete type=3 #295 -2024/08/12-14:24:59.842302 7f1474c006c0 Delete type=0 #297 -2024/08/12-15:14:31.947158 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.947195 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.953642 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.953846 7f146fe006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.965285 7f146fe006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.858975 7f80f2a006c0 Recovering log #309 +2024/09/03-23:57:02.913613 7f80f2a006c0 Delete type=3 #307 +2024/09/03-23:57:02.913669 7f80f2a006c0 Delete type=0 #309 +2024/09/04-00:02:12.608054 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.608097 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.614495 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.625516 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.625559 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) diff --git a/packs/objets-alchimie/MANIFEST-000303 b/packs/objets-alchimie/MANIFEST-000315 similarity index 73% rename from packs/objets-alchimie/MANIFEST-000303 rename to packs/objets-alchimie/MANIFEST-000315 index 895dc5d..d438899 100644 Binary files a/packs/objets-alchimie/MANIFEST-000303 and b/packs/objets-alchimie/MANIFEST-000315 differ diff --git a/packs/origins/000305.log b/packs/origins/000317.log similarity index 100% rename from packs/origins/000305.log rename to packs/origins/000317.log diff --git a/packs/origins/CURRENT b/packs/origins/CURRENT index 284c57b..073c26f 100644 --- a/packs/origins/CURRENT +++ b/packs/origins/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/origins/LOG b/packs/origins/LOG index 9743c49..68cb228 100644 --- a/packs/origins/LOG +++ b/packs/origins/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.527859 7f1476a006c0 Recovering log #301 -2024/08/12-22:22:36.537836 7f1476a006c0 Delete type=3 #299 -2024/08/12-22:22:36.537941 7f1476a006c0 Delete type=0 #301 -2024/08/12-22:24:19.245764 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.245830 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.252603 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.273190 7f146fe006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.273236 7f146fe006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.388988 7f80f2a006c0 Recovering log #313 +2024/09/04-08:29:45.461532 7f80f2a006c0 Delete type=3 #311 +2024/09/04-08:29:45.461673 7f80f2a006c0 Delete type=0 #313 +2024/09/04-08:55:35.031416 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.031477 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.039121 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.053410 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.053487 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) diff --git a/packs/origins/LOG.old b/packs/origins/LOG.old index 87ccd1d..5d747a2 100644 --- a/packs/origins/LOG.old +++ b/packs/origins/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.661738 7f1474c006c0 Recovering log #297 -2024/08/12-14:24:59.671865 7f1474c006c0 Delete type=3 #295 -2024/08/12-14:24:59.671915 7f1474c006c0 Delete type=0 #297 -2024/08/12-15:14:31.846935 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.846967 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.853057 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.867923 7f146fe006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.867966 7f146fe006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.845674 7f80f2a006c0 Recovering log #309 +2024/09/03-23:57:01.899154 7f80f2a006c0 Delete type=3 #307 +2024/09/03-23:57:01.899286 7f80f2a006c0 Delete type=0 #309 +2024/09/04-00:02:12.534195 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.534250 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.540487 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.547606 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.547635 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) diff --git a/packs/origins/MANIFEST-000303 b/packs/origins/MANIFEST-000315 similarity index 72% rename from packs/origins/MANIFEST-000303 rename to packs/origins/MANIFEST-000315 index 2be967d..5a9a32a 100644 Binary files a/packs/origins/MANIFEST-000303 and b/packs/origins/MANIFEST-000315 differ diff --git a/packs/potions-alchimie/000305.log b/packs/potions-alchimie/000317.log similarity index 100% rename from packs/potions-alchimie/000305.log rename to packs/potions-alchimie/000317.log diff --git a/packs/potions-alchimie/CURRENT b/packs/potions-alchimie/CURRENT index 284c57b..073c26f 100644 --- a/packs/potions-alchimie/CURRENT +++ b/packs/potions-alchimie/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/potions-alchimie/LOG b/packs/potions-alchimie/LOG index 6f5fabe..5121a0b 100644 --- a/packs/potions-alchimie/LOG +++ b/packs/potions-alchimie/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.681905 7f1474c006c0 Recovering log #301 -2024/08/12-22:22:36.691535 7f1474c006c0 Delete type=3 #299 -2024/08/12-22:22:36.691594 7f1474c006c0 Delete type=0 #301 -2024/08/12-22:24:19.329033 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.329057 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.336458 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.357324 7f146fe006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.357410 7f146fe006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.737290 7f80f20006c0 Recovering log #313 +2024/09/04-08:29:45.761609 7f80f20006c0 Delete type=3 #311 +2024/09/04-08:29:45.761710 7f80f20006c0 Delete type=0 #313 +2024/09/04-08:55:35.103875 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.103934 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.112160 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.112573 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.112706 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) diff --git a/packs/potions-alchimie/LOG.old b/packs/potions-alchimie/LOG.old index 7e10709..7ca73a6 100644 --- a/packs/potions-alchimie/LOG.old +++ b/packs/potions-alchimie/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.817820 7f1476a006c0 Recovering log #297 -2024/08/12-14:24:59.829066 7f1476a006c0 Delete type=3 #295 -2024/08/12-14:24:59.829197 7f1476a006c0 Delete type=0 #297 -2024/08/12-15:14:31.916124 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.916173 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.922560 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.922766 7f146fe006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.922816 7f146fe006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.798029 7f80f20006c0 Recovering log #309 +2024/09/03-23:57:02.852893 7f80f20006c0 Delete type=3 #307 +2024/09/03-23:57:02.852957 7f80f20006c0 Delete type=0 #309 +2024/09/04-00:02:12.600662 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.600686 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.607867 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.625502 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.625548 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) diff --git a/packs/potions-alchimie/MANIFEST-000303 b/packs/potions-alchimie/MANIFEST-000315 similarity index 73% rename from packs/potions-alchimie/MANIFEST-000303 rename to packs/potions-alchimie/MANIFEST-000315 index 1672515..e578f96 100644 Binary files a/packs/potions-alchimie/MANIFEST-000303 and b/packs/potions-alchimie/MANIFEST-000315 differ diff --git a/packs/races/000305.log b/packs/races/000317.log similarity index 100% rename from packs/races/000305.log rename to packs/races/000317.log diff --git a/packs/races/CURRENT b/packs/races/CURRENT index 284c57b..073c26f 100644 --- a/packs/races/CURRENT +++ b/packs/races/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/races/LOG b/packs/races/LOG index 3e51dd8..0df666a 100644 --- a/packs/races/LOG +++ b/packs/races/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.542626 7f14760006c0 Recovering log #301 -2024/08/12-22:22:36.552800 7f14760006c0 Delete type=3 #299 -2024/08/12-22:22:36.552854 7f14760006c0 Delete type=0 #301 -2024/08/12-22:24:19.286697 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.286730 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.293817 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.300517 7f146fe006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.300566 7f146fe006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.464980 7f80f34006c0 Recovering log #313 +2024/09/04-08:29:45.490148 7f80f34006c0 Delete type=3 #311 +2024/09/04-08:29:45.490265 7f80f34006c0 Delete type=0 #313 +2024/09/04-08:55:35.024395 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.024475 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.031136 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.053373 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.053467 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) diff --git a/packs/races/LOG.old b/packs/races/LOG.old index 59d7cd6..fc0dd47 100644 --- a/packs/races/LOG.old +++ b/packs/races/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.676428 7f14760006c0 Recovering log #297 -2024/08/12-14:24:59.686359 7f14760006c0 Delete type=3 #295 -2024/08/12-14:24:59.686411 7f14760006c0 Delete type=0 #297 -2024/08/12-15:14:31.840778 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.840812 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.846814 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.867903 7f146fe006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.867958 7f146fe006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) +2024/09/03-23:57:01.916540 7f80f20006c0 Recovering log #309 +2024/09/03-23:57:01.971084 7f80f20006c0 Delete type=3 #307 +2024/09/03-23:57:01.971164 7f80f20006c0 Delete type=0 #309 +2024/09/04-00:02:12.521599 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.521659 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.527723 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.547585 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.566660 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) diff --git a/packs/races/MANIFEST-000303 b/packs/races/MANIFEST-000315 similarity index 73% rename from packs/races/MANIFEST-000303 rename to packs/races/MANIFEST-000315 index 4dd3f50..2e2af3a 100644 Binary files a/packs/races/MANIFEST-000303 and b/packs/races/MANIFEST-000315 differ diff --git a/packs/spells/000305.log b/packs/spells/000317.log similarity index 100% rename from packs/spells/000305.log rename to packs/spells/000317.log diff --git a/packs/spells/CURRENT b/packs/spells/CURRENT index 284c57b..073c26f 100644 --- a/packs/spells/CURRENT +++ b/packs/spells/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000315 diff --git a/packs/spells/LOG b/packs/spells/LOG index f83c5c8..3aabad9 100644 --- a/packs/spells/LOG +++ b/packs/spells/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.643096 7f1476a006c0 Recovering log #301 -2024/08/12-22:22:36.652584 7f1476a006c0 Delete type=3 #299 -2024/08/12-22:22:36.652643 7f1476a006c0 Delete type=0 #301 -2024/08/12-22:24:19.336653 7f146fe006c0 Level-0 table #306: started -2024/08/12-22:24:19.336694 7f146fe006c0 Level-0 table #306: 0 bytes OK -2024/08/12-22:24:19.343085 7f146fe006c0 Delete type=0 #304 -2024/08/12-22:24:19.357341 7f146fe006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.357436 7f146fe006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.655079 7f80f2a006c0 Recovering log #313 +2024/09/04-08:29:45.680053 7f80f2a006c0 Delete type=3 #311 +2024/09/04-08:29:45.680170 7f80f2a006c0 Delete type=0 #313 +2024/09/04-08:55:35.082269 7f80f10006c0 Level-0 table #318: started +2024/09/04-08:55:35.082316 7f80f10006c0 Level-0 table #318: 0 bytes OK +2024/09/04-08:55:35.089165 7f80f10006c0 Delete type=0 #316 +2024/09/04-08:55:35.112477 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.112600 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) diff --git a/packs/spells/LOG.old b/packs/spells/LOG.old index ce47d91..0b62fe2 100644 --- a/packs/spells/LOG.old +++ b/packs/spells/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.776734 7f1474c006c0 Recovering log #297 -2024/08/12-14:24:59.787373 7f1474c006c0 Delete type=3 #295 -2024/08/12-14:24:59.787500 7f1474c006c0 Delete type=0 #297 -2024/08/12-15:14:31.895104 7f146fe006c0 Level-0 table #302: started -2024/08/12-15:14:31.895138 7f146fe006c0 Level-0 table #302: 0 bytes OK -2024/08/12-15:14:31.902306 7f146fe006c0 Delete type=0 #300 -2024/08/12-15:14:31.922719 7f146fe006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.922784 7f146fe006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.604977 7f80f2a006c0 Recovering log #309 +2024/09/03-23:57:02.659870 7f80f2a006c0 Delete type=3 #307 +2024/09/03-23:57:02.659925 7f80f2a006c0 Delete type=0 #309 +2024/09/04-00:02:12.573763 7f80f10006c0 Level-0 table #314: started +2024/09/04-00:02:12.573826 7f80f10006c0 Level-0 table #314: 0 bytes OK +2024/09/04-00:02:12.580109 7f80f10006c0 Delete type=0 #312 +2024/09/04-00:02:12.594186 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.594250 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) diff --git a/packs/spells/MANIFEST-000303 b/packs/spells/MANIFEST-000315 similarity index 73% rename from packs/spells/MANIFEST-000303 rename to packs/spells/MANIFEST-000315 index 4be30ed..7ecf57d 100644 Binary files a/packs/spells/MANIFEST-000303 and b/packs/spells/MANIFEST-000315 differ diff --git a/packs/vehicleweapons/000212.log b/packs/vehicleweapons/000224.log similarity index 100% rename from packs/vehicleweapons/000212.log rename to packs/vehicleweapons/000224.log diff --git a/packs/vehicleweapons/CURRENT b/packs/vehicleweapons/CURRENT index af31d42..a8d01b2 100644 --- a/packs/vehicleweapons/CURRENT +++ b/packs/vehicleweapons/CURRENT @@ -1 +1 @@ -MANIFEST-000210 +MANIFEST-000222 diff --git a/packs/vehicleweapons/LOG b/packs/vehicleweapons/LOG index f4611a5..254ea5f 100644 --- a/packs/vehicleweapons/LOG +++ b/packs/vehicleweapons/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.600894 7f14760006c0 Recovering log #208 -2024/08/12-22:22:36.611841 7f14760006c0 Delete type=3 #206 -2024/08/12-22:22:36.611974 7f14760006c0 Delete type=0 #208 -2024/08/12-22:24:19.307405 7f146fe006c0 Level-0 table #213: started -2024/08/12-22:24:19.307456 7f146fe006c0 Level-0 table #213: 0 bytes OK -2024/08/12-22:24:19.315163 7f146fe006c0 Delete type=0 #211 -2024/08/12-22:24:19.328855 7f146fe006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.328894 7f146fe006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.572168 7f80f34006c0 Recovering log #220 +2024/09/04-08:29:45.596979 7f80f34006c0 Delete type=3 #218 +2024/09/04-08:29:45.597113 7f80f34006c0 Delete type=0 #220 +2024/09/04-08:55:35.060765 7f80f10006c0 Level-0 table #225: started +2024/09/04-08:55:35.060804 7f80f10006c0 Level-0 table #225: 0 bytes OK +2024/09/04-08:55:35.067304 7f80f10006c0 Delete type=0 #223 +2024/09/04-08:55:35.082083 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.082142 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) diff --git a/packs/vehicleweapons/LOG.old b/packs/vehicleweapons/LOG.old index 0b8d221..fddbef0 100644 --- a/packs/vehicleweapons/LOG.old +++ b/packs/vehicleweapons/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.735039 7f14760006c0 Recovering log #204 -2024/08/12-14:24:59.746320 7f14760006c0 Delete type=3 #202 -2024/08/12-14:24:59.746431 7f14760006c0 Delete type=0 #204 -2024/08/12-15:14:31.874299 7f146fe006c0 Level-0 table #209: started -2024/08/12-15:14:31.874344 7f146fe006c0 Level-0 table #209: 0 bytes OK -2024/08/12-15:14:31.881684 7f146fe006c0 Delete type=0 #207 -2024/08/12-15:14:31.894976 7f146fe006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.895011 7f146fe006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.303953 7f80f34006c0 Recovering log #216 +2024/09/03-23:57:02.401062 7f80f34006c0 Delete type=3 #214 +2024/09/03-23:57:02.401144 7f80f34006c0 Delete type=0 #216 +2024/09/04-00:02:12.547706 7f80f10006c0 Level-0 table #221: started +2024/09/04-00:02:12.547740 7f80f10006c0 Level-0 table #221: 0 bytes OK +2024/09/04-00:02:12.553588 7f80f10006c0 Delete type=0 #219 +2024/09/04-00:02:12.566670 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.566689 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) diff --git a/packs/vehicleweapons/MANIFEST-000210 b/packs/vehicleweapons/MANIFEST-000222 similarity index 73% rename from packs/vehicleweapons/MANIFEST-000210 rename to packs/vehicleweapons/MANIFEST-000222 index 41c2117..8760cd0 100644 Binary files a/packs/vehicleweapons/MANIFEST-000210 and b/packs/vehicleweapons/MANIFEST-000222 differ diff --git a/packs/weapons/000216.log b/packs/weapons/000228.log similarity index 100% rename from packs/weapons/000216.log rename to packs/weapons/000228.log diff --git a/packs/weapons/CURRENT b/packs/weapons/CURRENT index f0a2cf1..72f074e 100644 --- a/packs/weapons/CURRENT +++ b/packs/weapons/CURRENT @@ -1 +1 @@ -MANIFEST-000214 +MANIFEST-000226 diff --git a/packs/weapons/LOG b/packs/weapons/LOG index 2cf13ed..196d845 100644 --- a/packs/weapons/LOG +++ b/packs/weapons/LOG @@ -1,8 +1,8 @@ -2024/08/12-22:22:36.570130 7f1474c006c0 Recovering log #212 -2024/08/12-22:22:36.579735 7f1474c006c0 Delete type=3 #210 -2024/08/12-22:22:36.579839 7f1474c006c0 Delete type=0 #212 -2024/08/12-22:24:19.279670 7f146fe006c0 Level-0 table #217: started -2024/08/12-22:24:19.279711 7f146fe006c0 Level-0 table #217: 0 bytes OK -2024/08/12-22:24:19.286552 7f146fe006c0 Delete type=0 #215 -2024/08/12-22:24:19.300498 7f146fe006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) -2024/08/12-22:24:19.300548 7f146fe006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) +2024/09/04-08:29:45.519219 7f80f20006c0 Recovering log #224 +2024/09/04-08:29:45.540052 7f80f20006c0 Delete type=3 #222 +2024/09/04-08:29:45.540150 7f80f20006c0 Delete type=0 #224 +2024/09/04-08:55:35.046034 7f80f10006c0 Level-0 table #229: started +2024/09/04-08:55:35.046147 7f80f10006c0 Level-0 table #229: 0 bytes OK +2024/09/04-08:55:35.053132 7f80f10006c0 Delete type=0 #227 +2024/09/04-08:55:35.053449 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) +2024/09/04-08:55:35.053524 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) diff --git a/packs/weapons/LOG.old b/packs/weapons/LOG.old index 9e68880..53954ee 100644 --- a/packs/weapons/LOG.old +++ b/packs/weapons/LOG.old @@ -1,8 +1,8 @@ -2024/08/12-14:24:59.706651 7f1476a006c0 Recovering log #208 -2024/08/12-14:24:59.716230 7f1476a006c0 Delete type=3 #206 -2024/08/12-14:24:59.716291 7f1476a006c0 Delete type=0 #208 -2024/08/12-15:14:31.860558 7f146fe006c0 Level-0 table #213: started -2024/08/12-15:14:31.860611 7f146fe006c0 Level-0 table #213: 0 bytes OK -2024/08/12-15:14:31.867654 7f146fe006c0 Delete type=0 #211 -2024/08/12-15:14:31.867950 7f146fe006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) -2024/08/12-15:14:31.867984 7f146fe006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) +2024/09/03-23:57:02.078931 7f80f3e006c0 Recovering log #220 +2024/09/03-23:57:02.174757 7f80f3e006c0 Delete type=3 #218 +2024/09/03-23:57:02.174947 7f80f3e006c0 Delete type=0 #220 +2024/09/04-00:02:12.527840 7f80f10006c0 Level-0 table #225: started +2024/09/04-00:02:12.527868 7f80f10006c0 Level-0 table #225: 0 bytes OK +2024/09/04-00:02:12.533992 7f80f10006c0 Delete type=0 #223 +2024/09/04-00:02:12.547597 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) +2024/09/04-00:02:12.547622 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) diff --git a/packs/weapons/MANIFEST-000214 b/packs/weapons/MANIFEST-000226 similarity index 72% rename from packs/weapons/MANIFEST-000214 rename to packs/weapons/MANIFEST-000226 index 8a2c4cd..d790b1c 100644 Binary files a/packs/weapons/MANIFEST-000214 and b/packs/weapons/MANIFEST-000226 differ diff --git a/system.json b/system.json index 4b6b711..77f6f6a 100644 --- a/system.json +++ b/system.json @@ -14,9 +14,9 @@ ], "url": "https://www.uberwald.me/gitea/public/bol", "license": "LICENSE.txt", - "version": "12.0.1", + "version": "12.0.2", "compatibility": { - "minimum": "12", + "minimum": "11", "verified": "12" }, "esmodules": [ @@ -318,10 +318,12 @@ ], "socket": true, "manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json", - "download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.0.1.zip", + "download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.0.2.zip", "background": "systems/bol/ui/page_accueil.webp", - "gridDistance": 1.5, - "gridUnits": "m", "primaryTokenAttribute": "resources.hp", - "secondaryTokenAttribute": "resources.hero" + "secondaryTokenAttribute": "resources.hero", + "grid": { + "distance": 1.5, + "units": "m" + } } \ No newline at end of file diff --git a/templates/actor/parts/tabs/actor-equipment.hbs b/templates/actor/parts/tabs/actor-equipment.hbs index e5c77e5..94249de 100644 --- a/templates/actor/parts/tabs/actor-equipment.hbs +++ b/templates/actor/parts/tabs/actor-equipment.hbs @@ -1,5 +1,5 @@ - + {{#if useBougette}}
    @@ -66,10 +66,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -125,10 +125,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -177,10 +177,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -229,10 +229,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -281,10 +281,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -333,10 +333,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} @@ -385,10 +385,10 @@
    {{#if system.properties.equipable}} {{#if system.worn}} - {{else}} - {{/if}} {{/if}} diff --git a/templates/actor/parts/tabs/creature-actions.hbs b/templates/actor/parts/tabs/creature-actions.hbs index 20ffe2d..02d84b3 100644 --- a/templates/actor/parts/tabs/creature-actions.hbs +++ b/templates/actor/parts/tabs/creature-actions.hbs @@ -6,6 +6,7 @@
    {{localize combatType.label}}
    {{#if protection}}
    {{localize "BOL.ui.protection"}}
    {{/if}} {{#if blocking}}
    {{localize "BOL.ui.blocking"}}
    {{/if}} + {{#if weapon}}
    {{localize "BOL.ui.attackModifier"}}
    {{/if}} {{#if weapon}}
    {{localize "BOL.ui.damages"}}
    {{/if}} {{#if ranged}}
    {{localize "BOL.ui.range"}}
    {{else}}
    {{/if}} {{#if options}}
    {{localize "BOL.ui.status"}}
    {{else}}
    {{/if}} @@ -17,6 +18,7 @@

    {{#if ../weapon}}{{/if}}{{item.name}}{{#if ../weapon}}{{/if}}

    {{#if ../protection}}
    {{item.system.properties.soak.formula}} / {{item.system.properties.soak.value}}
    {{/if}} {{#if ../blocking}}
    {{item.system.properties.blocking.malus}}
    {{/if}} + {{#if ../weapon}}
    {{item.system.properties.attackModifiers}}
    {{/if}} {{#if ../weapon}}{{/if}} {{#if ../ranged}}
    {{item.system.properties.range}}
    {{else}}
    {{/if}} {{#if ../options}}
    @@ -63,3 +65,9 @@
{{/if}} {{/each}} + +
+ +      + +
diff --git a/templates/actor/parts/tabs/creature-stats.hbs b/templates/actor/parts/tabs/creature-stats.hbs index f61f270..be66ba4 100644 --- a/templates/actor/parts/tabs/creature-stats.hbs +++ b/templates/actor/parts/tabs/creature-stats.hbs @@ -14,7 +14,13 @@