Compare commits
10 Commits
fvtt-les-h
...
939cfb1e86
| Author | SHA1 | Date | |
|---|---|---|---|
| 939cfb1e86 | |||
| 5f5e0e2a8c | |||
| c993a9a5b1 | |||
| cc7de0e53c | |||
| 4d41986c12 | |||
| d04731f475 | |||
| 44a641a0ca | |||
| 1ad022d193 | |||
| 1c7cf343b1 | |||
| d4b00e3508 |
@@ -160,6 +160,7 @@ export class HeritiersActor extends Actor {
|
|||||||
HeritiersUtility.sortArrayObjectsByName(comp)
|
HeritiersUtility.sortArrayObjectsByName(comp)
|
||||||
return comp
|
return comp
|
||||||
}
|
}
|
||||||
|
|
||||||
prepareMagie() {
|
prepareMagie() {
|
||||||
let magieList = []
|
let magieList = []
|
||||||
for (let item of this.items) {
|
for (let item of this.items) {
|
||||||
@@ -167,10 +168,56 @@ export class HeritiersActor extends Actor {
|
|||||||
let magie = {}
|
let magie = {}
|
||||||
magie.name = item.name
|
magie.name = item.name
|
||||||
magie.competence = foundry.utils.duplicate(item)
|
magie.competence = foundry.utils.duplicate(item)
|
||||||
magie.sorts = []
|
magie.rang = Math.round(item.system.niveau / 2);
|
||||||
|
magie.rangGenericName = game.system.lesheritiers.config.rangName[magie.rang];
|
||||||
|
console.log("Magie", item.name, item.system.niveau, magie.rang, magie.rangGenericName)
|
||||||
|
//magie.rangSpecificName = game.system.lesheritiers.config.rangNameSpecific[item.name][magie.rangGenericName];
|
||||||
|
magie.sorts = {}
|
||||||
|
if (item.name == "Magie du Clan") {
|
||||||
|
magie.sorts = {
|
||||||
|
"soufflecombat": {
|
||||||
|
1: { nomNiveau: magie.competence.system.nomniveausouffle.soufflecombat["1"], sorts: [] },
|
||||||
|
2: { nomNiveau: magie.competence.system.nomniveausouffle.soufflecombat["2"], sorts: [] },
|
||||||
|
3: { nomNiveau: magie.competence.system.nomniveausouffle.soufflecombat["3"], sorts: [] },
|
||||||
|
4: { nomNiveau: magie.competence.system.nomniveausouffle.soufflecombat["4"], sorts: [] }
|
||||||
|
},
|
||||||
|
"soufflemouvement": {
|
||||||
|
1: { nomNiveau: magie.competence.system.nomniveausouffle.soufflemouvement["1"], sorts: [] },
|
||||||
|
2: { nomNiveau: magie.competence.system.nomniveausouffle.soufflemouvement["2"], sorts: [] },
|
||||||
|
3: { nomNiveau: magie.competence.system.nomniveausouffle.soufflemouvement["3"], sorts: [] },
|
||||||
|
4: { nomNiveau: magie.competence.system.nomniveausouffle.soufflemouvement["4"], sorts: [] }
|
||||||
|
},
|
||||||
|
"souffleesprit": {
|
||||||
|
1: { nomNiveau: magie.competence.system.nomniveausouffle.souffleesprit["1"], sorts: [] },
|
||||||
|
2: { nomNiveau: magie.competence.system.nomniveausouffle.souffleesprit["2"], sorts: [] },
|
||||||
|
3: { nomNiveau: magie.competence.system.nomniveausouffle.souffleesprit["3"], sorts: [] },
|
||||||
|
4: { nomNiveau: magie.competence.system.nomniveausouffle.souffleesprit["4"], sorts: [] }
|
||||||
|
}
|
||||||
|
}
|
||||||
for (let sort of this.items) {
|
for (let sort of this.items) {
|
||||||
if (sort.type == "sort" && sort.system.competence == item.name) {
|
if (sort.type == "sort" && sort.system.competence == item.name) {
|
||||||
magie.sorts.push(sort)
|
let sortObj = foundry.utils.duplicate(sort)
|
||||||
|
sortObj.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau))
|
||||||
|
if (!magie.sorts[sort.system?.souffle]) {
|
||||||
|
console.warn("Sort with unknown souffle ", sort.system.souffle, sort)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
magie.sorts[sort.system.souffle][Number(sort.system.niveau)].sorts.push(sortObj)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
magie.sorts = {
|
||||||
|
1: { nomNiveau: magie.competence.system.nomniveau["1"], sorts: [] },
|
||||||
|
2: { nomNiveau: magie.competence.system.nomniveau["2"], sorts: [] },
|
||||||
|
3: { nomNiveau: magie.competence.system.nomniveau["3"], sorts: [] },
|
||||||
|
4: { nomNiveau: magie.competence.system.nomniveau["4"], sorts: [] }
|
||||||
|
}
|
||||||
|
for (let sort of this.items) {
|
||||||
|
if (sort.type == "sort" && sort.system.competence == item.name) {
|
||||||
|
let sortObj = foundry.utils.duplicate(sort)
|
||||||
|
sortObj.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau))
|
||||||
|
magie.sorts[Number(sort.system.niveau)].sorts.push(sortObj)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
magieList.push(magie)
|
magieList.push(magie)
|
||||||
@@ -477,6 +524,7 @@ export class HeritiersActor extends Actor {
|
|||||||
adversite[adv] = Math.max(adversite[adv], 0)
|
adversite[adv] = Math.max(adversite[adv], 0)
|
||||||
this.update({ 'system.adversite': adversite })
|
this.update({ 'system.adversite': adversite })
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async incDecQuantity(objetId, incDec = 0) {
|
async incDecQuantity(objetId, incDec = 0) {
|
||||||
let objetQ = this.items.get(objetId)
|
let objetQ = this.items.get(objetId)
|
||||||
@@ -707,6 +755,20 @@ export class HeritiersActor extends Actor {
|
|||||||
rollDialog.render(true)
|
rollDialog.render(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
inDecCarac(key, incDec) {
|
||||||
|
let carac = this.system.caracteristiques[key]
|
||||||
|
carac.value += incDec
|
||||||
|
if (carac.value < 0 || carac.value > carac.rang) {
|
||||||
|
ui.notifications.warn("Pas assez de points dans cette caractéristique ou rang max atteint !")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
carac.value = Math.max(carac.value, 0)
|
||||||
|
carac.value = Math.min(carac.value, carac.rang)
|
||||||
|
this.update({ [`system.caracteristiques.${key}`]: carac })
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async rollSort(sortId) {
|
async rollSort(sortId) {
|
||||||
let sort = this.items.get(sortId)
|
let sort = this.items.get(sortId)
|
||||||
@@ -715,12 +777,41 @@ export class HeritiersActor extends Actor {
|
|||||||
ui.notifications.warn("Compétence de magie associée non trouvée !")
|
ui.notifications.warn("Compétence de magie associée non trouvée !")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if (sort.system.informatif) {
|
||||||
|
if (sort.system.texteinformatif) {
|
||||||
|
let chatData = { user: game.user.id, speaker: { actor: this, alias: this.name }, content: `<div class="heritiers-informatif-sort"><h4>Sort informatif !</h4>${sort.system.texteinformatif}</div>` }
|
||||||
|
ChatMessage.create(chatData)
|
||||||
|
} else {
|
||||||
|
ui.notifications.info("Ce sort est uniquement informatif et ne peut pas être lancé.")
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
let rollData = this.getCommonRollData(comp.id)
|
let rollData = this.getCommonRollData(comp.id)
|
||||||
rollData.mode = "sort"
|
rollData.mode = "sort"
|
||||||
rollData.sort = foundry.utils.duplicate(sort)
|
rollData.sort = foundry.utils.duplicate(sort)
|
||||||
rollData.sdValue = HeritiersUtility.getSDSortValue(sort.system.niveau)
|
rollData.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau))
|
||||||
rollData.sortPointsAme = sort.system.niveau
|
if (Number(sort.system.sdspecial) && Number(sort.system.sdspecial) > 0) {
|
||||||
|
rollData.sdValue = Number(sort.system.sdspecial)
|
||||||
|
}
|
||||||
|
rollData.sortPointsAme = Number(sort.system.niveau)
|
||||||
|
rollData.totalEsprit = 1
|
||||||
|
if (sort.system.competence == "Grand Langage") {
|
||||||
|
rollData.sortPointsAme *= 2
|
||||||
|
rollData.totalEsprit = Math.floor((rollData.sortPointsAme) / 3)
|
||||||
|
}
|
||||||
|
if (rollData.sortPointsAme > this.system.magie.pointsame.value) {
|
||||||
|
// Vérifier si au moins 1 point d'Esprit est disponible
|
||||||
|
if (this.system.caracteristiques.esp.value <= rollData.totalEsprit) {
|
||||||
|
ui.notifications.warn(`Pas assez de Points d'Esprit ni de Points d'Ame pour lancer ce sort (requis: ${rollData.totalEsprit}, disponible: ${this.system.caracteristiques.esp.value})`)
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
rollData.spendEsprit = true
|
||||||
|
ui.notifications.warn(`Vous n'avez pas assez de Points d'Ame pour lancer ce sort (requis: ${rollData.sortPointsAme}, disponible: ${this.system.magie.pointsame.value}).`)
|
||||||
|
ui.notifications.warn(`${rollData.totalEsprit} Points d'Esprit seront utilisés à la place si vous effectuez le lancer.`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (sort.system.carac2 != "none") {
|
if (sort.system.carac2 != "none") {
|
||||||
// get the best carac between carac1 and carac2
|
// get the best carac between carac1 and carac2
|
||||||
if (this.system.caracteristiques[sort.system.carac1].value > this.system.caracteristiques[sort.system.carac2].value) {
|
if (this.system.caracteristiques[sort.system.carac1].value > this.system.caracteristiques[sort.system.carac2].value) {
|
||||||
@@ -729,6 +820,8 @@ export class HeritiersActor extends Actor {
|
|||||||
rollData.caracKey = sort.system.carac2
|
rollData.caracKey = sort.system.carac2
|
||||||
}
|
}
|
||||||
rollData.caracMessage = "Ce sort peut être lancé avec " + game.system.lesheritiers.config.caracList[sort.system.carac1] + " ou " + game.system.lesheritiers.config.caracList[sort.system.carac2] + ". La meilleure caractéristique a été selectionnée."
|
rollData.caracMessage = "Ce sort peut être lancé avec " + game.system.lesheritiers.config.caracList[sort.system.carac1] + " ou " + game.system.lesheritiers.config.caracList[sort.system.carac2] + ". La meilleure caractéristique a été selectionnée."
|
||||||
|
} else {
|
||||||
|
rollData.caracKey = sort.system.carac1
|
||||||
}
|
}
|
||||||
console.log("RollData", rollData)
|
console.log("RollData", rollData)
|
||||||
let rollDialog = await HeritiersRollDialog.create(this, rollData)
|
let rollDialog = await HeritiersRollDialog.create(this, rollData)
|
||||||
@@ -913,6 +1006,23 @@ export class HeritiersActor extends Actor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
incDecPointsAme(value) {
|
||||||
|
let newValue = this.system.magie.pointsame.value + value
|
||||||
|
newValue = Math.max(newValue, 0)
|
||||||
|
newValue = Math.min(newValue, this.system.magie.pointsame.max)
|
||||||
|
this.update({ 'system.magie.pointsame.value': newValue })
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
incDecPV(value) {
|
||||||
|
let newValue = this.system.pv.value + value
|
||||||
|
newValue = Math.max(newValue, 0)
|
||||||
|
newValue = Math.min(newValue, this.system.pv.max)
|
||||||
|
this.update({ 'system.pv.value': newValue })
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
incDecPointsUsage(pouvoirId, value) {
|
incDecPointsUsage(pouvoirId, value) {
|
||||||
let pouvoir = this.items.get(pouvoirId)
|
let pouvoir = this.items.get(pouvoirId)
|
||||||
|
|||||||
@@ -200,6 +200,15 @@ export const HERITIERS_CONFIG = {
|
|||||||
"3": "3",
|
"3": "3",
|
||||||
"4": "4"
|
"4": "4"
|
||||||
},
|
},
|
||||||
|
listRangSort: {
|
||||||
|
"1": "1",
|
||||||
|
"2": "2",
|
||||||
|
"3": "3",
|
||||||
|
"4": "4",
|
||||||
|
"5": "5",
|
||||||
|
"6": "6",
|
||||||
|
"7": "7"
|
||||||
|
},
|
||||||
listNiveau: {
|
listNiveau: {
|
||||||
"0": "0",
|
"0": "0",
|
||||||
"1": "1",
|
"1": "1",
|
||||||
@@ -213,5 +222,61 @@ export const HERITIERS_CONFIG = {
|
|||||||
"9": "9",
|
"9": "9",
|
||||||
"10": "10"
|
"10": "10"
|
||||||
},
|
},
|
||||||
|
rangName: [
|
||||||
|
"Novice",
|
||||||
|
"Novice",
|
||||||
|
"Adepte",
|
||||||
|
"Maître",
|
||||||
|
"Grand Maître"
|
||||||
|
],
|
||||||
|
rangNameSpecific: {
|
||||||
|
"Druidisme": {
|
||||||
|
"Novice": "Eubage",
|
||||||
|
"Adepte": "Saronide",
|
||||||
|
"Maître": "Ovate",
|
||||||
|
"Grand Maître": "Archidruide"
|
||||||
|
},
|
||||||
|
"Faëomancie": {
|
||||||
|
"Novice": "Marmiton",
|
||||||
|
"Adepte": "Queux",
|
||||||
|
"Maître": "Chef",
|
||||||
|
"Grand Maître": "Maître-queux"
|
||||||
|
},
|
||||||
|
"Nécromancie": {
|
||||||
|
"Novice": "Inexpertus",
|
||||||
|
"Adepte": "Discipulus",
|
||||||
|
"Maître": "Dominus",
|
||||||
|
"Grand Maître": "Magister"
|
||||||
|
},
|
||||||
|
"Necromancie": {
|
||||||
|
"Novice": "Inexpertus",
|
||||||
|
"Adepte": "Discipulus",
|
||||||
|
"Maître": "Dominus",
|
||||||
|
"Grand Maître": "Magister"
|
||||||
|
},
|
||||||
|
"Magie du Clan": {
|
||||||
|
"Novice": "Apprenti",
|
||||||
|
"Adepte": "Disciple",
|
||||||
|
"Maître": "Maître",
|
||||||
|
"Grand Maître": "Éminence"
|
||||||
|
},
|
||||||
|
"Théurgie": {
|
||||||
|
"Novice": "Frère",
|
||||||
|
"Adepte": "Père",
|
||||||
|
"Maître": "Saint",
|
||||||
|
"Grand Maître": "Apôtre"
|
||||||
|
},
|
||||||
|
"Grand Langage": {
|
||||||
|
"Novice": "Éveillé",
|
||||||
|
"Adepte": "Initié",
|
||||||
|
"Maître": "Sage",
|
||||||
|
"Grand Maître": "Docteur"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
soufflesMagieDuClan: {
|
||||||
|
"soufflecombat": "Souffle du Combat",
|
||||||
|
"soufflemouvement": "Souffle du Mouvement",
|
||||||
|
"souffleesprit": "Souffle de l'Esprit"
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -118,9 +118,10 @@ export class HeritiersUtility {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static getSDSortValue(niveau) {
|
static getSDSortValue(niveau) {
|
||||||
if (niveau <= 2) return 12;
|
if (niveau <= 1) return 12;
|
||||||
if (niveau <= 4) return 14;
|
if (niveau == 2) return 14;
|
||||||
if (niveau <= 6) return 16;
|
if (niveau == 3) return 16;
|
||||||
|
if (niveau > 3) return 18;
|
||||||
return 18;
|
return 18;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,6 +130,18 @@ export class HeritiersUtility {
|
|||||||
return this.competencesMagie
|
return this.competencesMagie
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
static buildCompetencesMagie() {
|
||||||
|
let competences = foundry.utils.duplicate(this.getCompetencesMagie())
|
||||||
|
for (let comp of competences) {
|
||||||
|
// Calcul du rang
|
||||||
|
let rang = Math.round(comp.system.niveau / 2);
|
||||||
|
competences.system.rang = rang;
|
||||||
|
competences.system.rangGenericName = game.system.lesheritiers.config.rangName[rang];
|
||||||
|
competences.system.rangSpecificName = game.system.lesheritiers.config.rangNameSpecific[comp.Name][competences.system.rangGenericName];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static async loadCompendiumData(compendium) {
|
static async loadCompendiumData(compendium) {
|
||||||
const pack = game.packs.get(compendium);
|
const pack = game.packs.get(compendium);
|
||||||
@@ -567,6 +580,17 @@ export class HeritiersUtility {
|
|||||||
if (rollData.mode == "pouvoir" || rollData.mode == "pouvoirpassif") {
|
if (rollData.mode == "pouvoir" || rollData.mode == "pouvoirpassif") {
|
||||||
actor.incDecPointsUsage(rollData.pouvoir._id, -rollData.pouvoirPointsUsage)
|
actor.incDecPointsUsage(rollData.pouvoir._id, -rollData.pouvoirPointsUsage)
|
||||||
}
|
}
|
||||||
|
// Gestion sort et points d'âme
|
||||||
|
if (rollData.mode == "sort") {
|
||||||
|
if (rollData.spendEsprit) {
|
||||||
|
actor.inDecCarac("esp", -rollData.totalEsprit)
|
||||||
|
} else {
|
||||||
|
actor.incDecPointsAme(-rollData.sortPointsAme)
|
||||||
|
if (rollData.sort.system.competence == "Magie du Clan") {
|
||||||
|
actor.incDecPV(-2)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.createChatWithRollMode(rollData.alias, {
|
this.createChatWithRollMode(rollData.alias, {
|
||||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-les-heritiers/templates/chat-generic-result.html`, rollData)
|
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-les-heritiers/templates/chat-generic-result.html`, rollData)
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.392137 7f12ef7fe6c0 Recovering log #202
|
2025/09/15-22:15:24.823326 7f307affd6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.402831 7f12ef7fe6c0 Delete type=3 #200
|
2025/09/15-22:15:24.833041 7f307affd6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.403033 7f12ef7fe6c0 Delete type=0 #202
|
2025/09/15-22:15:24.833115 7f307affd6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.281449 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.584235 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.281484 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.584266 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.288560 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.590949 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.294969 7f12edffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597083 7f307a7fc6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.295038 7f12edffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597126 7f307a7fc6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.213810 7f12eeffd6c0 Recovering log #198
|
2025/09/15-21:06:27.325495 7f307affd6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.256044 7f12eeffd6c0 Delete type=3 #196
|
2025/09/15-21:06:27.335836 7f307affd6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.256149 7f12eeffd6c0 Delete type=0 #198
|
2025/09/15-21:06:27.335957 7f307affd6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.095390 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.705256 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.095416 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.705333 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.101419 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.712270 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.115257 7f12edffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731675 7f307a7fc6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.115306 7f12edffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731735 7f307a7fc6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.427459 7f12effff6c0 Recovering log #202
|
2025/09/15-22:15:24.848609 7f307b7fe6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.437741 7f12effff6c0 Delete type=3 #200
|
2025/09/15-22:15:24.859061 7f307b7fe6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.437824 7f12effff6c0 Delete type=0 #202
|
2025/09/15-22:15:24.859140 7f307b7fe6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.295170 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.577999 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.295253 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.578051 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.301406 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.584148 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.321176 7f12edffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597073 7f307a7fc6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.321242 7f12edffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597114 7f307a7fc6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.321725 7f12ee7fc6c0 Recovering log #198
|
2025/09/15-21:06:27.351420 7f307bfff6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.374068 7f12ee7fc6c0 Delete type=3 #196
|
2025/09/15-21:06:27.362201 7f307bfff6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.374213 7f12ee7fc6c0 Delete type=0 #198
|
2025/09/15-21:06:27.362258 7f307bfff6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.133789 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.712395 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.133823 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.712426 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.139874 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.718406 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.147851 7f12edffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731696 7f307a7fc6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.158002 7f12edffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731747 7f307a7fc6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.358721 7f12eeffd6c0 Recovering log #202
|
2025/09/15-22:15:24.798700 7f307bfff6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.370416 7f12eeffd6c0 Delete type=3 #200
|
2025/09/15-22:15:24.808066 7f307bfff6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.370477 7f12eeffd6c0 Delete type=0 #202
|
2025/09/15-22:15:24.808115 7f307bfff6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.264660 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.541562 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.264688 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.541615 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.270787 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.547814 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.294911 7f12edffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565908 7f307a7fc6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.295015 7f12edffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565949 7f307a7fc6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.151917 7f12ee7fc6c0 Recovering log #198
|
2025/09/15-21:06:27.300488 7f307bfff6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.210898 7f12ee7fc6c0 Delete type=3 #196
|
2025/09/15-21:06:27.310028 7f307bfff6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.211020 7f12ee7fc6c0 Delete type=0 #198
|
2025/09/15-21:06:27.310094 7f307bfff6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.101600 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.685417 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.101658 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.685439 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.109108 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.692723 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.115273 7f12edffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705096 7f307a7fc6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.115320 7f12edffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705139 7f307a7fc6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.304943 7f12ef7fe6c0 Recovering log #202
|
2025/09/15-22:15:24.760919 7f3080dfa6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.317352 7f12ef7fe6c0 Delete type=3 #200
|
2025/09/15-22:15:24.770694 7f3080dfa6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.317883 7f12ef7fe6c0 Delete type=0 #202
|
2025/09/15-22:15:24.770767 7f3080dfa6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.257402 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.521581 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.257472 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.521642 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.264373 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.528012 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.264537 7f12edffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.534278 7f307a7fc6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.264567 7f12edffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.534315 7f307a7fc6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:19.962488 7f12ee7fc6c0 Recovering log #198
|
2025/09/15-21:06:27.262631 7f307bfff6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.014408 7f12ee7fc6c0 Delete type=3 #196
|
2025/09/15-21:06:27.272396 7f307bfff6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.014461 7f12ee7fc6c0 Delete type=0 #198
|
2025/09/15-21:06:27.272468 7f307bfff6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.055412 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.666847 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.055458 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.666873 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.062106 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.672959 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.085428 7f12edffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.679358 7f307a7fc6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.085469 7f12edffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.679384 7f307a7fc6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.341321 7f12ee7fc6c0 Recovering log #202
|
2025/09/15-22:15:24.786128 7f307affd6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.354195 7f12ee7fc6c0 Delete type=3 #200
|
2025/09/15-22:15:24.796141 7f307affd6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.354810 7f12ee7fc6c0 Delete type=0 #202
|
2025/09/15-22:15:24.796205 7f307affd6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.237394 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.534415 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.237434 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.534493 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.243722 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.541334 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.264503 7f12edffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565894 7f307a7fc6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.264544 7f12edffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565940 7f307a7fc6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.096085 7f12effff6c0 Recovering log #198
|
2025/09/15-21:06:27.288049 7f307b7fe6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.149715 7f12effff6c0 Delete type=3 #196
|
2025/09/15-21:06:27.298262 7f307b7fe6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.149828 7f12effff6c0 Delete type=0 #198
|
2025/09/15-21:06:27.298356 7f307b7fe6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.062220 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.692841 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.062246 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.692870 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.068241 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.698762 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.085439 7f12edffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705111 7f307a7fc6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.085475 7f12edffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705145 7f307a7fc6c0 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.
@@ -1 +1 @@
|
|||||||
MANIFEST-000207
|
MANIFEST-000306
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.291417 7f12ee7fc6c0 Recovering log #204
|
2025/09/15-22:15:24.748857 7f307affd6c0 Recovering log #304
|
||||||
2025/08/11-22:51:18.301512 7f12ee7fc6c0 Delete type=3 #202
|
2025/09/15-22:15:24.758566 7f307affd6c0 Delete type=3 #302
|
||||||
2025/08/11-22:51:18.301601 7f12ee7fc6c0 Delete type=0 #204
|
2025/09/15-22:15:24.758631 7f307affd6c0 Delete type=0 #304
|
||||||
2025/08/11-22:52:41.243942 7f12edffb6c0 Level-0 table #210: started
|
2025/09/15-22:23:01.528222 7f307a7fc6c0 Level-0 table #309: started
|
||||||
2025/08/11-22:52:41.244021 7f12edffb6c0 Level-0 table #210: 0 bytes OK
|
2025/09/15-22:23:01.528266 7f307a7fc6c0 Level-0 table #309: 0 bytes OK
|
||||||
2025/08/11-22:52:41.250458 7f12edffb6c0 Delete type=0 #208
|
2025/09/15-22:23:01.534172 7f307a7fc6c0 Delete type=0 #307
|
||||||
2025/08/11-22:52:41.264517 7f12edffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.534287 7f307a7fc6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.264551 7f12edffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.534306 7f307a7fc6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
2025/08/11-21:34:19.906242 7f12effff6c0 Recovering log #200
|
2025/09/15-21:06:27.249709 7f307b7fe6c0 Recovering log #300
|
||||||
2025/08/11-21:34:19.959359 7f12effff6c0 Delete type=3 #198
|
2025/09/15-21:06:27.260222 7f307b7fe6c0 Delete type=3 #298
|
||||||
2025/08/11-21:34:19.959494 7f12effff6c0 Delete type=0 #200
|
2025/09/15-21:06:27.260307 7f307b7fe6c0 Delete type=0 #300
|
||||||
2025/08/11-22:51:08.074684 7f12edffb6c0 Level-0 table #205: started
|
2025/09/15-21:08:54.660355 7f307a7fc6c0 Level-0 table #305: started
|
||||||
2025/08/11-22:51:08.078126 7f12edffb6c0 Level-0 table #205: 31504 bytes OK
|
2025/09/15-21:08:54.660389 7f307a7fc6c0 Level-0 table #305: 0 bytes OK
|
||||||
2025/08/11-22:51:08.085271 7f12edffb6c0 Delete type=0 #203
|
2025/09/15-21:08:54.666754 7f307a7fc6c0 Delete type=0 #303
|
||||||
2025/08/11-22:51:08.085480 7f12edffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.679346 7f307a7fc6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.085510 7f12edffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at '!items!zEl2NQsnCpELVWzh' @ 338 : 1
|
2025/09/15-21:08:54.679378 7f307a7fc6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.085516 7f12edffb6c0 Compacting 1@1 + 1@2 files
|
|
||||||
2025/08/11-22:51:08.088988 7f12edffb6c0 Generated table #206@1: 77 keys, 31504 bytes
|
|
||||||
2025/08/11-22:51:08.089022 7f12edffb6c0 Compacted 1@1 + 1@2 files => 31504 bytes
|
|
||||||
2025/08/11-22:51:08.095088 7f12edffb6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
|
||||||
2025/08/11-22:51:08.095209 7f12edffb6c0 Delete type=2 #197
|
|
||||||
2025/08/11-22:51:08.095332 7f12edffb6c0 Delete type=2 #205
|
|
||||||
2025/08/11-22:51:08.115239 7f12edffb6c0 Manual compaction at level-1 from '!items!zEl2NQsnCpELVWzh' @ 338 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
BIN
packs/competences/MANIFEST-000306
Normal file
BIN
packs/competences/MANIFEST-000306
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000204
|
MANIFEST-000300
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.324133 7f12effff6c0 Recovering log #202
|
2025/09/15-22:15:24.773117 7f307b7fe6c0 Recovering log #298
|
||||||
2025/08/11-22:51:18.335594 7f12effff6c0 Delete type=3 #200
|
2025/09/15-22:15:24.783458 7f307b7fe6c0 Delete type=3 #296
|
||||||
2025/08/11-22:51:18.336174 7f12effff6c0 Delete type=0 #202
|
2025/09/15-22:15:24.783520 7f307b7fe6c0 Delete type=0 #298
|
||||||
2025/08/11-22:52:41.250593 7f12edffb6c0 Level-0 table #207: started
|
2025/09/15-22:23:01.559017 7f307a7fc6c0 Level-0 table #303: started
|
||||||
2025/08/11-22:52:41.250618 7f12edffb6c0 Level-0 table #207: 0 bytes OK
|
2025/09/15-22:23:01.559048 7f307a7fc6c0 Level-0 table #303: 0 bytes OK
|
||||||
2025/08/11-22:52:41.257077 7f12edffb6c0 Delete type=0 #205
|
2025/09/15-22:23:01.565802 7f307a7fc6c0 Delete type=0 #301
|
||||||
2025/08/11-22:52:41.264527 7f12edffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565930 7f307a7fc6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.264560 7f12edffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.565957 7f307a7fc6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.017484 7f12eeffd6c0 Recovering log #198
|
2025/09/15-21:06:27.274645 7f3080dfa6c0 Recovering log #294
|
||||||
2025/08/11-21:34:20.093316 7f12eeffd6c0 Delete type=3 #196
|
2025/09/15-21:06:27.285405 7f3080dfa6c0 Delete type=3 #292
|
||||||
2025/08/11-21:34:20.093428 7f12eeffd6c0 Delete type=0 #198
|
2025/09/15-21:06:27.285486 7f3080dfa6c0 Delete type=0 #294
|
||||||
2025/08/11-22:51:08.068405 7f12edffb6c0 Level-0 table #203: started
|
2025/09/15-21:08:54.679508 7f307a7fc6c0 Level-0 table #299: started
|
||||||
2025/08/11-22:51:08.068464 7f12edffb6c0 Level-0 table #203: 0 bytes OK
|
2025/09/15-21:08:54.679542 7f307a7fc6c0 Level-0 table #299: 0 bytes OK
|
||||||
2025/08/11-22:51:08.074542 7f12edffb6c0 Delete type=0 #201
|
2025/09/15-21:08:54.685322 7f307a7fc6c0 Delete type=0 #297
|
||||||
2025/08/11-22:51:08.085448 7f12edffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705080 7f307a7fc6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.085490 7f12edffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.705123 7f307a7fc6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
BIN
packs/journaux/000005.ldb
Normal file
BIN
packs/journaux/000005.ldb
Normal file
Binary file not shown.
1
packs/journaux/CURRENT
Normal file
1
packs/journaux/CURRENT
Normal file
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000018
|
||||||
8
packs/journaux/LOG
Normal file
8
packs/journaux/LOG
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
2025/09/15-22:15:24.887393 7f3080dfa6c0 Recovering log #16
|
||||||
|
2025/09/15-22:15:24.897947 7f3080dfa6c0 Delete type=3 #14
|
||||||
|
2025/09/15-22:15:24.898013 7f3080dfa6c0 Delete type=0 #16
|
||||||
|
2025/09/15-22:23:01.610372 7f307a7fc6c0 Level-0 table #21: started
|
||||||
|
2025/09/15-22:23:01.610444 7f307a7fc6c0 Level-0 table #21: 0 bytes OK
|
||||||
|
2025/09/15-22:23:01.616579 7f307a7fc6c0 Delete type=0 #19
|
||||||
|
2025/09/15-22:23:01.623474 7f307a7fc6c0 Manual compaction at level-0 from '!journal!QZDy8zwSVh7t4meA' @ 72057594037927935 : 1 .. '!journal.pages!QZDy8zwSVh7t4meA.gdXBDBkPlBjfmTy7' @ 0 : 0; will stop at (end)
|
||||||
|
2025/09/15-22:23:01.623518 7f307a7fc6c0 Manual compaction at level-1 from '!journal!QZDy8zwSVh7t4meA' @ 72057594037927935 : 1 .. '!journal.pages!QZDy8zwSVh7t4meA.gdXBDBkPlBjfmTy7' @ 0 : 0; will stop at (end)
|
||||||
8
packs/journaux/LOG.old
Normal file
8
packs/journaux/LOG.old
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
2025/09/15-21:06:27.389764 7f307affd6c0 Recovering log #12
|
||||||
|
2025/09/15-21:06:27.400118 7f307affd6c0 Delete type=3 #10
|
||||||
|
2025/09/15-21:06:27.400175 7f307affd6c0 Delete type=0 #12
|
||||||
|
2025/09/15-21:08:54.731831 7f307a7fc6c0 Level-0 table #17: started
|
||||||
|
2025/09/15-21:08:54.731879 7f307a7fc6c0 Level-0 table #17: 0 bytes OK
|
||||||
|
2025/09/15-21:08:54.738151 7f307a7fc6c0 Delete type=0 #15
|
||||||
|
2025/09/15-21:08:54.758915 7f307a7fc6c0 Manual compaction at level-0 from '!journal!QZDy8zwSVh7t4meA' @ 72057594037927935 : 1 .. '!journal.pages!QZDy8zwSVh7t4meA.gdXBDBkPlBjfmTy7' @ 0 : 0; will stop at (end)
|
||||||
|
2025/09/15-21:08:54.758952 7f307a7fc6c0 Manual compaction at level-1 from '!journal!QZDy8zwSVh7t4meA' @ 72057594037927935 : 1 .. '!journal.pages!QZDy8zwSVh7t4meA.gdXBDBkPlBjfmTy7' @ 0 : 0; will stop at (end)
|
||||||
BIN
packs/journaux/MANIFEST-000018
Normal file
BIN
packs/journaux/MANIFEST-000018
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/magie-sorts/000107.ldb
Normal file
BIN
packs/magie-sorts/000107.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000002
|
MANIFEST-000103
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
2025/08/11-22:51:18.389099 7f12eeffd6c0 Delete type=3 #1
|
2025/09/15-22:15:24.810480 7f307b7fe6c0 Recovering log #101
|
||||||
2025/08/11-22:52:41.270919 7f12edffb6c0 Level-0 table #5: started
|
2025/09/15-22:15:24.820390 7f307b7fe6c0 Delete type=3 #99
|
||||||
2025/08/11-22:52:41.274955 7f12edffb6c0 Level-0 table #5: 72907 bytes OK
|
2025/09/15-22:15:24.820446 7f307b7fe6c0 Delete type=0 #101
|
||||||
2025/08/11-22:52:41.281286 7f12edffb6c0 Delete type=0 #3
|
2025/09/15-22:23:01.547894 7f307a7fc6c0 Level-0 table #106: started
|
||||||
2025/08/11-22:52:41.294945 7f12edffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.552623 7f307a7fc6c0 Level-0 table #106: 132165 bytes OK
|
||||||
|
2025/09/15-22:23:01.558854 7f307a7fc6c0 Delete type=0 #104
|
||||||
|
2025/09/15-22:23:01.565921 7f307a7fc6c0 Manual compaction at level-0 from '!folders!5pCYN0vTiCKOHrXM' @ 72057594037927935 : 1 .. '!items!zbZ88BQkH9ZCYlDK' @ 0 : 0; will stop at (end)
|
||||||
|
2025/09/15-22:23:01.565970 7f307a7fc6c0 Manual compaction at level-1 from '!folders!5pCYN0vTiCKOHrXM' @ 72057594037927935 : 1 .. '!items!zbZ88BQkH9ZCYlDK' @ 0 : 0; will stop at '!items!zbZ88BQkH9ZCYlDK' @ 457 : 0
|
||||||
|
2025/09/15-22:23:01.565979 7f307a7fc6c0 Compacting 1@1 + 1@2 files
|
||||||
|
2025/09/15-22:23:01.571458 7f307a7fc6c0 Generated table #107@1: 146 keys, 129863 bytes
|
||||||
|
2025/09/15-22:23:01.571503 7f307a7fc6c0 Compacted 1@1 + 1@2 files => 129863 bytes
|
||||||
|
2025/09/15-22:23:01.577463 7f307a7fc6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||||
|
2025/09/15-22:23:01.577659 7f307a7fc6c0 Delete type=2 #86
|
||||||
|
2025/09/15-22:23:01.577865 7f307a7fc6c0 Delete type=2 #106
|
||||||
|
2025/09/15-22:23:01.597062 7f307a7fc6c0 Manual compaction at level-1 from '!items!zbZ88BQkH9ZCYlDK' @ 457 : 0 .. '!items!zbZ88BQkH9ZCYlDK' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
8
packs/magie-sorts/LOG.old
Normal file
8
packs/magie-sorts/LOG.old
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
2025/09/15-21:06:27.312840 7f3080dfa6c0 Recovering log #97
|
||||||
|
2025/09/15-21:06:27.322814 7f3080dfa6c0 Delete type=3 #95
|
||||||
|
2025/09/15-21:06:27.322901 7f3080dfa6c0 Delete type=0 #97
|
||||||
|
2025/09/15-21:08:54.698842 7f307a7fc6c0 Level-0 table #102: started
|
||||||
|
2025/09/15-21:08:54.698870 7f307a7fc6c0 Level-0 table #102: 0 bytes OK
|
||||||
|
2025/09/15-21:08:54.704908 7f307a7fc6c0 Delete type=0 #100
|
||||||
|
2025/09/15-21:08:54.705132 7f307a7fc6c0 Manual compaction at level-0 from '!folders!1ENmqNfRLUTmKPc6' @ 72057594037927935 : 1 .. '!items!zbZ88BQkH9ZCYlDK' @ 0 : 0; will stop at (end)
|
||||||
|
2025/09/15-21:08:54.705168 7f307a7fc6c0 Manual compaction at level-1 from '!folders!1ENmqNfRLUTmKPc6' @ 72057594037927935 : 1 .. '!items!zbZ88BQkH9ZCYlDK' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
BIN
packs/magie-sorts/MANIFEST-000103
Normal file
BIN
packs/magie-sorts/MANIFEST-000103
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000205
|
MANIFEST-000301
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.409703 7f12eeffd6c0 Recovering log #203
|
2025/09/15-22:15:24.835820 7f307bfff6c0 Recovering log #299
|
||||||
2025/08/11-22:51:18.420789 7f12eeffd6c0 Delete type=3 #201
|
2025/09/15-22:15:24.845487 7f307bfff6c0 Delete type=3 #297
|
||||||
2025/08/11-22:51:18.420873 7f12eeffd6c0 Delete type=0 #203
|
2025/09/15-22:15:24.845568 7f307bfff6c0 Delete type=0 #299
|
||||||
2025/08/11-22:52:41.288698 7f12edffb6c0 Level-0 table #208: started
|
2025/09/15-22:23:01.591108 7f307a7fc6c0 Level-0 table #304: started
|
||||||
2025/08/11-22:52:41.288730 7f12edffb6c0 Level-0 table #208: 0 bytes OK
|
2025/09/15-22:23:01.591136 7f307a7fc6c0 Level-0 table #304: 0 bytes OK
|
||||||
2025/08/11-22:52:41.294715 7f12edffb6c0 Delete type=0 #206
|
2025/09/15-22:23:01.596986 7f307a7fc6c0 Delete type=0 #302
|
||||||
2025/08/11-22:52:41.294992 7f12edffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597090 7f307a7fc6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.295062 7f12edffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.597120 7f307a7fc6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.258603 7f12effff6c0 Recovering log #199
|
2025/09/15-21:06:27.338726 7f307b7fe6c0 Recovering log #295
|
||||||
2025/08/11-21:34:20.318194 7f12effff6c0 Delete type=3 #197
|
2025/09/15-21:06:27.348432 7f307b7fe6c0 Delete type=3 #293
|
||||||
2025/08/11-21:34:20.318250 7f12effff6c0 Delete type=0 #199
|
2025/09/15-21:06:27.348491 7f307b7fe6c0 Delete type=0 #295
|
||||||
2025/08/11-22:51:08.109218 7f12edffb6c0 Level-0 table #204: started
|
2025/09/15-21:08:54.718495 7f307a7fc6c0 Level-0 table #300: started
|
||||||
2025/08/11-22:51:08.109241 7f12edffb6c0 Level-0 table #204: 0 bytes OK
|
2025/09/15-21:08:54.718519 7f307a7fc6c0 Level-0 table #300: 0 bytes OK
|
||||||
2025/08/11-22:51:08.115092 7f12edffb6c0 Delete type=0 #202
|
2025/09/15-21:08:54.724957 7f307a7fc6c0 Delete type=0 #298
|
||||||
2025/08/11-22:51:08.115290 7f12edffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731709 7f307a7fc6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.115335 7f12edffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731758 7f307a7fc6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
0
packs/profils/000300.log
Normal file
0
packs/profils/000300.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000202
|
MANIFEST-000298
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2025/08/11-22:51:18.440585 7f12ef7fe6c0 Recovering log #200
|
2025/09/15-22:15:24.861471 7f3080dfa6c0 Recovering log #296
|
||||||
2025/08/11-22:51:18.452074 7f12ef7fe6c0 Delete type=3 #198
|
2025/09/15-22:15:24.871507 7f3080dfa6c0 Delete type=3 #294
|
||||||
2025/08/11-22:51:18.452406 7f12ef7fe6c0 Delete type=0 #200
|
2025/09/15-22:15:24.871573 7f3080dfa6c0 Delete type=0 #296
|
||||||
2025/08/11-22:52:41.301484 7f12edffb6c0 Level-0 table #205: started
|
2025/09/15-22:23:01.597208 7f307a7fc6c0 Level-0 table #301: started
|
||||||
2025/08/11-22:52:41.301507 7f12edffb6c0 Level-0 table #205: 0 bytes OK
|
2025/09/15-22:23:01.597240 7f307a7fc6c0 Level-0 table #301: 0 bytes OK
|
||||||
2025/08/11-22:52:41.307731 7f12edffb6c0 Delete type=0 #203
|
2025/09/15-22:23:01.603183 7f307a7fc6c0 Delete type=0 #299
|
||||||
2025/08/11-22:52:41.321197 7f12edffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.623429 7f307a7fc6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2025/08/11-21:34:20.376707 7f12eeffd6c0 Recovering log #196
|
2025/09/15-21:06:27.364429 7f3080dfa6c0 Recovering log #292
|
||||||
2025/08/11-21:34:20.429317 7f12eeffd6c0 Delete type=3 #194
|
2025/09/15-21:06:27.374643 7f3080dfa6c0 Delete type=3 #290
|
||||||
2025/08/11-21:34:20.429419 7f12eeffd6c0 Delete type=0 #196
|
2025/09/15-21:06:27.374720 7f3080dfa6c0 Delete type=0 #292
|
||||||
2025/08/11-22:51:08.115446 7f12edffb6c0 Level-0 table #201: started
|
2025/09/15-21:08:54.725160 7f307a7fc6c0 Level-0 table #297: started
|
||||||
2025/08/11-22:51:08.115492 7f12edffb6c0 Level-0 table #201: 0 bytes OK
|
2025/09/15-21:08:54.725200 7f307a7fc6c0 Level-0 table #297: 0 bytes OK
|
||||||
2025/08/11-22:51:08.121470 7f12edffb6c0 Delete type=0 #199
|
2025/09/15-21:08:54.731505 7f307a7fc6c0 Delete type=0 #295
|
||||||
2025/08/11-22:51:08.147831 7f12edffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.731723 7f307a7fc6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
BIN
packs/profils/MANIFEST-000298
Normal file
BIN
packs/profils/MANIFEST-000298
Normal file
Binary file not shown.
0
packs/scenes/000271.log
Normal file
0
packs/scenes/000271.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000173
|
MANIFEST-000269
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-22:51:18.458421 7f12eeffd6c0 Recovering log #171
|
2025/09/15-22:15:24.873861 7f307affd6c0 Recovering log #267
|
||||||
2025/08/11-22:51:18.469978 7f12eeffd6c0 Delete type=3 #169
|
2025/09/15-22:15:24.883924 7f307affd6c0 Delete type=3 #265
|
||||||
2025/08/11-22:51:18.470069 7f12eeffd6c0 Delete type=0 #171
|
2025/09/15-22:15:24.884000 7f307affd6c0 Delete type=0 #267
|
||||||
2025/08/11-22:52:41.314747 7f12edffb6c0 Level-0 table #176: started
|
2025/09/15-22:23:01.616718 7f307a7fc6c0 Level-0 table #272: started
|
||||||
2025/08/11-22:52:41.314796 7f12edffb6c0 Level-0 table #176: 0 bytes OK
|
2025/09/15-22:23:01.616761 7f307a7fc6c0 Level-0 table #272: 0 bytes OK
|
||||||
2025/08/11-22:52:41.320976 7f12edffb6c0 Delete type=0 #174
|
2025/09/15-22:23:01.623192 7f307a7fc6c0 Delete type=0 #270
|
||||||
2025/08/11-22:52:41.321230 7f12edffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.623491 7f307a7fc6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:52:41.321269 7f12edffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
2025/09/15-22:23:01.623509 7f307a7fc6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2025/08/11-21:34:20.432403 7f12effff6c0 Recovering log #167
|
2025/09/15-21:06:27.376909 7f307b7fe6c0 Recovering log #263
|
||||||
2025/08/11-21:34:20.484938 7f12effff6c0 Delete type=3 #165
|
2025/09/15-21:06:27.386759 7f307b7fe6c0 Delete type=3 #261
|
||||||
2025/08/11-21:34:20.484995 7f12effff6c0 Delete type=0 #167
|
2025/09/15-21:06:27.386852 7f307b7fe6c0 Delete type=0 #263
|
||||||
2025/08/11-22:51:08.140001 7f12edffb6c0 Level-0 table #172: started
|
2025/09/15-21:08:54.752330 7f307a7fc6c0 Level-0 table #268: started
|
||||||
2025/08/11-22:51:08.140028 7f12edffb6c0 Level-0 table #172: 0 bytes OK
|
2025/09/15-21:08:54.752369 7f307a7fc6c0 Level-0 table #268: 0 bytes OK
|
||||||
2025/08/11-22:51:08.147678 7f12edffb6c0 Delete type=0 #170
|
2025/09/15-21:08:54.758780 7f307a7fc6c0 Delete type=0 #266
|
||||||
2025/08/11-22:51:08.147861 7f12edffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.758945 7f307a7fc6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||||
2025/08/11-22:51:08.157987 7f12edffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
2025/09/15-21:08:54.758971 7f307a7fc6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -111,10 +111,6 @@
|
|||||||
color: #151c1f;
|
color: #151c1f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading-link {
|
|
||||||
color: #151c1f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.window-app.sheet .window-content {
|
.window-app.sheet .window-content {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -382,6 +378,7 @@
|
|||||||
.editor {
|
.editor {
|
||||||
border: 2;
|
border: 2;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
|
margin-top: 8px;
|
||||||
padding: 0 3px;
|
padding: 0 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
19
system.json
19
system.json
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "fvtt-les-heritiers",
|
"id": "fvtt-les-heritiers",
|
||||||
"description": "Les Héritiers pour FoundryVTT",
|
"description": "Les Héritiers pour FoundryVTT",
|
||||||
"version": "13.0.1",
|
"version": "13.0.7",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Uberwald/LeRatierBretonnien",
|
"name": "Uberwald/LeRatierBretonnien",
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
},
|
},
|
||||||
"license": "LICENSE.txt",
|
"license": "LICENSE.txt",
|
||||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/raw/branch/master/system.json",
|
"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-13.0.1.zip",
|
"download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-13.0.7.zip",
|
||||||
"languages": [
|
"languages": [
|
||||||
{
|
{
|
||||||
"lang": "fr",
|
"lang": "fr",
|
||||||
@@ -65,7 +65,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packs": [
|
"packs": [
|
||||||
"scenes"
|
"scenes",
|
||||||
|
"journaux"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -201,6 +202,18 @@
|
|||||||
"PLAYER": "OBSERVER",
|
"PLAYER": "OBSERVER",
|
||||||
"ASSISTANT": "OWNER"
|
"ASSISTANT": "OWNER"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "JournalEntry",
|
||||||
|
"label": "Journaux",
|
||||||
|
"name": "journaux",
|
||||||
|
"path": "packs/journaux",
|
||||||
|
"system": "fvtt-les-heritiers",
|
||||||
|
"flags": {},
|
||||||
|
"ownership": {
|
||||||
|
"PLAYER": "OBSERVER",
|
||||||
|
"ASSISTANT": "OWNER"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"primaryTokenAttribute": "sante.vigueur",
|
"primaryTokenAttribute": "sante.vigueur",
|
||||||
|
|||||||
@@ -343,6 +343,10 @@
|
|||||||
"categorie": "",
|
"categorie": "",
|
||||||
"profil": "",
|
"profil": "",
|
||||||
"niveau": 0,
|
"niveau": 0,
|
||||||
|
"nomniveau": { "1": "", "2": "", "3": "", "4": ""},
|
||||||
|
"nomniveausouffle": { "soufflecombat": { "1":"", "2": "", "3": "", "4": "" },
|
||||||
|
"soufflemouvement": { "1": "", "2": 0, "3": "", "4": "" },
|
||||||
|
"souffleesprit": { "1": "", "2": "", "3": "", "4": "" } },
|
||||||
"predilection": false,
|
"predilection": false,
|
||||||
"specialites": [],
|
"specialites": [],
|
||||||
"ismagie": false,
|
"ismagie": false,
|
||||||
@@ -356,16 +360,21 @@
|
|||||||
},
|
},
|
||||||
"sort": {
|
"sort": {
|
||||||
"niveau": "1",
|
"niveau": "1",
|
||||||
|
"rang": "1",
|
||||||
"competence": "Druidisme",
|
"competence": "Druidisme",
|
||||||
"carac1": "esp",
|
"carac1": "esp",
|
||||||
"carac2": "none",
|
"carac2": "none",
|
||||||
|
"sdspecial": "",
|
||||||
"duree": "",
|
"duree": "",
|
||||||
"portee": "",
|
"portee": "",
|
||||||
"concentration": "",
|
"concentration": "",
|
||||||
|
"informatif": false,
|
||||||
|
"texteinformatif": "",
|
||||||
"critique": "",
|
"critique": "",
|
||||||
"ingredients": "",
|
"ingredients": "",
|
||||||
"resistance": "",
|
"resistance": "",
|
||||||
"coutactivation": "",
|
"coutactivation": "",
|
||||||
|
"souffle": "",
|
||||||
"description": ""
|
"description": ""
|
||||||
},
|
},
|
||||||
"arme": {
|
"arme": {
|
||||||
|
|||||||
@@ -507,25 +507,26 @@
|
|||||||
|
|
||||||
{{#each magieList as |magie idx|}}
|
{{#each magieList as |magie idx|}}
|
||||||
<li class="item flexrow " data-item-id="{{magie.competence._id}}" data-item-type="competence">
|
<li class="item flexrow " data-item-id="{{magie.competence._id}}" data-item-type="competence">
|
||||||
<h2 class="flexrow"><label class="items-title-text "><a class="roll-competence item-field-label-short"
|
<h3 class="flexrow"><label class="items-title-text "><a class="roll-competence item-field-label-short"
|
||||||
data-attr-key="tochoose">{{magie.name}} {{magie.competence.system.niveau}} </a> </label>
|
data-attr-key="tochoose">{{magie.name}} {{magie.competence.system.niveau}} </a> </label>
|
||||||
|
<!-- <span>Rang : {{magie.rang}}</span> -->
|
||||||
|
<span>{{magie.rangSpecificName}}</span>
|
||||||
<div class="item-controls item-controls-fixed">
|
<div class="item-controls item-controls-fixed">
|
||||||
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||||
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
||||||
</div>
|
</div>
|
||||||
</h2>
|
</h3>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
{{#if (eq magie.name "Magie du Clan")}}
|
||||||
<div class="sheet-box color-bg-archetype">
|
<div class="sheet-box color-bg-archetype">
|
||||||
|
<h4 class="items-title-text">Souffle de Combat</h4>
|
||||||
<ul class="item-list alternate-list">
|
<ul class="item-list alternate-list">
|
||||||
|
{{#each sorts.soufflecombat as |niveau key|}}
|
||||||
<li class="item flexrow list-item items-title-bg">
|
<li class="item flexrow list-item items-title-bg">
|
||||||
<span class="item-name-label-header item-field-label-long2-img">
|
<span class="item-name-label-header item-field-label-long2-img">
|
||||||
<h3><label class="items-title-text">Nom du sort</label></h3>
|
<h4><label class="items-title-text">Niveau {{key}} {{niveau.nomNiveau}}</label></h4>
|
||||||
</span>
|
</span>
|
||||||
<span class="item-field-label-medium">
|
|
||||||
<label class="short-label">Niveau</label>
|
|
||||||
</span>
|
|
||||||
<div class="item-filler"> </div>
|
|
||||||
<div class="item-controls item-controls-fixed">
|
<div class="item-controls item-controls-fixed">
|
||||||
{{#if @root.isGM}}
|
{{#if @root.isGM}}
|
||||||
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
||||||
@@ -533,11 +534,15 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{#each sorts as |sort key|}}
|
{{#each niveau.sorts as |sort key|}}
|
||||||
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
||||||
<img class="item-name-img" src="{{sort.img}}" />
|
<img class="item-name-img" src="{{sort.img}}" />
|
||||||
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
||||||
|
{{#if sort.system.informatif}}
|
||||||
|
<span class="item-field-label-medium">Informatif</span>
|
||||||
|
{{else}}
|
||||||
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
<div class="item-filler"> </div>
|
<div class="item-filler"> </div>
|
||||||
<div class="item-controls item-controls-fixed">
|
<div class="item-controls item-controls-fixed">
|
||||||
@@ -546,13 +551,116 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4 class="items-title-text">Souffle de Mouvement</h4>
|
||||||
|
<ul class="item-list alternate-list">
|
||||||
|
{{#each sorts.soufflemouvement as |niveau key|}}
|
||||||
|
<li class="item flexrow list-item items-title-bg">
|
||||||
|
<span class="item-name-label-header item-field-label-long2-img">
|
||||||
|
<h4><label class="items-title-text">Niveau {{key}} {{niveau.nomNiveau}}</label></h4>
|
||||||
|
</span>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
{{#if @root.isGM}}
|
||||||
|
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
||||||
|
title="Ajouter un sort"><i class="fas fa-plus"></i></a>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{#each niveau.sorts as |sort key|}}
|
||||||
|
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
||||||
|
<img class="item-name-img" src="{{sort.img}}" />
|
||||||
|
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
||||||
|
{{#if sort.system.informatif}}
|
||||||
|
<span class="item-field-label-medium">Informatif</span>
|
||||||
|
{{else}}
|
||||||
|
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<div class="item-filler"> </div>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||||
|
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
<h4 class="items-title-text">Souffle de l'Esprit</h4>
|
||||||
|
<ul class="item-list alternate-list">
|
||||||
|
{{#each sorts.souffleesprit as |niveau key|}}
|
||||||
|
<li class="item flexrow list-item items-title-bg">
|
||||||
|
<span class="item-name-label-header item-field-label-long2-img">
|
||||||
|
<h4><label class="items-title-text">Niveau {{key}} {{niveau.nomNiveau}}</label></h4>
|
||||||
|
</span>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
{{#if @root.isGM}}
|
||||||
|
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
||||||
|
title="Ajouter un sort"><i class="fas fa-plus"></i></a>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{#each niveau.sorts as |sort key|}}
|
||||||
|
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
||||||
|
<img class="item-name-img" src="{{sort.img}}" />
|
||||||
|
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
||||||
|
{{#if sort.system.informatif}}
|
||||||
|
<span class="item-field-label-medium">Informatif</span>
|
||||||
|
{{else}}
|
||||||
|
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<div class="item-filler"> </div>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||||
|
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{else}}
|
||||||
|
<div class="sheet-box color-bg-archetype">
|
||||||
|
<ul class="item-list alternate-list">
|
||||||
|
{{#each sorts as |niveau key|}}
|
||||||
|
<li class="item flexrow list-item items-title-bg">
|
||||||
|
<span class="item-name-label-header item-field-label-long2-img">
|
||||||
|
<h4><label class="items-title-text">Niveau {{key}} {{niveau.nomNiveau}}</label></h4>
|
||||||
|
</span>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
{{#if @root.isGM}}
|
||||||
|
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
||||||
|
title="Ajouter un sort"><i class="fas fa-plus"></i></a>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{#each niveau.sorts as |sort key|}}
|
||||||
|
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
||||||
|
<img class="item-name-img" src="{{sort.img}}" />
|
||||||
|
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
||||||
|
|
||||||
|
{{#if sort.system.informatif}}
|
||||||
|
<span class="item-field-label-medium">Informatif</span>
|
||||||
|
{{else}}
|
||||||
|
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<div class="item-filler"> </div>
|
||||||
|
<div class="item-controls item-controls-fixed">
|
||||||
|
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||||
|
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{{!-- Equipement Tab --}}
|
{{!-- Equipement Tab --}}
|
||||||
<div class="tab equipement" data-group="primary" data-tab="equipement">
|
<div class="tab equipement" data-group="primary" data-tab="equipement">
|
||||||
|
|
||||||
@@ -690,7 +798,8 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="item-field-label-long2">Factions féériques</label> <input type="text" class=""
|
<label class="item-field-label-long2">Factions féériques</label> <input type="text" class=""
|
||||||
name="system.biodata.factionfeerique" value="{{system.biodata.factionfeerique}}" data-dtype="String" />
|
name="system.biodata.factionfeerique" value="{{system.biodata.factionfeerique}}"
|
||||||
|
data-dtype="String" />
|
||||||
</li>
|
</li>
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="item-field-label-long2">Traits de caractères dominants</label> <input type="text" class=""
|
<label class="item-field-label-long2">Traits de caractères dominants</label> <input type="text" class=""
|
||||||
@@ -726,8 +835,8 @@
|
|||||||
{{#if isGM}}
|
{{#if isGM}}
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<label class="generic-label">Fiche de Magie ?</label>
|
<label class="generic-label">Fiche de Magie ?</label>
|
||||||
<input type="checkbox" class="item-field-label-short edit-item-data" name="system.biodata.magie" {{checked
|
<input type="checkbox" class="item-field-label-short edit-item-data" name="system.biodata.magie"
|
||||||
system.biodata.magie}} />
|
{{checked system.biodata.magie}} />
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</ul>
|
</ul>
|
||||||
@@ -768,8 +877,8 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<label class="generic-label">Poids Démasqué</label>
|
<label class="generic-label">Poids Démasqué</label>
|
||||||
<input type="text" class="" name="system.biodata.poidsdemasquee" value="{{system.biodata.poidsdemasquee}}"
|
<input type="text" class="" name="system.biodata.poidsdemasquee"
|
||||||
data-dtype="String" />
|
value="{{system.biodata.poidsdemasquee}}" data-dtype="String" />
|
||||||
</li>
|
</li>
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<label class="generic-label">XP</label>
|
<label class="generic-label">XP</label>
|
||||||
@@ -778,8 +887,8 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="item flexrow">
|
<li class="item flexrow">
|
||||||
<label class="generic-label">XP pour tricher</label>
|
<label class="generic-label">XP pour tricher</label>
|
||||||
<input type="text" class="" name="system.experience.pourtricher" value="{{system.experience.pourtricher}}"
|
<input type="text" class="" name="system.experience.pourtricher"
|
||||||
data-dtype="String" />
|
value="{{system.experience.pourtricher}}" data-dtype="String" />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -822,7 +931,8 @@
|
|||||||
<h3>Secrets découverts</h3>
|
<h3>Secrets découverts</h3>
|
||||||
</span>
|
</span>
|
||||||
<div class="medium-editor item-text-long-line">
|
<div class="medium-editor item-text-long-line">
|
||||||
{{editor secretsdecouverts target="system.biodata.secretsdecouverts" button=true owner=owner editable=editable}}
|
{{editor secretsdecouverts target="system.biodata.secretsdecouverts" button=true owner=owner
|
||||||
|
editable=editable}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
|
|||||||
@@ -18,59 +18,106 @@
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="heritiers-roll">Caractéristique : {{carac.label}} ({{carac.value}})</li>
|
<li class="heritiers-roll"><strong>Caractéristique :</strong> {{carac.label}} ({{carac.value}})</li>
|
||||||
|
|
||||||
{{#if rang}}
|
{{#if rang}}
|
||||||
<li>{{rang.label}} : {{rang.value}}</li>
|
<li><strong>{{rang.label}} :</strong> {{rang.value}}</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if competence}}
|
{{#if competence}}
|
||||||
<li>Compétence : {{competence.name}} ({{competence.system.niveau}})</li>
|
<li><strong>Compétence :</strong> {{competence.name}} ({{competence.system.niveau}})</li>
|
||||||
{{#if useSpecialite}}
|
{{#if useSpecialite}}
|
||||||
<li>Bonus de spécialité +1</li>
|
<li>Bonus de spécialité +1</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if arme}}
|
{{#if arme}}
|
||||||
<li>Attaque avec : {{arme.name}}</li>
|
<li><strong>Attaque avec : </strong>{{arme.name}}</li>
|
||||||
{{#if (eq mode "assommer")}}
|
{{#if (eq mode "assommer")}}
|
||||||
<li>Attaque pour assommer</li>
|
<li>Attaque pour assommer</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if pouvoir}}
|
{{#if pouvoir}}
|
||||||
<li>Pouvoir : {{pouvoir.name}}</li>
|
<li><strong>Pouvoir</strong> : {{pouvoir.name}}</li>
|
||||||
<li>Effet : {{pouvoir.system.effet}}</li>
|
<li><strong>Effet</strong> : {{pouvoir.system.effet}}</li>
|
||||||
<li>Points d'usage consommés : {{pouvoirPointsUsage}}</li>
|
{{#if (ne pouvoir.system.duree "")}}
|
||||||
|
<li><strong>Durée :</strong> {{pouvoir.system.duree}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.portee "")}}
|
||||||
|
<li><strong>Portée :</strong> {{pouvoir.system.portee}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.resistance "")}}
|
||||||
|
<li><strong>Résistance :</strong> {{pouvoir.system.resistance}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.resistanceautre "")}}
|
||||||
|
<li><strong>Résistance autre :</strong> {{pouvoir.system.resistanceautre}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.zoneeffet "")}}
|
||||||
|
<li><strong>Zone d'effet :</strong> {{pouvoir.system.zoneeffet}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.cibles "")}}
|
||||||
|
<li><strong>Cibles :</strong> {{pouvoir.system.cibles}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne pouvoir.system.virulence "")}}
|
||||||
|
<li><strong>Virulence :</strong> {{pouvoir.system.virulence}}</li>
|
||||||
|
{{/if}}
|
||||||
|
<li><strong>Points d'usage consommés :</strong> {{pouvoirPointsUsage}}</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if sort}}
|
{{#if sort}}
|
||||||
<li>Sort : {{sort.name}}</li>
|
<li><strong>Sort :</strong> {{sort.name}}</li>
|
||||||
<li>Cout en Points d'âmes : {{sortPointsAme}}</li>
|
{{#if (ne sort.system.resistance "")}}
|
||||||
|
<li><strong>Résistance :</strong> {{sort.system.resistance}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne sort.system.concentration "")}}
|
||||||
|
<li><strong>Concentration :</strong> {{sort.system.concentration}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne sort.system.duree "")}}
|
||||||
|
<li><strong>Durée :</strong> {{sort.system.duree}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne sort.system.portee "")}}
|
||||||
|
<li><strong>Portée :</strong> {{sort.system.portee}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne sort.system.ingredients "")}}
|
||||||
|
<li><strong>Ingrédients :</strong> {{sort.system.ingredients}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if (ne sort.system.coutactivation "")}}
|
||||||
|
<li><strong>Coût d'activation :</strong> {{sort.system.coutactivation}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if spendEsprit}}
|
||||||
|
<li><strong>Points d'Esprit dépensé :</strong> 1</li>
|
||||||
|
{{else}}
|
||||||
|
<li><strong>Coût en points d'Âme</strong> : {{sortPointsAme}}</li>
|
||||||
|
{{#if (eq sort.system.competence "Magie du Clan")}}
|
||||||
|
<li><strong>Souffle :</strong> {{sort.system.souffle}}</li>
|
||||||
|
<li><strong>Cout en PV :</strong> 2</li>
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if forcedValue}}
|
{{#if forcedValue}}
|
||||||
<li>Vous dépense 2 points de Tricherie et utilisé une face adjacente du dé !</li>
|
<li>Vous dépensez 2 points de Tricherie et utilisez une face adjacente du dé !</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if noRoll}}
|
{{#if noRoll}}
|
||||||
{{else}}
|
{{else}}
|
||||||
<li>Formule : {{diceFormula}}</li>
|
<li><strong>Formule :</strong> {{diceFormula}}</li>
|
||||||
<li>Résultat du dé : {{diceResult}} </li>
|
<li><strong>Résultat du dé :</strong> {{diceResult}} </li>
|
||||||
|
|
||||||
{{#if adjacentFaces}}
|
{{#if adjacentFaces}}
|
||||||
<li>Faces Adjacentes :
|
<li><strong>Faces adjacentes :</strong>
|
||||||
{{#each adjacentFaces as |value key|}}
|
{{#each adjacentFaces as |value key|}}
|
||||||
<a class="roll-tricherie-2" data-dice-value="{{value}}">{{value}}</a>
|
<a class="roll-tricherie-2" data-dice-value="{{value}}">{{value}}</a>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<li>Total : {{finalResult}} {{#if (gt sdValue "-1")}}(Marge : {{marge}}){{/if}}</li>
|
<li><strong>Total : {{finalResult}} {{#if (gt sdValue "-1")}}(Marge : {{marge}}){{/if}}</strong></li>
|
||||||
|
|
||||||
|
|
||||||
{{#if (gt sdValue "-1")}}
|
{{#if (gt sdValue "-1")}}
|
||||||
<li>Seuil de difficulté : {{sdValue}}</li>
|
<li><strong>Seuil de difficulté :</strong> {{sdValue}}</li>
|
||||||
{{#if isSuccess}}
|
{{#if isSuccess}}
|
||||||
<li class="chat-success">Succès...
|
<li class="chat-success">Succès...
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -22,8 +22,8 @@
|
|||||||
|
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="generic-label item-field-label-long2">Profil </label>
|
<label class="generic-label item-field-label-long2">Profil </label>
|
||||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.profil"
|
||||||
name="system.profil" value="{{system.profil}}" data-dtype="string">
|
value="{{system.profil}}" data-dtype="string">
|
||||||
{{selectOptions config.competenceProfil selected=system.profil labelAttr="name"}}
|
{{selectOptions config.competenceProfil selected=system.profil labelAttr="name"}}
|
||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
@@ -40,6 +40,41 @@
|
|||||||
name="system.niveau" value="{{system.niveau}}" data-dtype="Number" />
|
name="system.niveau" value="{{system.niveau}}" data-dtype="Number" />
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
{{#if (eq system.profil "magie")}}
|
||||||
|
{{#if (eq name "Magie du Clan")}}
|
||||||
|
{{#each system.nomniveausouffle.soufflecombat as |niveau key|}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Niveau {{key}} Souffle du Combat</label>
|
||||||
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long"
|
||||||
|
name="system.nomniveausouffle.soufflecombat.{{key}}" value="{{niveau}}" data-dtype="String" />
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{#each system.nomniveausouffle.soufflemouvement as |niveau key|}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Niveau {{key}} Souffle du Mouvement</label>
|
||||||
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long"
|
||||||
|
name="system.nomniveausouffle.soufflemouvement.{{key}}" value="{{niveau}}" data-dtype="String" />
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{#each system.nomniveausouffle.souffleesprit as |niveau key|}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Niveau {{key}} Souffle de l'Esprit</label>
|
||||||
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long"
|
||||||
|
name="system.nomniveausouffle.souffleesprit.{{key}}" value="{{niveau}}" data-dtype="String" />
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
{{else}}
|
||||||
|
{{#each system.nomniveau as |niveau key|}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Nom du Niveau {{key}}</label>
|
||||||
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long"
|
||||||
|
name="system.nomniveau.{{key}}" value="{{niveau}}" data-dtype="String" />
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<h3>Spécialités</h3>
|
<h3>Spécialités</h3>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
<div class="tab details" data-group="primary" data-tab="details">
|
<div class="tab details" data-group="primary" data-tab="details">
|
||||||
|
|
||||||
<ul class="item-list alternate-list">
|
<ul class="item-list alternate-list">
|
||||||
{{log this}}
|
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="generic-label item-field-label-long2">Compétence de Magie </label>
|
<label class="generic-label item-field-label-long2">Compétence de Magie </label>
|
||||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||||
@@ -20,6 +19,16 @@
|
|||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
{{#if (eq system.competence "Magie du Clan")}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Souffle </label>
|
||||||
|
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.souffle"
|
||||||
|
value="{{system.souffle}}" data-dtype="string">
|
||||||
|
{{selectOptions config.soufflesMagieDuClan selected=system.souffle}}
|
||||||
|
</select>
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="generic-label item-field-label-long2">Carac 1 </label>
|
<label class="generic-label item-field-label-long2">Carac 1 </label>
|
||||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.carac1"
|
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.carac1"
|
||||||
@@ -45,6 +54,36 @@
|
|||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Sort Informatif?</label>
|
||||||
|
<input type="checkbox" name="system.informatif" {{#if system.informatif}} checked {{/if}} />
|
||||||
|
</li>
|
||||||
|
|
||||||
|
{{#if system.informatif}}
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Texte Informatif</label>
|
||||||
|
<textarea class="padd-right status-small-label color-class-common item-field-label-long3"
|
||||||
|
name="system.texteinformatif" data-dtype="String">{{system.texteinformatif}}</textarea>
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2"
|
||||||
|
data-tooltip="A renseigner si le SD n'est pas celui du niveau par défaut">SD spécial</label>
|
||||||
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-short"
|
||||||
|
name="system.sdspecial" value="{{system.sdspecial}}" data-dtype="String" />
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<li class="flexrow item">
|
||||||
|
<label class="generic-label item-field-label-long2">Rang</label>
|
||||||
|
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.rang"
|
||||||
|
value="{{system.rang}}" data-dtype="string">
|
||||||
|
{{selectOptions config.listRangSort selected=system.rang}}
|
||||||
|
</select>
|
||||||
|
</li>
|
||||||
|
-->
|
||||||
|
|
||||||
<li class="flexrow item">
|
<li class="flexrow item">
|
||||||
<label class="generic-label item-field-label-long2">Durée </label>
|
<label class="generic-label item-field-label-long2">Durée </label>
|
||||||
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long3"
|
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long3"
|
||||||
|
|||||||
Reference in New Issue
Block a user