Ajout de la gestion des Points d'usage

This commit is contained in:
LeRatierBretonnien 2024-03-23 11:37:15 +01:00
parent 8781462c8d
commit 8598df5a57
71 changed files with 318 additions and 187 deletions

View File

@ -77,19 +77,42 @@ export class HeritiersActorSheet extends ActorSheet {
}
/* -------------------------------------------- */
getCelluleTalents( ) {
let talents = []
for(let cellule of game.actors) {
if (cellule.type == "cellule") {
let found = cellule.system.members.find( it => it.id == this.actor.id)
if (found) {
talents = talents.concat( cellule.getTalents() )
dialogRecupUsage() {
new Dialog({
title: "Récupération des Points d'Usage",
content: "<p>Combien de Points d'Usage souhaitez-vous récupérer ?</p>",
buttons: {
one: {
icon: '<i class="fas fa-check"></i>',
label: "1 Point",
callback: () => {
this.actor.recupUsage(1)
}
},
two: {
icon: '<i class="fas fa-check"></i>',
label: "2 Points",
callback: () => {
this.actor.recupUsage(2)
}
},
four: {
icon: '<i class="fas fa-check"></i>',
label: "4 Points",
callback: () => {
this.actor.recupUsage(4)
}
},
all: {
icon: '<i class="fas fa-check"></i>',
label: "Tous les Points",
callback: () => {
this.actor.recupUsage(100)
}
}
}
}
return talents
}).render(true)
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
@ -180,7 +203,10 @@ export class HeritiersActorSheet extends ActorSheet {
let pouvoirId = li.data("item-id")
this.actor.rollPouvoir(pouvoirId)
})
html.find('.dialog-recup-usage').click((event) => {
this.dialogRecupUsage()
})
html.find('.item-add').click((event) => {
const itemType = $(event.currentTarget).data("type")
this.actor.createEmbeddedDocuments('Item', [{ name: `Nouveau ${itemType}`, type: itemType }], { renderSheet: true })

View File

@ -135,8 +135,18 @@ export class HeritiersActor extends Actor {
return this.getItemSorted(["profil"])
}
getPouvoirs() {
return this.getItemSorted(["pouvoir"])
let pouvoirs = []
for (let item of this.items) {
if (item.type == "pouvoir") {
let itemObj = duplicate(item)
itemObj.maxUsage = this.getPouvoirUsageMax(item)
pouvoirs.push(itemObj)
}
}
HeritiersUtility.sortArrayObjectsByName(pouvoirs)
return pouvoirs
}
/* -------------------------------------------- */
getSkills() {
let comp = []
@ -538,6 +548,7 @@ export class HeritiersActor extends Actor {
rollData.useTricherie = false
rollData.useSpecialite = false
rollData.useHeritage = false
rollData.pouvoirPointsUsage = 1
rollData.rulesMalus.push(this.getPvMalus())
if (compId) {
@ -703,6 +714,7 @@ export class HeritiersActor extends Actor {
rollData.carac = duplicate(this.system.caracteristiques[pouvoir.system.carac])
rollData.caracKey = pouvoir.system.carac
}
rollData.pouvoirMaxUsage = this.getPouvoirUsageMax(pouvoir)
rollData.pouvoir = duplicate(pouvoir)
rollData.mode = "pouvoir"
let rollDialog = await HeritiersRollDialog.create(this, rollData)
@ -710,4 +722,41 @@ export class HeritiersActor extends Actor {
}
}
/* -------------------------------------------- */
incDecPointsUsage(pouvoirId, value) {
let pouvoir = this.items.get(pouvoirId)
let newValue = pouvoir.system.pointsusagecourant + value
newValue = Math.max(newValue, 0)
newValue = Math.min(newValue, this.getPouvoirUsageMax(pouvoir))
this.updateEmbeddedDocuments('Item', [{ _id: pouvoirId, 'system.pointsusagecourant': newValue }])
}
/* -------------------------------------------- */
getPouvoirUsage(pouvoirId) {
let pouvoir = this.items.get(pouvoirId)
return pouvoir.system.pointsusagecourant
}
/* -------------------------------------------- */
getPouvoirUsageMax(pouvoir) {
if (pouvoir.system.masquetype == "masque") {
return this.system.rang.masque.value
}
return this.system.rang.feerie.value
}
/* -------------------------------------------- */
recupUsage(value) {
let updates = []
for (let pouvoir of this.items) {
if (pouvoir.type == "pouvoir") {
let newValue = pouvoir.system.pointsusagecourant + value
newValue = Math.max(newValue, 0)
newValue = Math.min(newValue, this.getPouvoirUsageMax(pouvoir))
updates.push({ _id: pouvoir.id, 'system.pointsusagecourant': newValue })
}
}
if (updates.length > 0) {
this.updateEmbeddedDocuments('Item', updates)
}
}
}

View File

@ -61,11 +61,20 @@ export class HeritiersItemSheet extends ItemSheet {
limited: this.object.limited,
options: this.options,
owner: this.document.isOwner,
config: game.system.lesheritiers.config,
config: game.system.lesheritiers.config,
isArmeMelee: HeritiersUtility.isArmeMelee(this.object),
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
mr: (this.object.type == 'specialisation'),
isGM: game.user.isGM
isGM: game.user.isGM,
usageMax: -1
}
// Items specific data
if (this.object.type == 'pouvoir' && this.document.isOwner && this.actor) {
formData.usageMax = this.actor.getPouvoirUsageMax(this.object)
if (this.object.system.pointsusagecourant == -1) {
this.object.system.pointsusagecourant = formData.usageMax
}
}
//this.options.editable = !(this.object.origin == "embeddedItem");

View File

@ -129,6 +129,9 @@ export class HeritiersRollDialog extends Dialog {
html.find('#useSpecialite').change((event) => {
this.rollData.useSpecialite = event.currentTarget.checked
})
html.find('#pouvoirPointsUsage').change((event) => {
this.rollData.pouvoirPointsUsage = Number(event.currentTarget.value)
})
html.find('#attaqueDos').change((event) => {
this.rollData.attaqueDos = event.currentTarget.checked
})

View File

@ -471,6 +471,11 @@ export class HeritiersUtility {
let actor = this.getActorFromRollData(rollData)
if ( rollData.mode == "pouvoir" && actor.getPouvoirUsage(rollData.pouvoir._id) < rollData.pouvoirPointsUsage) {
ui.notifications.warn("Pas assez de points d'usage pour ce pouvoir.")
return
}
//rollData.actionImg = "systems/fvtt-les-heritiers/assets/icons/" + actor.system.attributs[rollData.attrKey].labelnorm + ".webp"
rollData.carac = duplicate(actor.system.caracteristiques[rollData.caracKey])
@ -542,6 +547,11 @@ export class HeritiersUtility {
actor.setFlag("world", "last-initiative", rollData.finalResult)
}
// Gestion pouvoir et points d'usage
if (rollData.mode == "pouvoir") {
actor.incDecPointsUsage(rollData.pouvoir._id, -rollData.pouvoirPointsUsage)
}
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-les-heritiers/templates/chat-generic-result.html`, rollData)
}, rollData)
@ -593,7 +603,7 @@ export class HeritiersUtility {
/* -------------------------------------------- */
static isArmeMelee(arme) {
return (arme.type == "arme" && (arme.system.categorie == "lourde" || arme.system.categorie == "blanche" || arme.system.categorie == "improvise")) ? true : false
return (arme.type == "arme" && (arme.system.categorie == "lourde" || arme.system.categorie == "blanche" || arme.system.categorie == "improvise"))
}
/* -------------------------------------------- */
static getWhisperRecipients(rollMode, name) {

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.196298 7f0ad3e006c0 Recovering log #40
2024/03/06-18:59:13.207222 7f0ad3e006c0 Delete type=3 #38
2024/03/06-18:59:13.207352 7f0ad3e006c0 Delete type=0 #40
2024/03/06-18:59:54.852223 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.852282 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.858458 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.858765 7f0ad20006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.858791 7f0ad20006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.571733 7fed73e006c0 Recovering log #48
2024/03/23-10:48:02.582541 7fed73e006c0 Delete type=3 #46
2024/03/23-10:48:02.582617 7fed73e006c0 Delete type=0 #48
2024/03/23-11:37:00.840004 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.840024 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.846784 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.846952 7fed720006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.846980 7fed720006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.568521 7f0ad34006c0 Recovering log #36
2024/03/06-18:44:25.578793 7f0ad34006c0 Delete type=3 #34
2024/03/06-18:44:25.578840 7f0ad34006c0 Delete type=0 #36
2024/03/06-18:46:24.175017 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.175038 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.182284 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.188691 7f0ad20006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.195894 7f0ad20006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.618548 7fed73e006c0 Recovering log #44
2024/03/23-10:36:32.628885 7fed73e006c0 Delete type=3 #42
2024/03/23-10:36:32.628941 7fed73e006c0 Delete type=0 #44
2024/03/23-10:47:49.111695 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.111718 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.117669 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.124617 7fed720006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.124645 7fed720006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.221694 7f0ad3e006c0 Recovering log #40
2024/03/06-18:59:13.232417 7f0ad3e006c0 Delete type=3 #38
2024/03/06-18:59:13.232531 7f0ad3e006c0 Delete type=0 #40
2024/03/06-18:59:54.871381 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.871434 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.880814 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.893588 7f0ad20006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.893615 7f0ad20006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.597243 7fed73e006c0 Recovering log #48
2024/03/23-10:48:02.607708 7fed73e006c0 Delete type=3 #46
2024/03/23-10:48:02.607775 7fed73e006c0 Delete type=0 #48
2024/03/23-11:37:00.827007 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.827057 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.833771 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.846910 7fed720006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.846959 7fed720006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.594975 7f0ad34006c0 Recovering log #36
2024/03/06-18:44:25.604899 7f0ad34006c0 Delete type=3 #34
2024/03/06-18:44:25.605412 7f0ad34006c0 Delete type=0 #36
2024/03/06-18:46:24.188713 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.188737 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.195790 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.202331 7f0ad20006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.209583 7f0ad20006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.649726 7fed73e006c0 Recovering log #44
2024/03/23-10:36:32.660737 7fed73e006c0 Delete type=3 #42
2024/03/23-10:36:32.660854 7fed73e006c0 Delete type=0 #44
2024/03/23-10:47:49.138231 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.138277 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.144999 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.151672 7fed720006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.151719 7fed720006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.183873 7f0ad8a006c0 Recovering log #40
2024/03/06-18:59:13.193539 7f0ad8a006c0 Delete type=3 #38
2024/03/06-18:59:13.193588 7f0ad8a006c0 Delete type=0 #40
2024/03/06-18:59:54.838571 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.838599 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.844970 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.858747 7f0ad20006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.858778 7f0ad20006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.559259 7fed734006c0 Recovering log #48
2024/03/23-10:48:02.569488 7fed734006c0 Delete type=3 #46
2024/03/23-10:48:02.569553 7fed734006c0 Delete type=0 #48
2024/03/23-11:37:00.820791 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.820819 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.826839 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.846901 7fed720006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.846946 7fed720006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.556505 7f0ad94006c0 Recovering log #36
2024/03/06-18:44:25.565851 7f0ad94006c0 Delete type=3 #34
2024/03/06-18:44:25.565906 7f0ad94006c0 Delete type=0 #36
2024/03/06-18:46:24.168720 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.168740 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.174891 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.182563 7f0ad20006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.188703 7f0ad20006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.605189 7fed78a006c0 Recovering log #44
2024/03/23-10:36:32.615490 7fed78a006c0 Delete type=3 #42
2024/03/23-10:36:32.615554 7fed78a006c0 Delete type=0 #44
2024/03/23-10:47:49.098509 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.098542 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.104751 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.124594 7fed720006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.124632 7fed720006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.146641 7f0ad3e006c0 Recovering log #40
2024/03/06-18:59:13.156095 7f0ad3e006c0 Delete type=3 #38
2024/03/06-18:59:13.156156 7f0ad3e006c0 Delete type=0 #40
2024/03/06-18:59:54.817526 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.817581 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.823954 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.832163 7f0ad20006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.832224 7f0ad20006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.521231 7fed73e006c0 Recovering log #48
2024/03/23-10:48:02.532005 7fed73e006c0 Delete type=3 #46
2024/03/23-10:48:02.532101 7fed73e006c0 Delete type=0 #48
2024/03/23-11:37:00.801358 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.801380 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.807396 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.820567 7fed720006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.820617 7fed720006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.520679 7f0ad34006c0 Recovering log #36
2024/03/06-18:44:25.530573 7f0ad34006c0 Delete type=3 #34
2024/03/06-18:44:25.530645 7f0ad34006c0 Delete type=0 #36
2024/03/06-18:46:24.149265 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.149287 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.155653 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.161941 7f0ad20006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.168702 7f0ad20006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.565243 7fed73e006c0 Recovering log #44
2024/03/23-10:36:32.575390 7fed73e006c0 Delete type=3 #42
2024/03/23-10:36:32.575442 7fed73e006c0 Delete type=0 #44
2024/03/23-10:47:49.091958 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.092014 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.098272 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.098402 7fed720006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.098427 7fed720006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.171182 7f0ad3e006c0 Recovering log #40
2024/03/06-18:59:13.181656 7f0ad3e006c0 Delete type=3 #38
2024/03/06-18:59:13.181712 7f0ad3e006c0 Delete type=0 #40
2024/03/06-18:59:54.832282 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.832328 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.838450 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.858561 7f0ad20006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.858771 7f0ad20006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.547542 7fed73e006c0 Recovering log #48
2024/03/23-10:48:02.557329 7fed73e006c0 Delete type=3 #46
2024/03/23-10:48:02.557386 7fed73e006c0 Delete type=0 #48
2024/03/23-11:37:00.807508 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.807530 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.813725 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.820593 7fed720006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.820630 7fed720006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.544510 7f0ad34006c0 Recovering log #36
2024/03/06-18:44:25.554577 7f0ad34006c0 Delete type=3 #34
2024/03/06-18:44:25.554623 7f0ad34006c0 Delete type=0 #36
2024/03/06-18:46:24.161959 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.161984 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.168612 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.174998 7f0ad20006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.182577 7f0ad20006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.591905 7fed73e006c0 Recovering log #44
2024/03/23-10:36:32.601706 7fed73e006c0 Delete type=3 #42
2024/03/23-10:36:32.601822 7fed73e006c0 Delete type=0 #44
2024/03/23-10:47:49.104862 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.104884 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.111582 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.124607 7fed720006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.124638 7fed720006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.134222 7f0ad8a006c0 Recovering log #40
2024/03/06-18:59:13.144640 7f0ad8a006c0 Delete type=3 #38
2024/03/06-18:59:13.144704 7f0ad8a006c0 Delete type=0 #40
2024/03/06-18:59:54.810298 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.810361 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.817371 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.832145 7f0ad20006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.832211 7f0ad20006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.509092 7fed734006c0 Recovering log #48
2024/03/23-10:48:02.519097 7fed734006c0 Delete type=3 #46
2024/03/23-10:48:02.519155 7fed734006c0 Delete type=0 #48
2024/03/23-11:37:00.794140 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.794164 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.801230 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.807497 7fed720006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.820584 7fed720006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.508577 7f0ad94006c0 Recovering log #36
2024/03/06-18:44:25.518629 7f0ad94006c0 Delete type=3 #34
2024/03/06-18:44:25.518679 7f0ad94006c0 Delete type=0 #36
2024/03/06-18:46:24.142406 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.142437 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.149137 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.155816 7f0ad20006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.161951 7f0ad20006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.552707 7fed78a006c0 Recovering log #44
2024/03/23-10:36:32.562757 7fed78a006c0 Delete type=3 #42
2024/03/23-10:36:32.562811 7fed78a006c0 Delete type=0 #44
2024/03/23-10:47:49.078056 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.078086 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.084141 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.098382 7fed720006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.098433 7fed720006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.158253 7f0ad8a006c0 Recovering log #40
2024/03/06-18:59:13.169250 7f0ad8a006c0 Delete type=3 #38
2024/03/06-18:59:13.169308 7f0ad8a006c0 Delete type=0 #40
2024/03/06-18:59:54.824195 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.824253 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.831973 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.832196 7f0ad20006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.832239 7f0ad20006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.534354 7fed734006c0 Recovering log #48
2024/03/23-10:48:02.545488 7fed734006c0 Delete type=3 #46
2024/03/23-10:48:02.545545 7fed734006c0 Delete type=0 #48
2024/03/23-11:37:00.813815 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.813835 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.820461 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.820601 7fed720006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.820624 7fed720006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.532864 7f0ad94006c0 Recovering log #36
2024/03/06-18:44:25.542781 7f0ad94006c0 Delete type=3 #34
2024/03/06-18:44:25.542832 7f0ad94006c0 Delete type=0 #36
2024/03/06-18:46:24.155844 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.155874 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.161851 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.168712 7f0ad20006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.175009 7f0ad20006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.577869 7fed78a006c0 Recovering log #44
2024/03/23-10:36:32.588845 7fed78a006c0 Delete type=3 #42
2024/03/23-10:36:32.588930 7fed78a006c0 Delete type=0 #44
2024/03/23-10:47:49.084257 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.084286 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.091721 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.098393 7fed720006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.098420 7fed720006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.209880 7f0ad8a006c0 Recovering log #40
2024/03/06-18:59:13.219277 7f0ad8a006c0 Delete type=3 #38
2024/03/06-18:59:13.219340 7f0ad8a006c0 Delete type=0 #40
2024/03/06-18:59:54.845141 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.845181 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.852067 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.858757 7f0ad20006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.858784 7f0ad20006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.584567 7fed734006c0 Recovering log #48
2024/03/23-10:48:02.594353 7fed734006c0 Delete type=3 #46
2024/03/23-10:48:02.594417 7fed734006c0 Delete type=0 #48
2024/03/23-11:37:00.833866 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.833890 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.839913 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.846918 7fed720006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.846966 7fed720006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.581915 7f0ad94006c0 Recovering log #36
2024/03/06-18:44:25.592375 7f0ad94006c0 Delete type=3 #34
2024/03/06-18:44:25.592428 7f0ad94006c0 Delete type=0 #36
2024/03/06-18:46:24.182586 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.182611 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.188586 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.195882 7f0ad20006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.202340 7f0ad20006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.634942 7fed78a006c0 Recovering log #44
2024/03/23-10:36:32.645370 7fed78a006c0 Delete type=3 #42
2024/03/23-10:36:32.645438 7fed78a006c0 Delete type=0 #44
2024/03/23-10:47:49.117785 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.117808 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.124476 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.124625 7fed720006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.124651 7fed720006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000042
MANIFEST-000050

View File

@ -1,7 +1,7 @@
2024/03/06-18:59:13.234663 7f0ad8a006c0 Recovering log #40
2024/03/06-18:59:13.245554 7f0ad8a006c0 Delete type=3 #38
2024/03/06-18:59:13.245629 7f0ad8a006c0 Delete type=0 #40
2024/03/06-18:59:54.858867 7f0ad20006c0 Level-0 table #45: started
2024/03/06-18:59:54.858894 7f0ad20006c0 Level-0 table #45: 0 bytes OK
2024/03/06-18:59:54.871179 7f0ad20006c0 Delete type=0 #43
2024/03/06-18:59:54.893571 7f0ad20006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.609984 7fed734006c0 Recovering log #48
2024/03/23-10:48:02.619777 7fed734006c0 Delete type=3 #46
2024/03/23-10:48:02.619840 7fed734006c0 Delete type=0 #48
2024/03/23-11:37:00.847087 7fed720006c0 Level-0 table #53: started
2024/03/23-11:37:00.847153 7fed720006c0 Level-0 table #53: 0 bytes OK
2024/03/23-11:37:00.853979 7fed720006c0 Delete type=0 #51
2024/03/23-11:37:00.867118 7fed720006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/03/06-18:44:25.607498 7f0ad94006c0 Recovering log #36
2024/03/06-18:44:25.619089 7f0ad94006c0 Delete type=3 #34
2024/03/06-18:44:25.619169 7f0ad94006c0 Delete type=0 #36
2024/03/06-18:46:24.195903 7f0ad20006c0 Level-0 table #41: started
2024/03/06-18:46:24.195928 7f0ad20006c0 Level-0 table #41: 0 bytes OK
2024/03/06-18:46:24.202215 7f0ad20006c0 Delete type=0 #39
2024/03/06-18:46:24.209558 7f0ad20006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.663217 7fed78a006c0 Recovering log #44
2024/03/23-10:36:32.673264 7fed78a006c0 Delete type=3 #42
2024/03/23-10:36:32.673319 7fed78a006c0 Delete type=0 #44
2024/03/23-10:47:49.131076 7fed720006c0 Level-0 table #49: started
2024/03/23-10:47:49.131099 7fed720006c0 Level-0 table #49: 0 bytes OK
2024/03/23-10:47:49.137951 7fed720006c0 Delete type=0 #47
2024/03/23-10:47:49.151656 7fed720006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000010
MANIFEST-000018

View File

@ -1,8 +1,8 @@
2024/03/06-18:59:13.247253 7f0ad3e006c0 Recovering log #8
2024/03/06-18:59:13.257389 7f0ad3e006c0 Delete type=3 #6
2024/03/06-18:59:13.257446 7f0ad3e006c0 Delete type=0 #8
2024/03/06-18:59:54.880924 7f0ad20006c0 Level-0 table #13: started
2024/03/06-18:59:54.880949 7f0ad20006c0 Level-0 table #13: 0 bytes OK
2024/03/06-18:59:54.887230 7f0ad20006c0 Delete type=0 #11
2024/03/06-18:59:54.893597 7f0ad20006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/06-18:59:54.893637 7f0ad20006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/23-10:48:02.622403 7fed73e006c0 Recovering log #16
2024/03/23-10:48:02.632700 7fed73e006c0 Delete type=3 #14
2024/03/23-10:48:02.632756 7fed73e006c0 Delete type=0 #16
2024/03/23-11:37:00.854073 7fed720006c0 Level-0 table #21: started
2024/03/23-11:37:00.854095 7fed720006c0 Level-0 table #21: 0 bytes OK
2024/03/23-11:37:00.860110 7fed720006c0 Delete type=0 #19
2024/03/23-11:37:00.867128 7fed720006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/23-11:37:00.867164 7fed720006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/03/06-18:44:25.621882 7f0ad34006c0 Recovering log #4
2024/03/06-18:44:25.632172 7f0ad34006c0 Delete type=3 #2
2024/03/06-18:44:25.632258 7f0ad34006c0 Delete type=0 #4
2024/03/06-18:46:24.202350 7f0ad20006c0 Level-0 table #9: started
2024/03/06-18:46:24.202372 7f0ad20006c0 Level-0 table #9: 0 bytes OK
2024/03/06-18:46:24.209447 7f0ad20006c0 Delete type=0 #7
2024/03/06-18:46:24.216156 7f0ad20006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/06-18:46:24.216180 7f0ad20006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/23-10:36:32.675856 7fed73e006c0 Recovering log #12
2024/03/23-10:36:32.687073 7fed73e006c0 Delete type=3 #10
2024/03/23-10:36:32.687168 7fed73e006c0 Delete type=0 #12
2024/03/23-10:47:49.124780 7fed720006c0 Level-0 table #17: started
2024/03/23-10:47:49.124802 7fed720006c0 Level-0 table #17: 0 bytes OK
2024/03/23-10:47:49.130952 7fed720006c0 Delete type=0 #15
2024/03/23-10:47:49.151626 7fed720006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
2024/03/23-10:47:49.151703 7fed720006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
{
"id": "fvtt-les-heritiers",
"description": "Les Héritiers pour FoundryVTT",
"version": "11.0.8",
"version": "11.0.9",
"authors": [
{
"name": "Uberwald/LeRatierBretonnien",
@ -19,7 +19,7 @@
"gridUnits": "m",
"license": "LICENSE.txt",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/raw/branch/master/system.json",
"download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-11.0.8.zip",
"download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-11.0.9.zip",
"languages": [
{
"lang": "fr",

View File

@ -322,6 +322,7 @@
"portee": "",
"resistance": "",
"resistanceautre":"",
"pointsusagecourant": -1,
"isvirulence": false,
"virulence":"",
"description": ""

View File

@ -292,10 +292,12 @@
<label class="item-field-label-medium roll-style"><a class="roll-rang item-field-label-short" data-rang-key="feerie">Féerie</a></label>
<input type="text" class="item-field-label-short" name="system.rang.feerie.value" value="{{system.rang.feerie.value}}" data-dtype="Number" />
<input type="text" class="item-field-label-short" name="system.rang.feerie.max" value="{{system.rang.feerie.max}}" data-dtype="Number" />
<span class="item-field-label-long"></span>
<span class="item-field-label-medium"></span>
<label class="item-field-label-medium roll-style"><a class="roll-rang item-field-label-short" data-rang-key="masque">Masque</a></label>
<input type="text" class="item-field-label-short" name="system.rang.masque.value" value="{{system.rang.masque.value}}" data-dtype="Number" />
<input type="text" class="item-field-label-short" name="system.rang.masque.max" value="{{system.rang.masque.max}}" data-dtype="Number" />
<span class="item-field-label-medium"></span>
<label class="item-field-label-long roll-style"><a class="dialog-recup-usage item-field-label-long">Récup. P. d'Usage</a></label>
</li>
</ul>
</div>
@ -389,6 +391,9 @@
<span class="item-field-label-medium">
<label class="short-label">Niveau</label>
</span>
<span class="item-field-label-medium">
<label class="short-label">Usage</label>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</div>
@ -404,6 +409,7 @@
<span class="item-field-label-medium">{{upperFirst pouvoir.system.masquetype}}</span>
<span class="item-field-label-medium">{{upperFirst pouvoir.system.pouvoirtype}}</span>
<span class="item-field-label-medium">{{upperFirst pouvoir.system.niveau}}</span>
<span class="item-field-label-medium">{{pouvoir.system.pointsusagecourant}}/{{pouvoir.maxUsage}}</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">

View File

@ -41,6 +41,7 @@
{{#if pouvoir}}
<li>Pouvoir : {{pouvoir.name}}</li>
<li>Effet : {{pouvoir.system.effet}}</li>
<li>Points d'usage consommés : {{pouvoirPointsUsage}}</li>
{{/if}}
{{#if forcedValue}}

View File

@ -94,6 +94,21 @@
{{/if}}
<li class="flexrow item">
<label class="generic-label item-field-label-long2">Points d'usage max/jour </label>
{{#if (eq usageMax -1)}}
<label class="generic-label item-field-label-short">Inconnu</label>
{{else}}
<label class="generic-label item-field-label-short">{{usageMax}}</label>
{{/if}}
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long2">Points d'usage restants </label>
<input type="text" class="padd-right status-small-label color-class-common item-field-label-short"
name="system.pointsusagecourant" value="{{system.pointsusagecourant}}" data-dtype="Number" />
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long2">Cibles </label>
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long3"

View File

@ -64,7 +64,18 @@
<span class="small-label roll-dialog-label">{{pouvoirBase.value}}</span>
</div>
{{/if}}
{{/if}}
<div class="flexrow">
<span class="roll-dialog-label">Points d'usage consommés : </span>
<select class="status-small-label color-class-common" id="pouvoirPointsUsage" type="Number" name="pouvoirPointsUsage" value="pouvoirPointsUsage" data-dtype="Number" >
{{#select pouvoirPointsUsage}}
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
{{/select}}
</select>
</div>
{{/if}}
{{#each rulesMalus as |malus key|}}
<div class="flexrow">