Add charmes/tours management
This commit is contained in:
parent
06d0d9b24d
commit
3e394734ce
@ -115,6 +115,12 @@ export class WastelandActorSheet extends ActorSheet {
|
||||
let compId = li.data("item-id")
|
||||
this.actor.rollCompetence(attrKey, compId)
|
||||
})
|
||||
html.find('.roll-charme').click((event) => {
|
||||
const li = $(event.currentTarget).parents(".item")
|
||||
let charmeId = li.data("item-id")
|
||||
this.actor.rollCharme(charmeId)
|
||||
})
|
||||
|
||||
html.find('.roll-pouvoir').click((event) => {
|
||||
const li = $(event.currentTarget).parents(".item")
|
||||
let pouvoirId = li.data("item-id")
|
||||
|
@ -393,6 +393,7 @@ export class WastelandActor extends Actor {
|
||||
rollData.canEclatDoubleD20 = true // Always true in Wastelan
|
||||
rollData.doubleD20 = false
|
||||
rollData.attributs = WastelandUtility.getAttributs()
|
||||
rollData.config = duplicate(game.system.wasteland.config)
|
||||
|
||||
if (attrKey) {
|
||||
rollData.attrKey = attrKey
|
||||
@ -427,6 +428,16 @@ export class WastelandActor extends Actor {
|
||||
rollDialog.render(true)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async rollCharme(charmeId) {
|
||||
let rollData = this.getCommonRollData("cla")
|
||||
rollData.charme = duplicate(this.items.get(charmeId) || {})
|
||||
rollData.charmeDice = "1d4"
|
||||
console.log("RollDatra", rollData)
|
||||
let rollDialog = await WastelandRollDialog.create(this, rollData)
|
||||
rollDialog.render(true)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async rollPouvoir(pouvoirId) {
|
||||
let comp = this.items.find(comp => comp.type == "competence" && comp.name.toLowerCase() == "savoir : runes")
|
||||
|
@ -11,5 +11,13 @@ export const WASTELAND_CONFIG = {
|
||||
charmetype: {
|
||||
tour: "Tour",
|
||||
charme: "Charme",
|
||||
}
|
||||
},
|
||||
dices: {
|
||||
"1d4": "1d4",
|
||||
"1d6": "1d6",
|
||||
"1d8": "1d8",
|
||||
"1d10": "1d10",
|
||||
"1d12": "1d12",
|
||||
"1d20": "1d20",
|
||||
},
|
||||
}
|
||||
|
@ -3,35 +3,51 @@ import { WastelandUtility } from "./wasteland-utility.js";
|
||||
export class WastelandRollDialog extends Dialog {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async create(actor, rollData ) {
|
||||
static async create(actor, rollData) {
|
||||
|
||||
let options = { classes: ["WastelandDialog"], width: 340, height: 'fit-content', 'z-index': 99999 };
|
||||
let html = await renderTemplate('systems/fvtt-wasteland/templates/roll-dialog-generic.html', rollData);
|
||||
|
||||
return new WastelandRollDialog(actor, rollData, html, options );
|
||||
return new WastelandRollDialog(actor, rollData, html, options);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
constructor(actor, rollData, html, options, close = undefined) {
|
||||
let buttons = {
|
||||
rolld10: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d10",
|
||||
callback: () => { this.roll("1d10") }
|
||||
},
|
||||
rolld20: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d20",
|
||||
callback: () => { this.roll("1d20") }
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Annuler",
|
||||
callback: () => { this.close() }
|
||||
}
|
||||
}
|
||||
if (rollData.charme) {
|
||||
buttons = {
|
||||
roll: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer",
|
||||
callback: () => { this.roll() }
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Annuler",
|
||||
callback: () => { this.close() }
|
||||
}
|
||||
}
|
||||
}
|
||||
let conf = {
|
||||
title: "Test de Capacité",
|
||||
content: html,
|
||||
buttons: {
|
||||
rolld10: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d10",
|
||||
callback: () => { this.roll("1d10") }
|
||||
},
|
||||
rolld20: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d20",
|
||||
callback: () => { this.roll("1d20") }
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Annuler",
|
||||
callback: () => { this.close() }
|
||||
} },
|
||||
buttons: buttons,
|
||||
close: close
|
||||
}
|
||||
|
||||
@ -42,9 +58,9 @@ export class WastelandRollDialog extends Dialog {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
roll ( dice) {
|
||||
roll(dice) {
|
||||
this.rollData.mainDice = dice
|
||||
WastelandUtility.rollWasteland( this.rollData )
|
||||
WastelandUtility.rollWasteland(this.rollData)
|
||||
}
|
||||
|
||||
|
||||
@ -56,24 +72,28 @@ export class WastelandRollDialog extends Dialog {
|
||||
function onLoad() {
|
||||
}
|
||||
$(function () { onLoad(); });
|
||||
|
||||
html.find('#modificateur').change(async (event) => {
|
||||
|
||||
html.find('#modificateur').change(async (event) => {
|
||||
this.rollData.modificateur = Number(event.currentTarget.value)
|
||||
})
|
||||
html.find('#difficulte').change(async (event) => {
|
||||
html.find('#difficulte').change(async (event) => {
|
||||
this.rollData.difficulte = Number(event.currentTarget.value)
|
||||
})
|
||||
html.find('#attrKey').change(async (event) => {
|
||||
html.find('#attrKey').change(async (event) => {
|
||||
this.rollData.attrKey = String(event.currentTarget.value)
|
||||
})
|
||||
html.find('#runemode').change(async (event) => {
|
||||
})
|
||||
html.find('#runemode').change(async (event) => {
|
||||
this.rollData.runemode = String(event.currentTarget.value)
|
||||
})
|
||||
html.find('#runeame').change(async (event) => {
|
||||
})
|
||||
html.find('#runeame').change(async (event) => {
|
||||
this.rollData.runeame = Number(event.currentTarget.value)
|
||||
})
|
||||
html.find('#doubleD20').change(async (event) => {
|
||||
})
|
||||
html.find('#doubleD20').change(async (event) => {
|
||||
this.rollData.doubleD20 = event.currentTarget.checked
|
||||
})
|
||||
})
|
||||
html.find('#charmeDice').change(async (event) => {
|
||||
this.rollData.charmeDice = String(event.currentTarget.value)
|
||||
})
|
||||
|
||||
}
|
||||
}
|
@ -2,6 +2,20 @@
|
||||
import { WastelandCombat } from "./wasteland-combat.js";
|
||||
import { WastelandCommands } from "./wasteland-commands.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const __contrecouptCharme = {
|
||||
1 : {name: "Effet chromatique", description: "" },
|
||||
3 : {name: "Enivrement Kobold", description: "" },
|
||||
5 : {name: "Mutisme superstitieux", description: "" },
|
||||
7 : {name: "Agité!", description: "" },
|
||||
9 : {name: "Somnolence", description: "" },
|
||||
11 : {name: "Manie incontrôlable", description: "" },
|
||||
13 : {name: "Malédiction des Ternes", description: "" },
|
||||
15 : {name: "La petite Mort", description: "" },
|
||||
17 : {name: "Angoisse cauchemardesque", description: "" },
|
||||
19 : {name: "Anémie Kobold", description: "" }
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class WastelandUtility {
|
||||
|
||||
@ -279,25 +293,44 @@ export class WastelandUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static computeResult(rollData) {
|
||||
if (rollData.mainDice == "1d20") {
|
||||
let diceValue = rollData.roll.terms[0].results[0].result
|
||||
diceValue *= (rollData.doubleD20) ? 2 : 1
|
||||
//console.log("PAIR/IMP", diceValue)
|
||||
if (diceValue % 2 == 1) {
|
||||
//console.log("PAIR/IMP2", diceValue)
|
||||
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
||||
if (diceValue == 1 || diceValue == 11) {
|
||||
rollData.isDramatique = true
|
||||
rollData.isSuccess = false
|
||||
if (rollData.charme) {
|
||||
let resultIndex = false
|
||||
let resTab = duplicate(rollData.charme.system.resultats)
|
||||
for(let id in resTab) {
|
||||
let res = resTab[id]
|
||||
if (!resultIndex && rollData.finalResult >= res.value) {
|
||||
resultIndex = id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//console.log("Result : ", rollData)
|
||||
if (rollData.difficulte > 0 && !rollData.isDramatique) {
|
||||
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
|
||||
rollData.isHeroique = ((rollData.finalResult - rollData.difficulte) >= 10)
|
||||
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
|
||||
if (resultIndex) {
|
||||
rollData.charmeDuree = rollData.charme.system.resultats[resultIndex].description
|
||||
}
|
||||
let effectRoll = new Roll(rollData.charmeDice).roll({ async: false })
|
||||
rollData.contrecoupResult = effectRoll.total
|
||||
if (rollData.contrecoupResult % 2 == 1) {
|
||||
rollData.contrecoup = __contrecouptCharme[rollData.contrecoupResult]
|
||||
}
|
||||
} else {
|
||||
if (rollData.mainDice == "1d20") {
|
||||
let diceValue = rollData.roll.terms[0].results[0].result
|
||||
diceValue *= (rollData.doubleD20) ? 2 : 1
|
||||
//console.log("PAIR/IMP", diceValue)
|
||||
if (diceValue % 2 == 1) {
|
||||
//console.log("PAIR/IMP2", diceValue)
|
||||
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
||||
if (diceValue == 1 || diceValue == 11) {
|
||||
rollData.isDramatique = true
|
||||
rollData.isSuccess = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//console.log("Result : ", rollData)
|
||||
if (rollData.difficulte > 0 && !rollData.isDramatique) {
|
||||
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
|
||||
rollData.isHeroique = ((rollData.finalResult - rollData.difficulte) >= 10)
|
||||
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -313,13 +346,18 @@ export class WastelandUtility {
|
||||
rollData.attr = duplicate(actor.system.attributs[rollData.attrKey])
|
||||
}
|
||||
|
||||
rollData.diceFormula = rollData.mainDice
|
||||
if (rollData.doubleD20) { // Multiply result !
|
||||
rollData.diceFormula += "*2"
|
||||
if (!rollData.isReroll) {
|
||||
actor.changeEclat(-1)
|
||||
}
|
||||
if (rollData.charme) {
|
||||
rollData.diceFormula = rollData.charmeDice
|
||||
} else {
|
||||
rollData.diceFormula = rollData.mainDice
|
||||
if (rollData.doubleD20) { // Multiply result !
|
||||
rollData.diceFormula += "*2"
|
||||
if (!rollData.isReroll) {
|
||||
actor.changeEclat(-1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//console.log("BEFORE COMP", rollData)
|
||||
if (rollData.competence) {
|
||||
rollData.predilections = duplicate(rollData.competence.system.predilections.filter(pred => !pred.used) || [])
|
||||
@ -328,21 +366,10 @@ export class WastelandUtility {
|
||||
} else {
|
||||
rollData.diceFormula += `+${rollData.attr.value}*2+${rollData.modificateur}`
|
||||
}
|
||||
|
||||
if (rollData.arme && rollData.arme.type == "arme") {
|
||||
rollData.diceFormula += `+${rollData.arme.system.bonusmaniementoff}`
|
||||
}
|
||||
|
||||
if (rollData.rune) {
|
||||
rollData.runeduree = Math.ceil((rollData.runeame + 3) / 3)
|
||||
if (rollData.runemode == "inscrire") {
|
||||
rollData.runeduree *= 2
|
||||
}
|
||||
if (rollData.runemode == "prononcer") {
|
||||
rollData.runeduree = 1
|
||||
}
|
||||
}
|
||||
|
||||
let myRoll = new Roll(rollData.diceFormula).roll({ async: false })
|
||||
await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode"))
|
||||
rollData.roll = duplicate(myRoll)
|
||||
@ -352,14 +379,6 @@ export class WastelandUtility {
|
||||
rollData.finalResult = myRoll.total
|
||||
this.computeResult(rollData)
|
||||
|
||||
if (rollData.rune) {
|
||||
let subAme = rollData.runeame
|
||||
if (rollData.isEchec && !rollData.isDramatique) {
|
||||
subAme = Math.ceil((subAme + 1) / 2)
|
||||
}
|
||||
actor.subPointsAme(rollData.runemode, subAme)
|
||||
}
|
||||
|
||||
this.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-wasteland/templates/chat-generic-result.html`, rollData)
|
||||
}, rollData)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000026
|
||||
MANIFEST-000034
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.804205 7fef577fe6c0 Recovering log #24
|
||||
2023/11/28-22:25:39.814540 7fef577fe6c0 Delete type=3 #22
|
||||
2023/11/28-22:25:39.814668 7fef577fe6c0 Delete type=0 #24
|
||||
2023/11/28-22:26:01.957988 7fef56ffd6c0 Level-0 table #29: started
|
||||
2023/11/28-22:26:01.958049 7fef56ffd6c0 Level-0 table #29: 0 bytes OK
|
||||
2023/11/28-22:26:01.993914 7fef56ffd6c0 Delete type=0 #27
|
||||
2023/11/28-22:26:01.994099 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:01.994115 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.610722 7ff1ecbfe6c0 Recovering log #32
|
||||
2023/11/29-20:50:20.620538 7ff1ecbfe6c0 Delete type=3 #30
|
||||
2023/11/29-20:50:20.620594 7ff1ecbfe6c0 Delete type=0 #32
|
||||
2023/11/29-22:03:29.595804 7fef56ffd6c0 Level-0 table #37: started
|
||||
2023/11/29-22:03:29.595831 7fef56ffd6c0 Level-0 table #37: 0 bytes OK
|
||||
2023/11/29-22:03:29.601970 7fef56ffd6c0 Delete type=0 #35
|
||||
2023/11/29-22:03:29.602116 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.602150 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.966749 7ff1ed3ff6c0 Recovering log #20
|
||||
2023/11/28-22:14:53.976936 7ff1ed3ff6c0 Delete type=3 #18
|
||||
2023/11/28-22:14:53.977013 7ff1ed3ff6c0 Delete type=0 #20
|
||||
2023/11/28-22:25:36.167685 7fef56ffd6c0 Level-0 table #25: started
|
||||
2023/11/28-22:25:36.167712 7fef56ffd6c0 Level-0 table #25: 0 bytes OK
|
||||
2023/11/28-22:25:36.174198 7fef56ffd6c0 Delete type=0 #23
|
||||
2023/11/28-22:25:36.174324 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.174347 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.744065 7fef57fff6c0 Recovering log #28
|
||||
2023/11/29-20:25:32.754791 7fef57fff6c0 Delete type=3 #26
|
||||
2023/11/29-20:25:32.754891 7fef57fff6c0 Delete type=0 #28
|
||||
2023/11/29-20:49:13.095281 7fef56ffd6c0 Level-0 table #33: started
|
||||
2023/11/29-20:49:13.095318 7fef56ffd6c0 Level-0 table #33: 0 bytes OK
|
||||
2023/11/29-20:49:13.101902 7fef56ffd6c0 Delete type=0 #31
|
||||
2023/11/29-20:49:13.102220 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.102247 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/armes/MANIFEST-000034
Normal file
BIN
packs/armes/MANIFEST-000034
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000086
|
||||
MANIFEST-000094
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.829581 7fef57fff6c0 Recovering log #84
|
||||
2023/11/28-22:25:39.840009 7fef57fff6c0 Delete type=3 #82
|
||||
2023/11/28-22:25:39.840073 7fef57fff6c0 Delete type=0 #84
|
||||
2023/11/28-22:26:01.994226 7fef56ffd6c0 Level-0 table #89: started
|
||||
2023/11/28-22:26:01.994256 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
|
||||
2023/11/28-22:26:02.031072 7fef56ffd6c0 Delete type=0 #87
|
||||
2023/11/28-22:26:02.153695 7fef56ffd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:02.153755 7fef56ffd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.635956 7ff1ed3ff6c0 Recovering log #92
|
||||
2023/11/29-20:50:20.646539 7ff1ed3ff6c0 Delete type=3 #90
|
||||
2023/11/29-20:50:20.646595 7ff1ed3ff6c0 Delete type=0 #92
|
||||
2023/11/29-22:03:29.622718 7fef56ffd6c0 Level-0 table #97: started
|
||||
2023/11/29-22:03:29.622756 7fef56ffd6c0 Level-0 table #97: 0 bytes OK
|
||||
2023/11/29-22:03:29.630708 7fef56ffd6c0 Delete type=0 #95
|
||||
2023/11/29-22:03:29.630884 7fef56ffd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.630919 7fef56ffd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.990204 7fef577fe6c0 Recovering log #80
|
||||
2023/11/28-22:14:54.000869 7fef577fe6c0 Delete type=3 #78
|
||||
2023/11/28-22:14:54.001047 7fef577fe6c0 Delete type=0 #80
|
||||
2023/11/28-22:25:36.194226 7fef56ffd6c0 Level-0 table #85: started
|
||||
2023/11/28-22:25:36.194293 7fef56ffd6c0 Level-0 table #85: 0 bytes OK
|
||||
2023/11/28-22:25:36.200734 7fef56ffd6c0 Delete type=0 #83
|
||||
2023/11/28-22:25:36.200935 7fef56ffd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.200959 7fef56ffd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.775236 7ff1ecbfe6c0 Recovering log #88
|
||||
2023/11/29-20:25:32.786996 7ff1ecbfe6c0 Delete type=3 #86
|
||||
2023/11/29-20:25:32.787114 7ff1ecbfe6c0 Delete type=0 #88
|
||||
2023/11/29-20:49:13.115047 7fef56ffd6c0 Level-0 table #93: started
|
||||
2023/11/29-20:49:13.115075 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
|
||||
2023/11/29-20:49:13.122784 7fef56ffd6c0 Delete type=0 #91
|
||||
2023/11/29-20:49:13.129333 7fef56ffd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.129446 7fef56ffd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/equipement/MANIFEST-000094
Normal file
BIN
packs/equipement/MANIFEST-000094
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000050
|
||||
MANIFEST-000058
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.779436 7fef57fff6c0 Recovering log #48
|
||||
2023/11/28-22:25:39.789921 7fef57fff6c0 Delete type=3 #46
|
||||
2023/11/28-22:25:39.789983 7fef57fff6c0 Delete type=0 #48
|
||||
2023/11/28-22:26:01.878136 7fef56ffd6c0 Level-0 table #53: started
|
||||
2023/11/28-22:26:01.878192 7fef56ffd6c0 Level-0 table #53: 0 bytes OK
|
||||
2023/11/28-22:26:01.914960 7fef56ffd6c0 Delete type=0 #51
|
||||
2023/11/28-22:26:01.957954 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:01.994087 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.569702 7fef577fe6c0 Recovering log #56
|
||||
2023/11/29-20:50:20.579868 7fef577fe6c0 Delete type=3 #54
|
||||
2023/11/29-20:50:20.579933 7fef577fe6c0 Delete type=0 #56
|
||||
2023/11/29-22:03:29.569369 7fef56ffd6c0 Level-0 table #61: started
|
||||
2023/11/29-22:03:29.569409 7fef56ffd6c0 Level-0 table #61: 0 bytes OK
|
||||
2023/11/29-22:03:29.577270 7fef56ffd6c0 Delete type=0 #59
|
||||
2023/11/29-22:03:29.595791 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.602105 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.939948 7fef577fe6c0 Recovering log #44
|
||||
2023/11/28-22:14:53.949765 7fef577fe6c0 Delete type=3 #42
|
||||
2023/11/28-22:14:53.949833 7fef577fe6c0 Delete type=0 #44
|
||||
2023/11/28-22:25:36.155114 7fef56ffd6c0 Level-0 table #49: started
|
||||
2023/11/28-22:25:36.155139 7fef56ffd6c0 Level-0 table #49: 0 bytes OK
|
||||
2023/11/28-22:25:36.161385 7fef56ffd6c0 Delete type=0 #47
|
||||
2023/11/28-22:25:36.174294 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.174332 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.713498 7ff1ecbfe6c0 Recovering log #52
|
||||
2023/11/29-20:25:32.724055 7ff1ecbfe6c0 Delete type=3 #50
|
||||
2023/11/29-20:25:32.724139 7ff1ecbfe6c0 Delete type=0 #52
|
||||
2023/11/29-20:49:13.088840 7fef56ffd6c0 Level-0 table #57: started
|
||||
2023/11/29-20:49:13.088883 7fef56ffd6c0 Level-0 table #57: 0 bytes OK
|
||||
2023/11/29-20:49:13.095120 7fef56ffd6c0 Delete type=0 #55
|
||||
2023/11/29-20:49:13.102186 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.102238 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000050
|
||||
MANIFEST-000058
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.791819 7ff1ecbfe6c0 Recovering log #48
|
||||
2023/11/28-22:25:39.801806 7ff1ecbfe6c0 Delete type=3 #46
|
||||
2023/11/28-22:25:39.801862 7ff1ecbfe6c0 Delete type=0 #48
|
||||
2023/11/28-22:26:01.915107 7fef56ffd6c0 Level-0 table #53: started
|
||||
2023/11/28-22:26:01.915141 7fef56ffd6c0 Level-0 table #53: 0 bytes OK
|
||||
2023/11/28-22:26:01.957280 7fef56ffd6c0 Delete type=0 #51
|
||||
2023/11/28-22:26:01.994058 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:01.994107 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.582005 7ff1ed3ff6c0 Recovering log #56
|
||||
2023/11/29-20:50:20.593394 7ff1ed3ff6c0 Delete type=3 #54
|
||||
2023/11/29-20:50:20.593446 7ff1ed3ff6c0 Delete type=0 #56
|
||||
2023/11/29-22:03:29.577397 7fef56ffd6c0 Level-0 table #61: started
|
||||
2023/11/29-22:03:29.577421 7fef56ffd6c0 Level-0 table #61: 0 bytes OK
|
||||
2023/11/29-22:03:29.583760 7fef56ffd6c0 Delete type=0 #59
|
||||
2023/11/29-22:03:29.602081 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.602123 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.953114 7ff1ecbfe6c0 Recovering log #44
|
||||
2023/11/28-22:14:53.963864 7ff1ecbfe6c0 Delete type=3 #42
|
||||
2023/11/28-22:14:53.963919 7ff1ecbfe6c0 Delete type=0 #44
|
||||
2023/11/28-22:25:36.161493 7fef56ffd6c0 Level-0 table #49: started
|
||||
2023/11/28-22:25:36.161519 7fef56ffd6c0 Level-0 table #49: 0 bytes OK
|
||||
2023/11/28-22:25:36.167584 7fef56ffd6c0 Delete type=0 #47
|
||||
2023/11/28-22:25:36.174305 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.174339 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.727762 7fef577fe6c0 Recovering log #52
|
||||
2023/11/29-20:25:32.739240 7fef577fe6c0 Delete type=3 #50
|
||||
2023/11/29-20:25:32.739338 7fef577fe6c0 Delete type=0 #52
|
||||
2023/11/29-20:49:13.102362 7fef56ffd6c0 Level-0 table #57: started
|
||||
2023/11/29-20:49:13.102390 7fef56ffd6c0 Level-0 table #57: 0 bytes OK
|
||||
2023/11/29-20:49:13.108592 7fef56ffd6c0 Delete type=0 #55
|
||||
2023/11/29-20:49:13.129273 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.129401 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000051
|
||||
MANIFEST-000059
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.766917 7ff1ed3ff6c0 Recovering log #49
|
||||
2023/11/28-22:25:39.776639 7ff1ed3ff6c0 Delete type=3 #47
|
||||
2023/11/28-22:25:39.776769 7ff1ed3ff6c0 Delete type=0 #49
|
||||
2023/11/28-22:26:01.835351 7fef56ffd6c0 Level-0 table #54: started
|
||||
2023/11/28-22:26:01.835379 7fef56ffd6c0 Level-0 table #54: 0 bytes OK
|
||||
2023/11/28-22:26:01.877912 7fef56ffd6c0 Delete type=0 #52
|
||||
2023/11/28-22:26:01.957422 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:01.994075 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.557438 7ff1ecbfe6c0 Recovering log #57
|
||||
2023/11/29-20:50:20.567859 7ff1ecbfe6c0 Delete type=3 #55
|
||||
2023/11/29-20:50:20.567928 7ff1ecbfe6c0 Delete type=0 #57
|
||||
2023/11/29-22:03:29.552686 7fef56ffd6c0 Level-0 table #62: started
|
||||
2023/11/29-22:03:29.552886 7fef56ffd6c0 Level-0 table #62: 0 bytes OK
|
||||
2023/11/29-22:03:29.559417 7fef56ffd6c0 Delete type=0 #60
|
||||
2023/11/29-22:03:29.559640 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.569352 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.927159 7fef57fff6c0 Recovering log #45
|
||||
2023/11/28-22:14:53.938168 7fef57fff6c0 Delete type=3 #43
|
||||
2023/11/28-22:14:53.938269 7fef57fff6c0 Delete type=0 #45
|
||||
2023/11/28-22:25:36.148472 7fef56ffd6c0 Level-0 table #50: started
|
||||
2023/11/28-22:25:36.148556 7fef56ffd6c0 Level-0 table #50: 0 bytes OK
|
||||
2023/11/28-22:25:36.154989 7fef56ffd6c0 Delete type=0 #48
|
||||
2023/11/28-22:25:36.167674 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.174315 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.699335 7ff1ed3ff6c0 Recovering log #53
|
||||
2023/11/29-20:25:32.710139 7ff1ed3ff6c0 Delete type=3 #51
|
||||
2023/11/29-20:25:32.710239 7ff1ed3ff6c0 Delete type=0 #53
|
||||
2023/11/29-20:49:13.081287 7fef56ffd6c0 Level-0 table #58: started
|
||||
2023/11/29-20:49:13.081356 7fef56ffd6c0 Level-0 table #58: 0 bytes OK
|
||||
2023/11/29-20:49:13.088692 7fef56ffd6c0 Delete type=0 #56
|
||||
2023/11/29-20:49:13.102161 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.102229 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000087
|
||||
MANIFEST-000095
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.816638 7ff1ed3ff6c0 Recovering log #85
|
||||
2023/11/28-22:25:39.826939 7ff1ed3ff6c0 Delete type=3 #83
|
||||
2023/11/28-22:25:39.826992 7ff1ed3ff6c0 Delete type=0 #85
|
||||
2023/11/28-22:26:02.073308 7fef56ffd6c0 Level-0 table #90: started
|
||||
2023/11/28-22:26:02.073355 7fef56ffd6c0 Level-0 table #90: 0 bytes OK
|
||||
2023/11/28-22:26:02.110214 7fef56ffd6c0 Delete type=0 #88
|
||||
2023/11/28-22:26:02.153733 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:02.153763 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.622329 7fef577fe6c0 Recovering log #93
|
||||
2023/11/29-20:50:20.633202 7fef577fe6c0 Delete type=3 #91
|
||||
2023/11/29-20:50:20.633594 7fef577fe6c0 Delete type=0 #93
|
||||
2023/11/29-22:03:29.608950 7fef56ffd6c0 Level-0 table #98: started
|
||||
2023/11/29-22:03:29.608986 7fef56ffd6c0 Level-0 table #98: 0 bytes OK
|
||||
2023/11/29-22:03:29.615830 7fef56ffd6c0 Delete type=0 #96
|
||||
2023/11/29-22:03:29.630857 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.630929 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.978702 7fef57fff6c0 Recovering log #81
|
||||
2023/11/28-22:14:53.988721 7fef57fff6c0 Delete type=3 #79
|
||||
2023/11/28-22:14:53.988779 7fef57fff6c0 Delete type=0 #81
|
||||
2023/11/28-22:25:36.187160 7fef56ffd6c0 Level-0 table #86: started
|
||||
2023/11/28-22:25:36.187189 7fef56ffd6c0 Level-0 table #86: 0 bytes OK
|
||||
2023/11/28-22:25:36.193995 7fef56ffd6c0 Delete type=0 #84
|
||||
2023/11/28-22:25:36.200924 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.200951 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.758453 7ff1ed3ff6c0 Recovering log #89
|
||||
2023/11/29-20:25:32.768643 7ff1ed3ff6c0 Delete type=3 #87
|
||||
2023/11/29-20:25:32.768728 7ff1ed3ff6c0 Delete type=0 #89
|
||||
2023/11/29-20:49:13.122910 7fef56ffd6c0 Level-0 table #94: started
|
||||
2023/11/29-20:49:13.122934 7fef56ffd6c0 Level-0 table #94: 0 bytes OK
|
||||
2023/11/29-20:49:13.129090 7fef56ffd6c0 Delete type=0 #92
|
||||
2023/11/29-20:49:13.129380 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.129468 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000026
|
||||
MANIFEST-000034
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/11/28-22:25:39.853649 7fef577fe6c0 Recovering log #24
|
||||
2023/11/28-22:25:39.863741 7fef577fe6c0 Delete type=3 #22
|
||||
2023/11/28-22:25:39.863801 7fef577fe6c0 Delete type=0 #24
|
||||
2023/11/28-22:26:02.031207 7fef56ffd6c0 Level-0 table #29: started
|
||||
2023/11/28-22:26:02.031240 7fef56ffd6c0 Level-0 table #29: 0 bytes OK
|
||||
2023/11/28-22:26:02.073160 7fef56ffd6c0 Delete type=0 #27
|
||||
2023/11/28-22:26:02.153714 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.661714 7ff1ecbfe6c0 Recovering log #32
|
||||
2023/11/29-20:50:20.673082 7ff1ecbfe6c0 Delete type=3 #30
|
||||
2023/11/29-20:50:20.673161 7ff1ecbfe6c0 Delete type=0 #32
|
||||
2023/11/29-22:03:29.616030 7fef56ffd6c0 Level-0 table #37: started
|
||||
2023/11/29-22:03:29.616080 7fef56ffd6c0 Level-0 table #37: 0 bytes OK
|
||||
2023/11/29-22:03:29.622527 7fef56ffd6c0 Delete type=0 #35
|
||||
2023/11/29-22:03:29.630873 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/11/28-22:14:54.017371 7ff1ed3ff6c0 Recovering log #20
|
||||
2023/11/28-22:14:54.027883 7ff1ed3ff6c0 Delete type=3 #18
|
||||
2023/11/28-22:14:54.027943 7ff1ed3ff6c0 Delete type=0 #20
|
||||
2023/11/28-22:25:36.180820 7fef56ffd6c0 Level-0 table #25: started
|
||||
2023/11/28-22:25:36.180877 7fef56ffd6c0 Level-0 table #25: 0 bytes OK
|
||||
2023/11/28-22:25:36.187032 7fef56ffd6c0 Delete type=0 #23
|
||||
2023/11/28-22:25:36.200911 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.810529 7fef57fff6c0 Recovering log #28
|
||||
2023/11/29-20:25:32.824867 7fef57fff6c0 Delete type=3 #26
|
||||
2023/11/29-20:25:32.824967 7fef57fff6c0 Delete type=0 #28
|
||||
2023/11/29-20:49:13.129608 7fef56ffd6c0 Level-0 table #33: started
|
||||
2023/11/29-20:49:13.129687 7fef56ffd6c0 Level-0 table #33: 0 bytes OK
|
||||
2023/11/29-20:49:13.136736 7fef56ffd6c0 Delete type=0 #31
|
||||
2023/11/29-20:49:13.136897 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/scenes/MANIFEST-000034
Normal file
BIN
packs/scenes/MANIFEST-000034
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000087
|
||||
MANIFEST-000095
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.755108 7fef577fe6c0 Recovering log #85
|
||||
2023/11/28-22:25:39.764999 7fef577fe6c0 Delete type=3 #83
|
||||
2023/11/28-22:25:39.765054 7fef577fe6c0 Delete type=0 #85
|
||||
2023/11/28-22:26:01.737555 7fef56ffd6c0 Level-0 table #90: started
|
||||
2023/11/28-22:26:01.737598 7fef56ffd6c0 Level-0 table #90: 0 bytes OK
|
||||
2023/11/28-22:26:01.779655 7fef56ffd6c0 Delete type=0 #88
|
||||
2023/11/28-22:26:01.780041 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:01.835335 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.543983 7fef57fff6c0 Recovering log #93
|
||||
2023/11/29-20:50:20.555186 7fef57fff6c0 Delete type=3 #91
|
||||
2023/11/29-20:50:20.555286 7fef57fff6c0 Delete type=0 #93
|
||||
2023/11/29-22:03:29.546363 7fef56ffd6c0 Level-0 table #98: started
|
||||
2023/11/29-22:03:29.546396 7fef56ffd6c0 Level-0 table #98: 0 bytes OK
|
||||
2023/11/29-22:03:29.552569 7fef56ffd6c0 Delete type=0 #96
|
||||
2023/11/29-22:03:29.559625 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.569329 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:53.914347 7ff1ed3ff6c0 Recovering log #81
|
||||
2023/11/28-22:14:53.924342 7ff1ed3ff6c0 Delete type=3 #79
|
||||
2023/11/28-22:14:53.924395 7ff1ed3ff6c0 Delete type=0 #81
|
||||
2023/11/28-22:25:36.119696 7fef56ffd6c0 Level-0 table #86: started
|
||||
2023/11/28-22:25:36.119755 7fef56ffd6c0 Level-0 table #86: 0 bytes OK
|
||||
2023/11/28-22:25:36.127384 7fef56ffd6c0 Delete type=0 #84
|
||||
2023/11/28-22:25:36.137845 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.148441 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.684922 7fef57fff6c0 Recovering log #89
|
||||
2023/11/29-20:25:32.695497 7fef57fff6c0 Delete type=3 #87
|
||||
2023/11/29-20:25:32.695576 7fef57fff6c0 Delete type=0 #89
|
||||
2023/11/29-20:49:13.074351 7fef56ffd6c0 Level-0 table #94: started
|
||||
2023/11/29-20:49:13.074391 7fef56ffd6c0 Level-0 table #94: 0 bytes OK
|
||||
2023/11/29-20:49:13.080816 7fef56ffd6c0 Delete type=0 #92
|
||||
2023/11/29-20:49:13.095263 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.102205 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000086
|
||||
MANIFEST-000094
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:25:39.841825 7ff1ecbfe6c0 Recovering log #84
|
||||
2023/11/28-22:25:39.851624 7ff1ecbfe6c0 Delete type=3 #82
|
||||
2023/11/28-22:25:39.851681 7ff1ecbfe6c0 Delete type=0 #84
|
||||
2023/11/28-22:26:02.110352 7fef56ffd6c0 Level-0 table #89: started
|
||||
2023/11/28-22:26:02.110380 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
|
||||
2023/11/28-22:26:02.153538 7fef56ffd6c0 Delete type=0 #87
|
||||
2023/11/28-22:26:02.153745 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:26:02.153771 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:50:20.648578 7fef57fff6c0 Recovering log #92
|
||||
2023/11/29-20:50:20.658414 7fef57fff6c0 Delete type=3 #90
|
||||
2023/11/29-20:50:20.658489 7fef57fff6c0 Delete type=0 #92
|
||||
2023/11/29-22:03:29.602267 7fef56ffd6c0 Level-0 table #97: started
|
||||
2023/11/29-22:03:29.602291 7fef56ffd6c0 Level-0 table #97: 0 bytes OK
|
||||
2023/11/29-22:03:29.608736 7fef56ffd6c0 Delete type=0 #95
|
||||
2023/11/29-22:03:29.630840 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-22:03:29.630894 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/11/28-22:14:54.003336 7ff1ecbfe6c0 Recovering log #80
|
||||
2023/11/28-22:14:54.014281 7ff1ecbfe6c0 Delete type=3 #78
|
||||
2023/11/28-22:14:54.014518 7ff1ecbfe6c0 Delete type=0 #80
|
||||
2023/11/28-22:25:36.174449 7fef56ffd6c0 Level-0 table #85: started
|
||||
2023/11/28-22:25:36.174476 7fef56ffd6c0 Level-0 table #85: 0 bytes OK
|
||||
2023/11/28-22:25:36.180710 7fef56ffd6c0 Delete type=0 #83
|
||||
2023/11/28-22:25:36.200896 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/28-22:25:36.200943 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:25:32.795334 7fef577fe6c0 Recovering log #88
|
||||
2023/11/29-20:25:32.806302 7fef577fe6c0 Delete type=3 #86
|
||||
2023/11/29-20:25:32.806390 7fef577fe6c0 Delete type=0 #88
|
||||
2023/11/29-20:49:13.108713 7fef56ffd6c0 Level-0 table #93: started
|
||||
2023/11/29-20:49:13.108744 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
|
||||
2023/11/29-20:49:13.114911 7fef56ffd6c0 Delete type=0 #91
|
||||
2023/11/29-20:49:13.129305 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/11/29-20:49:13.129428 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
0
packs/tourscharmes/000004.log
Normal file
0
packs/tourscharmes/000004.log
Normal file
BIN
packs/tourscharmes/000005.ldb
Normal file
BIN
packs/tourscharmes/000005.ldb
Normal file
Binary file not shown.
1
packs/tourscharmes/CURRENT
Normal file
1
packs/tourscharmes/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000002
|
0
packs/tourscharmes/LOCK
Normal file
0
packs/tourscharmes/LOCK
Normal file
5
packs/tourscharmes/LOG
Normal file
5
packs/tourscharmes/LOG
Normal file
@ -0,0 +1,5 @@
|
||||
2023/11/29-20:50:20.608813 7fef57fff6c0 Delete type=3 #1
|
||||
2023/11/29-22:03:29.584039 7fef56ffd6c0 Level-0 table #5: started
|
||||
2023/11/29-22:03:29.587799 7fef56ffd6c0 Level-0 table #5: 8731 bytes OK
|
||||
2023/11/29-22:03:29.595662 7fef56ffd6c0 Delete type=0 #3
|
||||
2023/11/29-22:03:29.602094 7fef56ffd6c0 Manual compaction at level-0 from '!items!7nuc6YRp3TcIStcf' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
BIN
packs/tourscharmes/MANIFEST-000002
Normal file
BIN
packs/tourscharmes/MANIFEST-000002
Normal file
Binary file not shown.
13
system.json
13
system.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "fvtt-wasteland",
|
||||
"description": "Wasteland RPG for FoundryVTT",
|
||||
"version": "11.0.7",
|
||||
"version": "11.0.8",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Uberwald/LeRatierBretonnien",
|
||||
@ -23,7 +23,7 @@
|
||||
"gridUnits": "m",
|
||||
"license": "LICENSE.txt",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-wasteland/raw/branch/main/system.json",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.7.zip",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.8.zip",
|
||||
"packs": [
|
||||
{
|
||||
"type": "Item",
|
||||
@ -61,6 +61,15 @@
|
||||
"flags": {},
|
||||
"private": false
|
||||
},
|
||||
{
|
||||
"type": "Item",
|
||||
"label": "Tours et Charmes",
|
||||
"name": "tourscharmes",
|
||||
"path": "packs/tourscharmes",
|
||||
"system": "fvtt-wasteland",
|
||||
"flags": {},
|
||||
"private": false
|
||||
},
|
||||
{
|
||||
"type": "Item",
|
||||
"label": "Armes & Boucliers",
|
||||
|
@ -273,9 +273,6 @@
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Tours</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Allégeance</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
</div>
|
||||
@ -283,8 +280,8 @@
|
||||
{{#each tours as |tour key|}}
|
||||
<li class="item flexrow " data-item-id="{{tour._id}}" data-item-type="don">
|
||||
<img class="item-name-img" src="{{tour.img}}" />
|
||||
<span class="item-name-label competence-name">{{tour.name}}</span>
|
||||
<span class="item-field-label-short">{{tour.system.allegeance}}</span>
|
||||
<span class="item-name-label competence-name">
|
||||
<a class="roll-charme">{{tour.name}}</a></span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
|
@ -49,6 +49,19 @@
|
||||
<li></li>
|
||||
<li>Total : {{finalResult}}</li>
|
||||
|
||||
{{#if charme}}
|
||||
{{#if charmeDuree}}
|
||||
<li><strong>Réussi !</strong>
|
||||
<li>Durée : {{charmeDuree}}</li>
|
||||
{{else}}
|
||||
<li><strong>Le Tour/Charme a échoué !</strong></li>
|
||||
{{/if}}
|
||||
<li><strong>Contrecoup : {{contrecoupResult}}</li>
|
||||
{{#if contrecoup}}
|
||||
<li>{{contrecoup.name}}</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if difficulte}}
|
||||
{{#if isSuccess}}
|
||||
<li>Succés!!!</li>
|
||||
|
@ -31,31 +31,21 @@
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if rune}}
|
||||
{{#if charme}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">{{rune.name}}</span>
|
||||
<span class="small-label">{{rune.system.formule}}</span>
|
||||
<span class="roll-dialog-label">{{charme.name}}</span>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Lancement</span>
|
||||
<select class="roll-dialog-label" id="runemode" type="text" name="runemode" value="{{runemode}}"
|
||||
data-dtype="String">
|
||||
{{#select runemode}}
|
||||
<option value="prononcer">Prononcer la rune</option>
|
||||
<option value="inscrire">Inscrire la rune</option>
|
||||
<span class="roll-dialog-label">Dé additionnel : </span>
|
||||
<select class="status-small-label color-class-common" id="charmeDice" type="text" name="charmeDice" value="charmeDice" data-dtype="string" >
|
||||
{{#select charmeDice}}
|
||||
{{#each config.dices as |dice dicekey|}}
|
||||
<option value="{{dice}}">{{dice}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Points d'Ame</span>
|
||||
<select class="roll-dialog-label" id="runeame" type="text" name="runeame" value="{{runeame}}"
|
||||
data-dtype="Number">
|
||||
{{#select runeame}}
|
||||
{{{pointAmeOptions}}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="flexrow">
|
||||
@ -74,6 +64,8 @@
|
||||
<span class="roll-dialog-label"><strong>{{difficulte}}</strong> </span>
|
||||
</div>
|
||||
{{else}}
|
||||
{{#if charme}}
|
||||
{{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Difficulté : </span>
|
||||
<select class="roll-dialog-label" id="difficulte" type="text" name="difficulte" value="{{difficulte}}"
|
||||
@ -89,6 +81,7 @@
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if canEclatDoubleD20}}
|
||||
|
Loading…
Reference in New Issue
Block a user