Various minor fixes + fix roll result

This commit is contained in:
LeRatierBretonnien 2024-09-04 08:57:26 +02:00
parent 321052fd33
commit e6bdc427f2
100 changed files with 750 additions and 601 deletions

View File

@ -175,6 +175,7 @@
"BOL.ui.armorAgiMalus": "Armor+Shield Modifier (Agi)", "BOL.ui.armorAgiMalus": "Armor+Shield Modifier (Agi)",
"BOL.ui.armorInitMalus": "Armor Modifier (Init)", "BOL.ui.armorInitMalus": "Armor Modifier (Init)",
"BOL.ui.attackValue": "Attack Value", "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.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.initMalus": "Init malus",
"BOL.ui.creature": "Creature", "BOL.ui.creature": "Creature",
@ -214,7 +215,12 @@
"BOL.ui.horoscopeDiceRemaining": "Remaining Dice", "BOL.ui.horoscopeDiceRemaining": "Remaining Dice",
"BOL.ui.horoscopeDiceMax": "Max Dice", "BOL.ui.horoscopeDiceMax": "Max Dice",
"BOL.ui.astrologyNoPoints": "You do not have enough Astrology Points!", "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.origins": "Origins",
"BOL.featureCategory.races": "Races", "BOL.featureCategory.races": "Races",
"BOL.featureCategory.careers": "Careers", "BOL.featureCategory.careers": "Careers",
@ -231,7 +237,7 @@
"BOL.featureSubtypes.language": "Language", "BOL.featureSubtypes.language": "Language",
"BOL.featureSubtypes.gods": "Faith & Gods", "BOL.featureSubtypes.gods": "Faith & Gods",
"BOL.featureSubtypes.fightOption": "Combat Option", "BOL.featureSubtypes.fightOption": "Combat Option",
"BOL.featureSubtypes.effect": "Effcet", "BOL.featureSubtypes.effect": "Effect",
"BOL.featureSubtypes.effects": "Effects", "BOL.featureSubtypes.effects": "Effects",
"BOL.featureSubtypes.boleffect": "Effect", "BOL.featureSubtypes.boleffect": "Effect",
"BOL.featureSubtypes.horoscope": "Horoscope", "BOL.featureSubtypes.horoscope": "Horoscope",
@ -260,6 +266,7 @@
"BOL.itemCategory.other": "Other", "BOL.itemCategory.other": "Other",
"BOL.itemCategory.capacity" : "Capacity", "BOL.itemCategory.capacity" : "Capacity",
"BOL.itemCategory.alchemy": "Alchemy", "BOL.itemCategory.alchemy": "Alchemy",
"BOL.itemCategory.vehicleweapon": "Vehicle weapon",
"BOL.combatCategory.protections": "Protections", "BOL.combatCategory.protections": "Protections",
"BOL.combatCategory.shields": "Shields", "BOL.combatCategory.shields": "Shields",

View File

@ -203,6 +203,7 @@
"BOL.ui.armorAgiMalus": "Malus d'Armure+Bouclier (Agi)", "BOL.ui.armorAgiMalus": "Malus d'Armure+Bouclier (Agi)",
"BOL.ui.armorInitMalus": "Malus d'Armure (Init)", "BOL.ui.armorInitMalus": "Malus d'Armure (Init)",
"BOL.ui.attackValue": "Valeur d'attaque", "BOL.ui.attackValue": "Valeur d'attaque",
"BOL.ui.attackModifier": "Attaque",
"BOL.ui.vehicleWeapons": "Armes de véhicules", "BOL.ui.vehicleWeapons": "Armes de véhicules",
"BOL.ui.hullDamage": "D.coque", "BOL.ui.hullDamage": "D.coque",
"BOL.ui.crewDamage": "D.équipage", "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.warninitiative": "Votre initiative n'est pas disponible. Effectuez un jet d'Initiative pour ce combat.",
"BOL.ui.isspecial": "Spéciale ?", "BOL.ui.isspecial": "Spéciale ?",
"BOL.ui.createEquipment": "Créer un Equipement", "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.origins": "Origines",
"BOL.featureCategory.races": "Races", "BOL.featureCategory.races": "Races",
"BOL.featureCategory.careers": "Carrières", "BOL.featureCategory.careers": "Carrières",

View File

@ -47,10 +47,19 @@ export class BoLActorSheet extends ActorSheet {
// Equip/Unequip item // Equip/Unequip item
html.find('.item-equip').click(this._onToggleEquip.bind(this)); html.find('.item-equip').click(this._onToggleEquip.bind(this));
html.find('.create_item').click(ev => { html.find('.create-item').click(ev => {
this.actor.createEmbeddedDocuments('Item', [{ name: "Nouvel Equipement", type: "item" }], { renderSheet: true }); 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) => { html.find(".toggle-fight-option").click((ev) => {
const li = $(ev.currentTarget).parents(".item") const li = $(ev.currentTarget).parents(".item")
this.actor.toggleFightOption(li.data("itemId")) this.actor.toggleFightOption(li.data("itemId"))

View File

@ -20,6 +20,7 @@ export class BoLActor extends Actor {
} }
super.prepareData() super.prepareData()
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
async _preCreate(data, options, user) { async _preCreate(data, options, user) {

View File

@ -632,13 +632,25 @@ export class BoLDefaultRoll {
const activeDice = r.terms[0].results.filter(r => r.active) const activeDice = r.terms[0].results.filter(r => r.active)
const diceTotal = activeDice.map(r => r.result).reduce((a, b) => a + b) const diceTotal = activeDice.map(r => r.result).reduce((a, b) => a + b)
this.rollData.roll = r 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.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) let actor = BoLUtility.getActorFromRollData(this.rollData)
if (this.rollData.reroll == undefined) { if (this.rollData.reroll == undefined) {

View File

@ -10,14 +10,14 @@ System.debugMode = true;
export const BOL = {}; export const BOL = {};
BOL.damageValues = { BOL.damageValues = {
"1": "1", "1": "1",
"2": "2", "2": "2",
"3": "3", "3": "3",
"d3" : "d3", "d3": "d3",
"d6M" : "d6M (Malus)", "d6M": "d6M (Malus)",
"d6" : "d6", "d6": "d6",
"d6B" : "d6B (Bonus)", "d6B": "d6B (Bonus)",
"d6BB" : "d6B + dé bonus", "d6BB": "d6B + dé bonus",
} }
BOL.damageMultiplier = { BOL.damageMultiplier = {
@ -55,125 +55,125 @@ BOL.alchemyType = {
} }
BOL.equipmentSlots = { BOL.equipmentSlots = {
"none" : "BOL.equipmentSlots.none", "none": "BOL.equipmentSlots.none",
"head" : "BOL.equipmentSlots.head", "head": "BOL.equipmentSlots.head",
"neck" : "BOL.equipmentSlots.neck", "neck": "BOL.equipmentSlots.neck",
"shoulders" : "BOL.equipmentSlots.shoulders", "shoulders": "BOL.equipmentSlots.shoulders",
"body" : "BOL.equipmentSlots.body", "body": "BOL.equipmentSlots.body",
"rhand" : "BOL.equipmentSlots.rhand", "rhand": "BOL.equipmentSlots.rhand",
"lhand" : "BOL.equipmentSlots.lhand", "lhand": "BOL.equipmentSlots.lhand",
"2hands" : "BOL.equipmentSlots.2hands", "2hands": "BOL.equipmentSlots.2hands",
"rarm" : "BOL.equipmentSlots.rarm", "rarm": "BOL.equipmentSlots.rarm",
"larm" : "BOL.equipmentSlots.larm", "larm": "BOL.equipmentSlots.larm",
"chest" : "BOL.equipmentSlots.chest", "chest": "BOL.equipmentSlots.chest",
"belt" : "BOL.equipmentSlots.belt", "belt": "BOL.equipmentSlots.belt",
"legs" : "BOL.equipmentSlots.legs", "legs": "BOL.equipmentSlots.legs",
"feet" : "BOL.equipmentSlots.feet", "feet": "BOL.equipmentSlots.feet",
"finder" : "BOL.equipmentSlots.finder", "finder": "BOL.equipmentSlots.finder",
"ear" : "BOL.equipmentSlots.ear" "ear": "BOL.equipmentSlots.ear"
} }
BOL.armorQualities = { BOL.armorQualities = {
"none" : "BOL.armorQuality.none", "none": "BOL.armorQuality.none",
"light" : "BOL.armorQuality.light", "light": "BOL.armorQuality.light",
"lightQ" : "BOL.armorQuality.lightQ", "lightQ": "BOL.armorQuality.lightQ",
"lightSup" : "BOL.armorQuality.lightSup", "lightSup": "BOL.armorQuality.lightSup",
"lightLeg" : "BOL.armorQuality.lightLeg", "lightLeg": "BOL.armorQuality.lightLeg",
"medium" : "BOL.armorQuality.medium", "medium": "BOL.armorQuality.medium",
"mediumQ" : "BOL.armorQuality.mediumQ", "mediumQ": "BOL.armorQuality.mediumQ",
"mediumSup" : "BOL.armorQuality.mediumSup", "mediumSup": "BOL.armorQuality.mediumSup",
"mediumLeg" : "BOL.armorQuality.mediumLeg", "mediumLeg": "BOL.armorQuality.mediumLeg",
"heavy" : "BOL.armorQuality.heavy", "heavy": "BOL.armorQuality.heavy",
"heavyQ" : "BOL.armorQuality.heavyQ", "heavyQ": "BOL.armorQuality.heavyQ",
"heavySup" : "BOL.armorQuality.heavySup", "heavySup": "BOL.armorQuality.heavySup",
"heavyLeg" : "BOL.armorQuality.heavyLeg" "heavyLeg": "BOL.armorQuality.heavyLeg"
} }
BOL.soakFormulas = { BOL.soakFormulas = {
"none" : "0", "none": "0",
"light" : "1d6-3", "light": "1d6-3",
"lightQ" : "1d6r1-3", "lightQ": "1d6r1-3",
"lightSup" : "1d6-2", "lightSup": "1d6-2",
"lightLeg" : "2d6kh1-2", "lightLeg": "2d6kh1-2",
"medium" : "1d6-2", "medium": "1d6-2",
"mediumQ" : "1d6r1-2", "mediumQ": "1d6r1-2",
"mediumSup" : "1d6-1", "mediumSup": "1d6-1",
"mediumLeg" : "2d6kh1-1", "mediumLeg": "2d6kh1-1",
"heavy" : "1d6-1", "heavy": "1d6-1",
"heavyQ" : "1d6r1-1", "heavyQ": "1d6r1-1",
"heavySup" : "1d6", "heavySup": "1d6",
"heavyLeg" : "2d6kh1" "heavyLeg": "2d6kh1"
} }
BOL.attackAttributes = { BOL.attackAttributes = {
"vigor" : "BOL.attributes.vigor", "vigor": "BOL.attributes.vigor",
"agility" : "BOL.attributes.agility", "agility": "BOL.attributes.agility",
"mind" : "BOL.attributes.mind", "mind": "BOL.attributes.mind",
"appeal" : "BOL.attributes.appeal" "appeal": "BOL.attributes.appeal"
} }
BOL.attackAptitudes = { BOL.attackAptitudes = {
"melee" : "BOL.aptitudes.melee", "melee": "BOL.aptitudes.melee",
"ranged" : "BOL.aptitudes.ranged" "ranged": "BOL.aptitudes.ranged"
} }
BOL.aptitudes = { BOL.aptitudes = {
"melee" : "BOL.aptitudes.melee", "melee": "BOL.aptitudes.melee",
"ranged" : "BOL.aptitudes.ranged", "ranged": "BOL.aptitudes.ranged",
"init" : "BOL.aptitudes.init", "init": "BOL.aptitudes.init",
"def" : "BOL.aptitudes.def" "def": "BOL.aptitudes.def"
} }
BOL.resources = { BOL.resources = {
"hp" : "BOL.resources.hp", "hp": "BOL.resources.hp",
"hero" : "BOL.resources.hero", "hero": "BOL.resources.hero",
"faith" : "BOL.resources.faith", "faith": "BOL.resources.faith",
"power" : "BOL.resources.power", "power": "BOL.resources.power",
"alchemypoints" : "BOL.resources.alchemypoints" "alchemypoints": "BOL.resources.alchemypoints"
} }
BOL.weaponSizes = { BOL.weaponSizes = {
"unarmed" : "BOL.weaponSize.unarmed", "unarmed": "BOL.weaponSize.unarmed",
"improvised" : "BOL.weaponSize.improvised", "improvised": "BOL.weaponSize.improvised",
"light" : "BOL.weaponSize.light", "light": "BOL.weaponSize.light",
"medium" : "BOL.weaponSize.medium", "medium": "BOL.weaponSize.medium",
"heavy" : "BOL.weaponSize.heavy" "heavy": "BOL.weaponSize.heavy"
} }
BOL.damageAttributes = { BOL.damageAttributes = {
"zero" : "0", "zero": "0",
"vigor" : "BOL.attributes.vigor", "vigor": "BOL.attributes.vigor",
"half-vigor" : "BOL.attributes.halfvigor" "half-vigor": "BOL.attributes.halfvigor"
} }
BOL.itemCategories = { BOL.itemCategories = {
"equipment" : "BOL.itemCategory.equipment", "equipment": "BOL.itemCategory.equipment",
"capacity" : "BOL.itemCategory.capacity", "capacity": "BOL.itemCategory.capacity",
"spell" : "BOL.itemCategory.spell", "spell": "BOL.itemCategory.spell",
"alchemy" : "BOL.itemCategory.alchemy", "alchemy": "BOL.itemCategory.alchemy",
"vehicle" : "BOL.itemCategory.vehicle", "vehicle": "BOL.itemCategory.vehicle",
"vehicleweapon": "BOL.itemCategory.vehicleweapon", "vehicleweapon": "BOL.itemCategory.vehicleweapon",
"other" : "BOL.itemCategory.other" "other": "BOL.itemCategory.other"
} }
BOL.itemSubtypes = { BOL.itemSubtypes = {
"armor" : "BOL.equipmentCategory.armor", "armor": "BOL.equipmentCategory.armor",
"weapon" : "BOL.equipmentCategory.weapon", "weapon": "BOL.equipmentCategory.weapon",
"shield" : "BOL.equipmentCategory.shield", "shield": "BOL.equipmentCategory.shield",
"helm" : "BOL.equipmentCategory.helm", "helm": "BOL.equipmentCategory.helm",
"jewel" : "BOL.equipmentCategory.jewel", "jewel": "BOL.equipmentCategory.jewel",
"scroll" : "BOL.equipmentCategory.scroll", "scroll": "BOL.equipmentCategory.scroll",
"container" : "BOL.equipmentCategory.container", "container": "BOL.equipmentCategory.container",
"ammunition" : "BOL.equipmentCategory.ammunition", "ammunition": "BOL.equipmentCategory.ammunition",
"currency" : "BOL.equipmentCategory.currency", "currency": "BOL.equipmentCategory.currency",
"other" : "BOL.equipmentCategory.other" "other": "BOL.equipmentCategory.other"
} }
BOL.vehicleSubtypes = { BOL.vehicleSubtypes = {
"mount" : "BOL.vehicleCategory.mount", "mount": "BOL.vehicleCategory.mount",
"flying" : "BOL.vehicleCategory.flying", "flying": "BOL.vehicleCategory.flying",
"boat" : "BOL.vehicleCategory.boat", "boat": "BOL.vehicleCategory.boat",
"other" : "BOL.vehicleCategory.other" "other": "BOL.vehicleCategory.other"
} }
// BOL.equipmentCategories = { // BOL.equipmentCategories = {
@ -190,27 +190,27 @@ BOL.vehicleSubtypes = {
// } // }
BOL.rangeModifiers = { BOL.rangeModifiers = {
"1": "BOL.dialog.pointblank", "1": "BOL.dialog.pointblank",
"0": "BOL.dialog.close", "0": "BOL.dialog.close",
"-1": "BOL.dialog.medium", "-1": "BOL.dialog.medium",
"-2": "BOL.dialog.long", "-2": "BOL.dialog.long",
"-4": "BOL.dialog.distant", "-4": "BOL.dialog.distant",
"-6": "BOL.dialog.extreme", "-6": "BOL.dialog.extreme",
"-8": "BOL.dialog.utmost" "-8": "BOL.dialog.utmost"
} }
BOL.difficultyModifiers = { BOL.difficultyModifiers = {
"4": "BOL.dialog.soeasy", "4": "BOL.dialog.soeasy",
"2": "BOL.dialog.veryeasy", "2": "BOL.dialog.veryeasy",
"1": "BOL.dialog.easy", "1": "BOL.dialog.easy",
"0": "BOL.dialog.moderate", "0": "BOL.dialog.moderate",
"-1": "BOL.dialog.hard", "-1": "BOL.dialog.hard",
"-2": "BOL.dialog.tough", "-2": "BOL.dialog.tough",
"-4": "BOL.dialog.demanding", "-4": "BOL.dialog.demanding",
"-6": "BOL.dialog.formidable", "-6": "BOL.dialog.formidable",
"-8": "BOL.dialog.heroic", "-8": "BOL.dialog.heroic",
"-10": "BOL.dialog.mythic", "-10": "BOL.dialog.mythic",
"-12": "BOL.dialog.divine" "-12": "BOL.dialog.divine"
} }
BOL.alchemyModifiers = { BOL.alchemyModifiers = {
@ -245,97 +245,97 @@ BOL.effectIdentifiers = {
"always": "BOL.ui.always", "always": "BOL.ui.always",
} }
BOL.protectionCategories = { BOL.protectionCategories = {
"armor" : "BOL.protectionCategory.armor", "armor": "BOL.protectionCategory.armor",
"shield" : "BOL.protectionCategory.shield", "shield": "BOL.protectionCategory.shield",
"helm" : "BOL.protectionCategory.helm", "helm": "BOL.protectionCategory.helm",
"other" : "BOL.protectionCategory.other" "other": "BOL.protectionCategory.other"
} }
BOL.weaponCategories = { BOL.weaponCategories = {
"melee" : "BOL.weaponCategory.melee", "melee": "BOL.weaponCategory.melee",
"ranged" : "BOL.weaponCategory.ranged", "ranged": "BOL.weaponCategory.ranged",
"other" : "BOL.weaponCategory.other" "other": "BOL.weaponCategory.other"
} }
BOL.itemProperties1 = { BOL.itemProperties1 = {
"equipable" : "BOL.itemProperty.equipable", "equipable": "BOL.itemProperty.equipable",
"protection" : "BOL.itemProperty.protection", "protection": "BOL.itemProperty.protection",
"magical" : "BOL.itemProperty.magical", "magical": "BOL.itemProperty.magical",
"worn" : "BOL.itemProperty.worn", "worn": "BOL.itemProperty.worn",
} }
BOL.itemProperties2 = { BOL.itemProperties2 = {
"equipable" : "BOL.itemProperty.equipable", "equipable": "BOL.itemProperty.equipable",
"protection" : "BOL.itemProperty.protection", "protection": "BOL.itemProperty.protection",
"blocking" : "BOL.itemProperty.blocking", "blocking": "BOL.itemProperty.blocking",
"magical" : "BOL.itemProperty.magical", "magical": "BOL.itemProperty.magical",
"concealable" : "BOL.itemProperty.concealable", "concealable": "BOL.itemProperty.concealable",
"2H" : "BOL.itemProperty.2H", "2H": "BOL.itemProperty.2H",
"helm" : "BOL.itemProperty.helm", "helm": "BOL.itemProperty.helm",
"improvised" : "BOL.itemProperty.improvised", "improvised": "BOL.itemProperty.improvised",
"shield" : "BOL.itemProperty.shield", "shield": "BOL.itemProperty.shield",
"melee" : "BOL.itemProperty.melee", "melee": "BOL.itemProperty.melee",
"throwable" : "BOL.itemProperty.throwable", "throwable": "BOL.itemProperty.throwable",
"ignoreshield" : "BOL.itemProperty.ignoreshield", "ignoreshield": "BOL.itemProperty.ignoreshield",
"bashing" : "BOL.itemProperty.bashing", "bashing": "BOL.itemProperty.bashing",
"stackable" : "BOL.itemProperty.stackable", "stackable": "BOL.itemProperty.stackable",
"ranged" : "BOL.itemProperty.ranged", "ranged": "BOL.itemProperty.ranged",
"weapon" : "BOL.itemProperty.weapon", "weapon": "BOL.itemProperty.weapon",
"reloadable" : "BOL.itemProperty.reloadable", "reloadable": "BOL.itemProperty.reloadable",
"worn" : "BOL.itemProperty.worn", "worn": "BOL.itemProperty.worn",
"spell" : "BOL.itemProperty.spell", "spell": "BOL.itemProperty.spell",
"armor" : "BOL.itemProperty.armor", "armor": "BOL.itemProperty.armor",
"consumable" : "BOL.itemProperty.consumable", "consumable": "BOL.itemProperty.consumable",
"bow" : "BOL.itemProperty.bow", "bow": "BOL.itemProperty.bow",
"crossbow" : "BOL.itemProperty.crossbow", "crossbow": "BOL.itemProperty.crossbow",
"throwing" : "BOL.itemProperty.throwing", "throwing": "BOL.itemProperty.throwing",
"activable" : "BOL.itemProperty.activable", "activable": "BOL.itemProperty.activable",
"powder" : "BOL.itemProperty.powder", "powder": "BOL.itemProperty.powder",
"damage" : "BOL.itemProperty.damage", "damage": "BOL.itemProperty.damage",
"difficulty": "BOL.itemProperty.difficulty" "difficulty": "BOL.itemProperty.difficulty"
} }
BOL.itemStats = { BOL.itemStats = {
"quantity" : "BOL.itemStat.quantity", "quantity": "BOL.itemStat.quantity",
"weight" : "BOL.itemStat.weight", "weight": "BOL.itemStat.weight",
"price" : "BOL.itemStat.price", "price": "BOL.itemStat.price",
"range" : "BOL.itemStat.range", "range": "BOL.itemStat.range",
"damage" : "BOL.itemStat.damage", "damage": "BOL.itemStat.damage",
"reload" : "BOL.itemStat.reload", "reload": "BOL.itemStat.reload",
"soak" : "BOL.itemStat.soak", "soak": "BOL.itemStat.soak",
"blocking" : "BOL.itemStat.blocking", "blocking": "BOL.itemStat.blocking",
"modifiers" : "BOL.itemStat.modifiers" "modifiers": "BOL.itemStat.modifiers"
} }
BOL.itemModifiers = { BOL.itemModifiers = {
"init" : "BOL.itemModifiers.init", "init": "BOL.itemModifiers.init",
"social" : "BOL.itemModifiers.social", "social": "BOL.itemModifiers.social",
"agility" : "BOL.itemModifiers.agility", "agility": "BOL.itemModifiers.agility",
"powercost" : "BOL.itemModifiers.powercost" "powercost": "BOL.itemModifiers.powercost"
} }
BOL.itemBlocking = { BOL.itemBlocking = {
"malus" : "BOL.itemBlocking.malus", "malus": "BOL.itemBlocking.malus",
"nbAttacksPerRound" : "BOL.itemBlocking.nbAttacksPerRound" "nbAttacksPerRound": "BOL.itemBlocking.nbAttacksPerRound"
} }
BOL.itemSoak = { BOL.itemSoak = {
"formula" : "BOL.itemSoak.formula", "formula": "BOL.itemSoak.formula",
"value" : "BOL.itemSoak.value" "value": "BOL.itemSoak.value"
} }
BOL.featureSubtypes = { BOL.featureSubtypes = {
"origin" : "BOL.featureSubtypes.origin", "origin": "BOL.featureSubtypes.origin",
"race" : "BOL.featureSubtypes.race", "race": "BOL.featureSubtypes.race",
"career" : "BOL.featureSubtypes.career", "career": "BOL.featureSubtypes.career",
"boon" : "BOL.featureSubtypes.boon", "boon": "BOL.featureSubtypes.boon",
"flaw" : "BOL.featureSubtypes.flaw", "flaw": "BOL.featureSubtypes.flaw",
"language" : "BOL.featureSubtypes.language", "language": "BOL.featureSubtypes.language",
"godsfaith" : "BOL.featureSubtypes.gods", "godsfaith": "BOL.featureSubtypes.gods",
"fightoption" : "BOL.featureSubtypes.fightOption", "fightoption": "BOL.featureSubtypes.fightOption",
"boleffect": "BOL.featureSubtypes.effect", "boleffect": "BOL.featureSubtypes.effect",
"horoscope": "BOL.featureSubtypes.horoscope", "horoscope": "BOL.featureSubtypes.horoscope",
"xplog": "BOL.featureSubtypes.xplog", "xplog": "BOL.featureSubtypes.xplog",
} }
BOL.fightOptionTypes = { BOL.fightOptionTypes = {
@ -350,17 +350,17 @@ BOL.fightOptionTypes = {
} }
BOL.itemIcons = { BOL.itemIcons = {
"item": "icons/containers/chest/chest-worn-oak-tan.webp", "item": "icons/containers/chest/chest-worn-oak-tan.webp",
"feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp", "feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
"species": "icons/environment/people/group.webp", "species": "icons/environment/people/group.webp",
"profile": "icons/sundries/documents/blueprint-axe.webp", "profile": "icons/sundries/documents/blueprint-axe.webp",
"path": "icons/sundries/books/book-embossed-gold-red.webp" "path": "icons/sundries/books/book-embossed-gold-red.webp"
} }
BOL.actorIcons = { BOL.actorIcons = {
"npc": "icons/environment/people/commoner.webp", "npc": "icons/environment/people/commoner.webp",
"encounter": "icons/svg/mystery-man-black.svg", "encounter": "icons/svg/mystery-man-black.svg",
"loot": "icons/containers/bags/sack-simple-leather-brown.webp" "loot": "icons/containers/bags/sack-simple-leather-brown.webp"
} }
BOL.bougetteState = { BOL.bougetteState = {
@ -379,18 +379,18 @@ BOL.bougetteDice = {
} }
BOL.creatureSize = { BOL.creatureSize = {
"tiny": {order: 1, label: "BOL.size.tiny"}, "tiny": { order: 1, label: "BOL.size.tiny" },
"verysmall": {order: 2, label: "BOL.size.verysmall"}, "verysmall": { order: 2, label: "BOL.size.verysmall" },
"small": {order: 3, label: "BOL.size.small"}, "small": { order: 3, label: "BOL.size.small" },
"medium": {order: 4, label: "BOL.size.medium"}, "medium": { order: 4, label: "BOL.size.medium" },
"large": {order: 5, label: "BOL.size.large"}, "large": { order: 5, label: "BOL.size.large" },
"verylarge": {order: 6, label: "BOL.size.verylarge"}, "verylarge": { order: 6, label: "BOL.size.verylarge" },
"huge": {order: 7, label: "BOL.size.huge"}, "huge": { order: 7, label: "BOL.size.huge" },
"massive": {order: 8, label: "BOL.size.massive"}, "massive": { order: 8, label: "BOL.size.massive" },
"enormous": {order: 9, label: "BOL.size.enormous"}, "enormous": { order: 9, label: "BOL.size.enormous" },
"gigantic": {order: 10, label: "BOL.size.gigantic"}, "gigantic": { order: 10, label: "BOL.size.gigantic" },
"immense": {order: 11, label: "BOL.size.immense"}, "immense": { order: 11, label: "BOL.size.immense" },
"colossal": {order: 12, label: "BOL.size.colossal"} "colossal": { order: 12, label: "BOL.size.colossal" }
} }
BOL.horoscopeAnswer = { BOL.horoscopeAnswer = {
@ -417,110 +417,208 @@ BOL.bolEffectModifier = {
BOL.statusEffects = [ BOL.statusEffects = [
{ {
"id": "dead", "id": "dead",
"label": "EFFECT.StatusDead", "label": "EFFECT.StatusDead",
"icon": "icons/svg/skull.svg" "icon": "icons/svg/skull.svg"
}, },
{ {
"id": "unconscious", "id": "unconscious",
"label": "EFFECT.StatusUnconscious", "label": "EFFECT.StatusUnconscious",
"icon": "icons/svg/unconscious.svg" "icon": "icons/svg/unconscious.svg"
}, },
{ {
"id": "sleep", "id": "sleep",
"label": "EFFECT.StatusAsleep", "label": "EFFECT.StatusAsleep",
"icon": "icons/svg/sleep.svg" "icon": "icons/svg/sleep.svg"
}, },
{ {
"id": "stun", "id": "stun",
"label": "EFFECT.StatusStunned", "label": "EFFECT.StatusStunned",
"icon": "icons/svg/daze.svg" "icon": "icons/svg/daze.svg"
}, },
{ {
"id": "prone", "id": "prone",
"label": "EFFECT.StatusProne", "label": "EFFECT.StatusProne",
"icon": "icons/svg/falling.svg" "icon": "icons/svg/falling.svg"
}, },
{ {
"id": "restrain", "id": "restrain",
"label": "EFFECT.StatusRestrained", "label": "EFFECT.StatusRestrained",
"icon": "icons/svg/net.svg" "icon": "icons/svg/net.svg"
}, },
{ {
"id": "paralysis", "id": "paralysis",
"label": "EFFECT.StatusParalysis", "label": "EFFECT.StatusParalysis",
"icon": "icons/svg/paralysis.svg" "icon": "icons/svg/paralysis.svg"
}, },
{ {
"id": "fly", "id": "fly",
"label": "EFFECT.StatusFlying", "label": "EFFECT.StatusFlying",
"icon": "icons/svg/wing.svg" "icon": "icons/svg/wing.svg"
}, },
{ {
"id": "blind", "id": "blind",
"label": "EFFECT.StatusBlind", "label": "EFFECT.StatusBlind",
"icon": "icons/svg/blind.svg" "icon": "icons/svg/blind.svg"
}, },
{ {
"id": "deaf", "id": "deaf",
"label": "EFFECT.StatusDeaf", "label": "EFFECT.StatusDeaf",
"icon": "icons/svg/deaf.svg" "icon": "icons/svg/deaf.svg"
}, },
{ {
"id": "silence", "id": "silence",
"label": "EFFECT.StatusSilenced", "label": "EFFECT.StatusSilenced",
"icon": "icons/svg/silenced.svg" "icon": "icons/svg/silenced.svg"
}, },
{ {
"id": "fear", "id": "fear",
"label": "EFFECT.StatusFear", "label": "EFFECT.StatusFear",
"icon": "icons/svg/terror.svg" "icon": "icons/svg/terror.svg"
}, },
{ {
"id": "burning", "id": "burning",
"label": "EFFECT.StatusBurning", "label": "EFFECT.StatusBurning",
"icon": "icons/svg/fire.svg" "icon": "icons/svg/fire.svg"
}, },
{ {
"id": "frozen", "id": "frozen",
"label": "EFFECT.StatusFrozen", "label": "EFFECT.StatusFrozen",
"icon": "icons/svg/frozen.svg" "icon": "icons/svg/frozen.svg"
}, },
{ {
"id": "shock", "id": "shock",
"label": "EFFECT.StatusShocked", "label": "EFFECT.StatusShocked",
"icon": "icons/svg/lightning.svg" "icon": "icons/svg/lightning.svg"
}, },
{ {
"id": "disease", "id": "disease",
"label": "EFFECT.StatusDisease", "label": "EFFECT.StatusDisease",
"icon": "icons/svg/biohazard.svg" "icon": "icons/svg/biohazard.svg"
}, },
{ {
"id": "poison", "id": "poison",
"label": "EFFECT.StatusPoison", "label": "EFFECT.StatusPoison",
"icon": "icons/svg/poison.svg" "icon": "icons/svg/poison.svg"
}, },
{ {
"id": "curse", "id": "curse",
"label": "EFFECT.StatusCursed", "label": "EFFECT.StatusCursed",
"icon": "icons/svg/sun.svg" "icon": "icons/svg/sun.svg"
}, },
{ {
"id": "invisible", "id": "invisible",
"label": "EFFECT.StatusInvisible", "label": "EFFECT.StatusInvisible",
"icon": "icons/svg/invisible.svg" "icon": "icons/svg/invisible.svg"
}, },
{ {
"id": "target", "id": "target",
"label": "EFFECT.StatusTarget", "label": "EFFECT.StatusTarget",
"icon": "icons/svg/target.svg" "icon": "icons/svg/target.svg"
}, },
{ {
"id": "eye", "id": "eye",
"label": "EFFECT.StatusMarked", "label": "EFFECT.StatusMarked",
"icon": "icons/svg/eye.svg" "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; BOL.debug = false;

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.614939 7f14756006c0 Recovering log #301 2024/09/04-08:29:45.600289 7f80f3e006c0 Recovering log #313
2024/08/12-22:22:36.625124 7f14756006c0 Delete type=3 #299 2024/09/04-08:29:45.624187 7f80f3e006c0 Delete type=3 #311
2024/08/12-22:22:36.625176 7f14756006c0 Delete type=0 #301 2024/09/04-08:29:45.624335 7f80f3e006c0 Delete type=0 #313
2024/08/12-22:24:19.300777 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.075489 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.300851 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.075528 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.307219 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.081858 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.082171 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.749548 7f14756006c0 Recovering log #297 2024/09/03-23:57:02.404112 7f80f3e006c0 Recovering log #309
2024/08/12-14:24:59.759617 7f14756006c0 Delete type=3 #295 2024/09/03-23:57:02.504332 7f80f3e006c0 Delete type=3 #307
2024/08/12-14:24:59.759718 7f14756006c0 Delete type=0 #297 2024/09/03-23:57:02.504411 7f80f3e006c0 Delete type=0 #309
2024/08/12-15:14:31.888362 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.553825 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.888390 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.553904 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.894838 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.560122 7f80f10006c0 Delete type=0 #312
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/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/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/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)

View File

@ -1 +1 @@
MANIFEST-000209 MANIFEST-000221

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.584046 7f1476a006c0 Recovering log #207 2024/09/04-08:29:45.543967 7f80f2a006c0 Recovering log #219
2024/08/12-22:22:36.594399 7f1476a006c0 Delete type=3 #205 2024/09/04-08:29:45.568470 7f80f2a006c0 Delete type=3 #217
2024/08/12-22:22:36.594454 7f1476a006c0 Delete type=0 #207 2024/09/04-08:29:45.568609 7f80f2a006c0 Delete type=0 #219
2024/08/12-22:24:19.315310 7f146fe006c0 Level-0 table #212: started 2024/09/04-08:55:35.053637 7f80f10006c0 Level-0 table #224: started
2024/08/12-22:24:19.315377 7f146fe006c0 Level-0 table #212: 0 bytes OK 2024/09/04-08:55:35.053701 7f80f10006c0 Level-0 table #224: 0 bytes OK
2024/08/12-22:24:19.321841 7f146fe006c0 Delete type=0 #210 2024/09/04-08:55:35.060581 7f80f10006c0 Delete type=0 #222
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/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/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:55:35.082130 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.720560 7f1474c006c0 Recovering log #203 2024/09/03-23:57:02.191364 7f80f2a006c0 Recovering log #215
2024/08/12-14:24:59.731538 7f1474c006c0 Delete type=3 #201 2024/09/03-23:57:02.292367 7f80f2a006c0 Delete type=3 #213
2024/08/12-14:24:59.731601 7f1474c006c0 Delete type=0 #203 2024/09/03-23:57:02.292426 7f80f2a006c0 Delete type=0 #215
2024/08/12-15:14:31.868072 7f146fe006c0 Level-0 table #208: started 2024/09/04-00:02:12.560295 7f80f10006c0 Level-0 table #220: started
2024/08/12-15:14:31.868103 7f146fe006c0 Level-0 table #208: 0 bytes OK 2024/09/04-00:02:12.560338 7f80f10006c0 Level-0 table #220: 0 bytes OK
2024/08/12-15:14:31.874133 7f146fe006c0 Delete type=0 #206 2024/09/04-00:02:12.566575 7f80f10006c0 Delete type=0 #218
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/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/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/04-00:02:12.566746 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.471458 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.183554 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.483054 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.233441 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.483128 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.233583 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.266903 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:34.993899 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.266943 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:34.993962 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.273091 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.001825 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.024130 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.604150 7f1474c006c0 Recovering log #297 2024/09/03-23:57:01.593096 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.615057 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:01.647346 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.615112 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:01.647452 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.833556 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.502227 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.833611 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.502249 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.840431 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.508162 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.521494 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.487187 7f14760006c0 Recovering log #301 2024/09/04-08:29:45.236757 7f80f34006c0 Recovering log #313
2024/08/12-22:22:36.497741 7f14760006c0 Delete type=3 #299 2024/09/04-08:29:45.285076 7f80f34006c0 Delete type=3 #311
2024/08/12-22:22:36.497799 7f14760006c0 Delete type=0 #301 2024/09/04-08:29:45.285171 7f80f34006c0 Delete type=0 #313
2024/08/12-22:24:19.252816 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.008961 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.252870 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.009000 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.259892 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.015744 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.024182 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.619377 7f14760006c0 Recovering log #297 2024/09/03-23:57:01.659093 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.630095 7f14760006c0 Delete type=3 #295 2024/09/03-23:57:01.714808 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.630243 7f14760006c0 Delete type=0 #297 2024/09/03-23:57:01.714865 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.826328 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.496079 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.826360 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.496122 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.833311 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.502129 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.521486 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.513300 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.337427 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.524215 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.385247 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.524271 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.385347 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.294026 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.015910 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.294078 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.015983 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.300326 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.023688 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.024208 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.647136 7f1476a006c0 Recovering log #297 2024/09/03-23:57:01.783330 7f80f3e006c0 Recovering log #309
2024/08/12-14:24:59.658341 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:01.838726 7f80f3e006c0 Delete type=3 #307
2024/08/12-14:24:59.658389 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:01.838785 7f80f3e006c0 Delete type=0 #309
2024/08/12-15:14:31.810317 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.508272 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.812977 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.508294 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.819987 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.514198 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.521503 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000301 MANIFEST-000313

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.709096 7f14760006c0 Recovering log #299 2024/09/04-08:29:45.792446 7f80f34006c0 Recovering log #311
2024/08/12-22:22:36.719849 7f14760006c0 Delete type=3 #297 2024/09/04-08:29:45.814564 7f80f34006c0 Delete type=3 #309
2024/08/12-22:22:36.719957 7f14760006c0 Delete type=0 #299 2024/09/04-08:29:45.814808 7f80f34006c0 Delete type=0 #311
2024/08/12-22:24:19.364925 7f146fe006c0 Level-0 table #304: started 2024/09/04-08:55:35.119784 7f80f10006c0 Level-0 table #316: started
2024/08/12-22:24:19.364969 7f146fe006c0 Level-0 table #304: 0 bytes OK 2024/09/04-08:55:35.119834 7f80f10006c0 Level-0 table #316: 0 bytes OK
2024/08/12-22:24:19.372290 7f146fe006c0 Delete type=0 #302 2024/09/04-08:55:35.127260 7f80f10006c0 Delete type=0 #314
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/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/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:55:35.146620 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.845850 7f14760006c0 Recovering log #295 2024/09/03-23:57:02.921085 7f80f34006c0 Recovering log #307
2024/08/12-14:24:59.856716 7f14760006c0 Delete type=3 #293 2024/09/03-23:57:02.974041 7f80f34006c0 Delete type=3 #305
2024/08/12-14:24:59.856868 7f14760006c0 Delete type=0 #295 2024/09/03-23:57:02.974104 7f80f34006c0 Delete type=0 #307
2024/08/12-15:14:31.940476 7f146fe006c0 Level-0 table #300: started 2024/09/04-00:02:12.594370 7f80f10006c0 Level-0 table #312: started
2024/08/12-15:14:31.940532 7f146fe006c0 Level-0 table #300: 0 bytes OK 2024/09/04-00:02:12.594419 7f80f10006c0 Level-0 table #312: 0 bytes OK
2024/08/12-15:14:31.946997 7f146fe006c0 Delete type=0 #298 2024/09/04-00:02:12.600538 7f80f10006c0 Delete type=0 #310
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/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/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/04-00:02:12.625539 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000304 MANIFEST-000316

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.555704 7f14756006c0 Recovering log #302 2024/09/04-08:29:45.493437 7f80f3e006c0 Recovering log #314
2024/08/12-22:22:36.566632 7f14756006c0 Delete type=3 #300 2024/09/04-08:29:45.515415 7f80f3e006c0 Delete type=3 #312
2024/08/12-22:22:36.566685 7f14756006c0 Delete type=0 #302 2024/09/04-08:29:45.515533 7f80f3e006c0 Delete type=0 #314
2024/08/12-22:24:19.273389 7f146fe006c0 Level-0 table #307: started 2024/09/04-08:55:35.039308 7f80f10006c0 Level-0 table #319: started
2024/08/12-22:24:19.273414 7f146fe006c0 Level-0 table #307: 0 bytes OK 2024/09/04-08:55:35.039346 7f80f10006c0 Level-0 table #319: 0 bytes OK
2024/08/12-22:24:19.279499 7f146fe006c0 Delete type=0 #305 2024/09/04-08:55:35.045797 7f80f10006c0 Delete type=0 #317
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/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/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:55:35.053506 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.689555 7f14756006c0 Recovering log #298 2024/09/03-23:57:01.978005 7f80f34006c0 Recovering log #310
2024/08/12-14:24:59.700195 7f14756006c0 Delete type=3 #296 2024/09/03-23:57:02.062495 7f80f34006c0 Delete type=3 #308
2024/08/12-14:24:59.700248 7f14756006c0 Delete type=0 #298 2024/09/03-23:57:02.062561 7f80f34006c0 Delete type=0 #310
2024/08/12-15:14:31.853236 7f146fe006c0 Level-0 table #303: started 2024/09/04-00:02:12.540620 7f80f10006c0 Level-0 table #315: started
2024/08/12-15:14:31.853280 7f146fe006c0 Level-0 table #303: 0 bytes OK 2024/09/04-00:02:12.540655 7f80f10006c0 Level-0 table #315: 0 bytes OK
2024/08/12-15:14:31.860223 7f146fe006c0 Delete type=0 #301 2024/09/04-00:02:12.547462 7f80f10006c0 Delete type=0 #313
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/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/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/04-00:02:12.547641 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000302 MANIFEST-000314

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.669427 7f14756006c0 Recovering log #300 2024/09/04-08:29:45.709007 7f80f3e006c0 Recovering log #312
2024/08/12-22:22:36.679352 7f14756006c0 Delete type=3 #298 2024/09/04-08:29:45.733181 7f80f3e006c0 Delete type=3 #310
2024/08/12-22:22:36.679408 7f14756006c0 Delete type=0 #300 2024/09/04-08:29:45.733331 7f80f3e006c0 Delete type=0 #312
2024/08/12-22:24:19.343213 7f146fe006c0 Level-0 table #305: started 2024/09/04-08:55:35.089354 7f80f10006c0 Level-0 table #317: started
2024/08/12-22:24:19.343237 7f146fe006c0 Level-0 table #305: 0 bytes OK 2024/09/04-08:55:35.089399 7f80f10006c0 Level-0 table #317: 0 bytes OK
2024/08/12-22:24:19.350586 7f146fe006c0 Delete type=0 #303 2024/09/04-08:55:35.096826 7f80f10006c0 Delete type=0 #315
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/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/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:55:35.112626 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.805392 7f14756006c0 Recovering log #296 2024/09/03-23:57:02.729641 7f80f3e006c0 Recovering log #308
2024/08/12-14:24:59.815257 7f14756006c0 Delete type=3 #294 2024/09/03-23:57:02.791542 7f80f3e006c0 Delete type=3 #306
2024/08/12-14:24:59.815311 7f14756006c0 Delete type=0 #296 2024/09/03-23:57:02.791637 7f80f3e006c0 Delete type=0 #308
2024/08/12-15:14:31.908687 7f146fe006c0 Level-0 table #301: started 2024/09/04-00:02:12.587081 7f80f10006c0 Level-0 table #313: started
2024/08/12-15:14:31.908731 7f146fe006c0 Level-0 table #301: 0 bytes OK 2024/09/04-00:02:12.587145 7f80f10006c0 Level-0 table #313: 0 bytes OK
2024/08/12-15:14:31.915933 7f146fe006c0 Delete type=0 #299 2024/09/04-00:02:12.593984 7f80f10006c0 Delete type=0 #311
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/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/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/04-00:02:12.594283 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.500455 7f14756006c0 Recovering log #301 2024/09/04-08:29:45.289560 7f80f3e006c0 Recovering log #313
2024/08/12-22:22:36.510370 7f14756006c0 Delete type=3 #299 2024/09/04-08:29:45.334158 7f80f3e006c0 Delete type=3 #311
2024/08/12-22:22:36.510467 7f14756006c0 Delete type=0 #301 2024/09/04-08:29:45.334251 7f80f3e006c0 Delete type=0 #313
2024/08/12-22:24:19.260077 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.002154 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.260133 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.002242 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.266719 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.008788 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.024156 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.633499 7f14756006c0 Recovering log #297 2024/09/03-23:57:01.721377 7f80f34006c0 Recovering log #309
2024/08/12-14:24:59.643504 7f14756006c0 Delete type=3 #295 2024/09/03-23:57:01.776658 7f80f34006c0 Delete type=3 #307
2024/08/12-14:24:59.643606 7f14756006c0 Delete type=0 #297 2024/09/03-23:57:01.776714 7f80f34006c0 Delete type=0 #309
2024/08/12-15:14:31.820154 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.514386 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.820205 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.514437 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.826207 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.521280 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.521512 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000302 MANIFEST-000314

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.655094 7f14760006c0 Recovering log #300 2024/09/04-08:29:45.683134 7f80f34006c0 Recovering log #312
2024/08/12-22:22:36.666046 7f14760006c0 Delete type=3 #298 2024/09/04-08:29:45.705019 7f80f34006c0 Delete type=3 #310
2024/08/12-22:22:36.666099 7f14760006c0 Delete type=0 #300 2024/09/04-08:29:45.705164 7f80f34006c0 Delete type=0 #312
2024/08/12-22:24:19.350808 7f146fe006c0 Level-0 table #305: started 2024/09/04-08:55:35.097039 7f80f10006c0 Level-0 table #317: started
2024/08/12-22:24:19.350848 7f146fe006c0 Level-0 table #305: 0 bytes OK 2024/09/04-08:55:35.097075 7f80f10006c0 Level-0 table #317: 0 bytes OK
2024/08/12-22:24:19.357169 7f146fe006c0 Delete type=0 #303 2024/09/04-08:55:35.103696 7f80f10006c0 Delete type=0 #315
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/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/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:55:35.112652 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.790839 7f14760006c0 Recovering log #296 2024/09/03-23:57:02.666135 7f80f34006c0 Recovering log #308
2024/08/12-14:24:59.801540 7f14760006c0 Delete type=3 #294 2024/09/03-23:57:02.722130 7f80f34006c0 Delete type=3 #306
2024/08/12-14:24:59.801595 7f14760006c0 Delete type=0 #296 2024/09/03-23:57:02.722238 7f80f34006c0 Delete type=0 #308
2024/08/12-15:14:31.902415 7f146fe006c0 Level-0 table #301: started 2024/09/04-00:02:12.580228 7f80f10006c0 Level-0 table #313: started
2024/08/12-15:14:31.902463 7f146fe006c0 Level-0 table #301: 0 bytes OK 2024/09/04-00:02:12.580253 7f80f10006c0 Level-0 table #313: 0 bytes OK
2024/08/12-15:14:31.908530 7f146fe006c0 Delete type=0 #299 2024/09/04-00:02:12.586840 7f80f10006c0 Delete type=0 #311
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/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/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/04-00:02:12.594266 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.629308 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.628430 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.639961 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.650295 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.640023 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.650414 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.322043 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.067585 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.322091 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.067673 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.328713 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.075311 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.082155 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.763075 7f1476a006c0 Recovering log #297 2024/09/03-23:57:02.521039 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.773060 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:02.598636 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.773198 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:02.598696 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.881862 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.566783 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.881911 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.566808 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.888239 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.573557 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.594235 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.694438 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.765001 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.705954 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.788819 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.706016 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.788950 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.357633 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.112898 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.357706 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.113011 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.364683 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.119600 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.146600 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.832587 7f1474c006c0 Recovering log #297 2024/09/03-23:57:02.858975 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.842202 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:02.913613 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.842302 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:02.913669 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.947158 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.608054 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.947195 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.608097 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.953642 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.614495 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.625559 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.527859 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.388988 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.537836 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.461532 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.537941 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.461673 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.245764 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.031416 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.245830 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.031477 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.252603 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.039121 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.053487 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.661738 7f1474c006c0 Recovering log #297 2024/09/03-23:57:01.845674 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.671865 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:01.899154 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.671915 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:01.899286 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.846935 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.534195 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.846967 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.534250 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.853057 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.540487 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.547635 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.681905 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.737290 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.691535 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.761609 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.691594 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.761710 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.329033 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.103875 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.329057 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.103934 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.336458 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.112160 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.112706 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.817820 7f1476a006c0 Recovering log #297 2024/09/03-23:57:02.798029 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.829066 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:02.852893 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.829197 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:02.852957 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.916124 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.600662 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.916173 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.600686 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.922560 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.607867 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.625548 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.542626 7f14760006c0 Recovering log #301 2024/09/04-08:29:45.464980 7f80f34006c0 Recovering log #313
2024/08/12-22:22:36.552800 7f14760006c0 Delete type=3 #299 2024/09/04-08:29:45.490148 7f80f34006c0 Delete type=3 #311
2024/08/12-22:22:36.552854 7f14760006c0 Delete type=0 #301 2024/09/04-08:29:45.490265 7f80f34006c0 Delete type=0 #313
2024/08/12-22:24:19.286697 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.024395 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.286730 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.024475 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.293817 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.031136 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.053467 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.676428 7f14760006c0 Recovering log #297 2024/09/03-23:57:01.916540 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.686359 7f14760006c0 Delete type=3 #295 2024/09/03-23:57:01.971084 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.686411 7f14760006c0 Delete type=0 #297 2024/09/03-23:57:01.971164 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.840778 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.521599 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.840812 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.521659 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.846814 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.527723 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.566660 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.643096 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.655079 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.652584 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.680053 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.652643 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.680170 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.336653 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.082269 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.336694 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.082316 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.343085 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.089165 7f80f10006c0 Delete type=0 #316
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/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/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:55:35.112600 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.776734 7f1474c006c0 Recovering log #297 2024/09/03-23:57:02.604977 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.787373 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:02.659870 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.787500 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:02.659925 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.895104 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.573763 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.895138 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.573826 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.902306 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.580109 7f80f10006c0 Delete type=0 #312
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/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/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/04-00:02:12.594250 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000210 MANIFEST-000222

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.600894 7f14760006c0 Recovering log #208 2024/09/04-08:29:45.572168 7f80f34006c0 Recovering log #220
2024/08/12-22:22:36.611841 7f14760006c0 Delete type=3 #206 2024/09/04-08:29:45.596979 7f80f34006c0 Delete type=3 #218
2024/08/12-22:22:36.611974 7f14760006c0 Delete type=0 #208 2024/09/04-08:29:45.597113 7f80f34006c0 Delete type=0 #220
2024/08/12-22:24:19.307405 7f146fe006c0 Level-0 table #213: started 2024/09/04-08:55:35.060765 7f80f10006c0 Level-0 table #225: started
2024/08/12-22:24:19.307456 7f146fe006c0 Level-0 table #213: 0 bytes OK 2024/09/04-08:55:35.060804 7f80f10006c0 Level-0 table #225: 0 bytes OK
2024/08/12-22:24:19.315163 7f146fe006c0 Delete type=0 #211 2024/09/04-08:55:35.067304 7f80f10006c0 Delete type=0 #223
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/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/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:55:35.082142 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.735039 7f14760006c0 Recovering log #204 2024/09/03-23:57:02.303953 7f80f34006c0 Recovering log #216
2024/08/12-14:24:59.746320 7f14760006c0 Delete type=3 #202 2024/09/03-23:57:02.401062 7f80f34006c0 Delete type=3 #214
2024/08/12-14:24:59.746431 7f14760006c0 Delete type=0 #204 2024/09/03-23:57:02.401144 7f80f34006c0 Delete type=0 #216
2024/08/12-15:14:31.874299 7f146fe006c0 Level-0 table #209: started 2024/09/04-00:02:12.547706 7f80f10006c0 Level-0 table #221: started
2024/08/12-15:14:31.874344 7f146fe006c0 Level-0 table #209: 0 bytes OK 2024/09/04-00:02:12.547740 7f80f10006c0 Level-0 table #221: 0 bytes OK
2024/08/12-15:14:31.881684 7f146fe006c0 Delete type=0 #207 2024/09/04-00:02:12.553588 7f80f10006c0 Delete type=0 #219
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/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/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/04-00:02:12.566689 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000214 MANIFEST-000226

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.570130 7f1474c006c0 Recovering log #212 2024/09/04-08:29:45.519219 7f80f20006c0 Recovering log #224
2024/08/12-22:22:36.579735 7f1474c006c0 Delete type=3 #210 2024/09/04-08:29:45.540052 7f80f20006c0 Delete type=3 #222
2024/08/12-22:22:36.579839 7f1474c006c0 Delete type=0 #212 2024/09/04-08:29:45.540150 7f80f20006c0 Delete type=0 #224
2024/08/12-22:24:19.279670 7f146fe006c0 Level-0 table #217: started 2024/09/04-08:55:35.046034 7f80f10006c0 Level-0 table #229: started
2024/08/12-22:24:19.279711 7f146fe006c0 Level-0 table #217: 0 bytes OK 2024/09/04-08:55:35.046147 7f80f10006c0 Level-0 table #229: 0 bytes OK
2024/08/12-22:24:19.286552 7f146fe006c0 Delete type=0 #215 2024/09/04-08:55:35.053132 7f80f10006c0 Delete type=0 #227
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/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/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:55:35.053524 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.706651 7f1476a006c0 Recovering log #208 2024/09/03-23:57:02.078931 7f80f3e006c0 Recovering log #220
2024/08/12-14:24:59.716230 7f1476a006c0 Delete type=3 #206 2024/09/03-23:57:02.174757 7f80f3e006c0 Delete type=3 #218
2024/08/12-14:24:59.716291 7f1476a006c0 Delete type=0 #208 2024/09/03-23:57:02.174947 7f80f3e006c0 Delete type=0 #220
2024/08/12-15:14:31.860558 7f146fe006c0 Level-0 table #213: started 2024/09/04-00:02:12.527840 7f80f10006c0 Level-0 table #225: started
2024/08/12-15:14:31.860611 7f146fe006c0 Level-0 table #213: 0 bytes OK 2024/09/04-00:02:12.527868 7f80f10006c0 Level-0 table #225: 0 bytes OK
2024/08/12-15:14:31.867654 7f146fe006c0 Delete type=0 #211 2024/09/04-00:02:12.533992 7f80f10006c0 Delete type=0 #223
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/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/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/04-00:02:12.547622 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -14,9 +14,9 @@
], ],
"url": "https://www.uberwald.me/gitea/public/bol", "url": "https://www.uberwald.me/gitea/public/bol",
"license": "LICENSE.txt", "license": "LICENSE.txt",
"version": "12.0.1", "version": "12.0.2",
"compatibility": { "compatibility": {
"minimum": "12", "minimum": "11",
"verified": "12" "verified": "12"
}, },
"esmodules": [ "esmodules": [
@ -318,10 +318,12 @@
], ],
"socket": true, "socket": true,
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json", "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", "background": "systems/bol/ui/page_accueil.webp",
"gridDistance": 1.5,
"gridUnits": "m",
"primaryTokenAttribute": "resources.hp", "primaryTokenAttribute": "resources.hp",
"secondaryTokenAttribute": "resources.hero" "secondaryTokenAttribute": "resources.hero",
"grid": {
"distance": 1.5,
"units": "m"
}
} }

View File

@ -1,5 +1,5 @@
<!--ARMES--> <!--ARMES-->
<button class="create_item">{{localize "BOL.ui.createEquipment"}}</button> <button class="create-item">{{localize "BOL.ui.createEquipment"}}</button>
{{#if useBougette}} {{#if useBougette}}
<ol class="items-list"> <ol class="items-list">
@ -66,10 +66,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -125,10 +125,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -177,10 +177,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -229,10 +229,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -281,10 +281,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -333,10 +333,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}
@ -385,10 +385,10 @@
<div class="item-field flex1 center"> <div class="item-field flex1 center">
{{#if system.properties.equipable}} {{#if system.properties.equipable}}
{{#if system.worn}} {{#if system.worn}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.unequip"}}"><i <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.unequip"}}"><i
class="fas fa-shield-alt"></i></a></span> class="fas fa-shield-alt"></i></a></span>
{{else}} {{else}}
<span class="item-field"><a class="item-control item-equip" title="{{localize " BOL.ui.equip"}}" <span class="item-field"><a class="item-control item-equip" title="{{localize "BOL.ui.equip"}}"
style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span> style="color:lightgray;"><i class="fas fa-shield-alt"></i></a></span>
{{/if}} {{/if}}
{{/if}} {{/if}}

View File

@ -6,6 +6,7 @@
<div class="item-name flex2">{{localize combatType.label}}</div> <div class="item-name flex2">{{localize combatType.label}}</div>
{{#if protection}}<div class="item-field">{{localize "BOL.ui.protection"}}</div>{{/if}} {{#if protection}}<div class="item-field">{{localize "BOL.ui.protection"}}</div>{{/if}}
{{#if blocking}}<div class="item-field">{{localize "BOL.ui.blocking"}}</div>{{/if}} {{#if blocking}}<div class="item-field">{{localize "BOL.ui.blocking"}}</div>{{/if}}
{{#if weapon}}<div class="item-field">{{localize "BOL.ui.attackModifier"}}</div>{{/if}}
{{#if weapon}}<div class="item-field">{{localize "BOL.ui.damages"}}</div>{{/if}} {{#if weapon}}<div class="item-field">{{localize "BOL.ui.damages"}}</div>{{/if}}
{{#if ranged}}<div class="item-field">{{localize "BOL.ui.range"}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if ranged}}<div class="item-field">{{localize "BOL.ui.range"}}</div>{{else}}<div class="item-field"></div>{{/if}}
{{#if options}}<div class="item-field">{{localize "BOL.ui.status"}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if options}}<div class="item-field">{{localize "BOL.ui.status"}}</div>{{else}}<div class="item-field"></div>{{/if}}
@ -17,6 +18,7 @@
<h4 class="item-name flex2">{{#if ../weapon}}<a class="rollable" data-roll-type="weapon">{{/if}}{{item.name}}{{#if ../weapon}}</a>{{/if}}</h4> <h4 class="item-name flex2">{{#if ../weapon}}<a class="rollable" data-roll-type="weapon">{{/if}}{{item.name}}{{#if ../weapon}}</a>{{/if}}</h4>
{{#if ../protection}}<div class="item-field"><a class="rollable" data-roll-type="protection">{{item.system.properties.soak.formula}}</a> / {{item.system.properties.soak.value}}</div>{{/if}} {{#if ../protection}}<div class="item-field"><a class="rollable" data-roll-type="protection">{{item.system.properties.soak.formula}}</a> / {{item.system.properties.soak.value}}</div>{{/if}}
{{#if ../blocking}}<div class="item-field">{{item.system.properties.blocking.malus}}</div>{{/if}} {{#if ../blocking}}<div class="item-field">{{item.system.properties.blocking.malus}}</div>{{/if}}
{{#if ../weapon}}<div class="item-field">{{item.system.properties.attackModifiers}}</div>{{/if}}
{{#if ../weapon}}<div class="item-field"><a class="rollable" data-roll-type="damage">{{item.system.properties.damage}}+{{item.system.properties.damageModifiers}} x{{item.system.properties.damageMultiplier}}</a></div>{{/if}} {{#if ../weapon}}<div class="item-field"><a class="rollable" data-roll-type="damage">{{item.system.properties.damage}}+{{item.system.properties.damageModifiers}} x{{item.system.properties.damageMultiplier}}</a></div>{{/if}}
{{#if ../ranged}}<div class="item-field">{{item.system.properties.range}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if ../ranged}}<div class="item-field">{{item.system.properties.range}}</div>{{else}}<div class="item-field"></div>{{/if}}
{{#if ../options}}<div class="item-field"> {{#if ../options}}<div class="item-field">
@ -63,3 +65,9 @@
</ol> </ol>
{{/if}} {{/if}}
{{/each}} {{/each}}
<div class="flexrow">
<button class="create-natural-weapon">{{localize "BOL.ui.createNaturalWeapon"}}</button>
&nbsp;&nbsp;&nbsp;&nbsp;
<button class="create-natural-protection">{{localize "BOL.ui.createNaturalProtection"}}</button>
</div>

View File

@ -14,7 +14,13 @@
<hr/> <hr/>
<div class="aptitudes flexrow"> <div class="aptitudes flexrow">
<div class="aptitude stat flex1 flex-group-center"> <div class="aptitude stat flex1 flex-group-center">
<div class="stat-label"><a class="rollable" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">{{localize "BOL.aptitudes.def"}}</a></label><br/> <div class="">
<label class="stat-label">
<a class="rollable" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">
{{localize "BOL.aptitudes.def"}}
</a>
</label>
<br/>
<input class="stat-value rounded-border" type="text" name="system.aptitudes.def.value" value="{{numberFormat aptitudes.3.value decimals=0 sign=true}}" data-dtype="Number"/><br/> <input class="stat-value rounded-border" type="text" name="system.aptitudes.def.value" value="{{numberFormat aptitudes.3.value decimals=0 sign=true}}" data-dtype="Number"/><br/>
<span class="stat-roll rollable" title="2d6" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def"> <span class="stat-roll rollable" title="2d6" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">
<i class="darkgreen fas fa-dice"></i> <i class="darkgreen fas fa-dice"></i>