Compare commits
11 Commits
fvtt-hawkm
...
fvtt-hawkm
| Author | SHA1 | Date | |
|---|---|---|---|
| 871a18a0ee | |||
| 264c49eb06 | |||
| 9349c54966 | |||
| 274efac2b5 | |||
| 7a7398f8ca | |||
| 93600f7e13 | |||
| a6fa3afbee | |||
| 1051349dd0 | |||
| a245b0e87c | |||
| c9ce3367ed | |||
| e95e068112 |
BIN
assets/fonts/Montserrat-Italic-VariableFont_wght.ttf
Normal file
BIN
assets/fonts/Montserrat-Italic-VariableFont_wght.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Montserrat-Medium.ttf
Normal file
BIN
assets/fonts/Montserrat-Medium.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Montserrat-Medium.woff
Normal file
BIN
assets/fonts/Montserrat-Medium.woff
Normal file
Binary file not shown.
BIN
assets/fonts/Montserrat-Thin.woff
Normal file
BIN
assets/fonts/Montserrat-Thin.woff
Normal file
Binary file not shown.
BIN
assets/fonts/Montserrat-VariableFont_wght.ttf
Normal file
BIN
assets/fonts/Montserrat-VariableFont_wght.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/pfeffer-simpelgotisch.bold.otf
Normal file
BIN
assets/fonts/pfeffer-simpelgotisch.bold.otf
Normal file
Binary file not shown.
BIN
assets/fonts/pfeffer-simpelgotisch.regular.otf
Normal file
BIN
assets/fonts/pfeffer-simpelgotisch.regular.otf
Normal file
Binary file not shown.
BIN
assets/fonts/pfeffer-simpelgotisch.semibold.otf
Normal file
BIN
assets/fonts/pfeffer-simpelgotisch.semibold.otf
Normal file
Binary file not shown.
@@ -424,7 +424,7 @@ export class HawkmoonActor extends Actor {
|
||||
if (sante.etat == this.system.sante.nbcombativite) {
|
||||
ChatMessage.create({ content: `<strong>${this.name} est vaincu !</strong>` })
|
||||
}
|
||||
this.processCombativite(sante)
|
||||
// Duplicated ! this.processCombativite(sante)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
||||
@@ -3,12 +3,12 @@ import { HawkmoonUtility } from "./hawkmoon-utility.js";
|
||||
export class HawkmoonRollDialog extends Dialog {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async create(actor, rollData ) {
|
||||
static async create(actor, rollData) {
|
||||
|
||||
let options = { classes: ["HawkmoonDialog"], width: 320, height: 'fit-content', 'z-index': 99999 };
|
||||
let options = { classes: ["HawkmoonDialog"], width: 420, height: 'fit-content', 'z-index': 99999 };
|
||||
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-hawkmoon-cyd/templates/roll-dialog-generic.html', rollData);
|
||||
|
||||
return new HawkmoonRollDialog(actor, rollData, html, options );
|
||||
return new HawkmoonRollDialog(actor, rollData, html, options);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -18,20 +18,21 @@ export class HawkmoonRollDialog extends Dialog {
|
||||
content: html,
|
||||
buttons: {
|
||||
rolld10: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d10",
|
||||
callback: () => { this.roll("d10") }
|
||||
},
|
||||
rolld20: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d20",
|
||||
callback: () => { this.roll("d20") }
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Annuler",
|
||||
callback: () => { this.close() }
|
||||
} },
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d10",
|
||||
callback: () => { this.roll("d10") }
|
||||
},
|
||||
rolld20: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Lancer 1d20",
|
||||
callback: () => { this.roll("d20") }
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Annuler",
|
||||
callback: () => { this.close() }
|
||||
}
|
||||
},
|
||||
close: close
|
||||
}
|
||||
|
||||
@@ -42,9 +43,9 @@ export class HawkmoonRollDialog extends Dialog {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
roll ( dice) {
|
||||
roll(dice) {
|
||||
this.rollData.mainDice = dice
|
||||
HawkmoonUtility.rollHawkmoon( this.rollData )
|
||||
HawkmoonUtility.rollHawkmoon(this.rollData)
|
||||
}
|
||||
|
||||
|
||||
@@ -57,20 +58,20 @@ export class HawkmoonRollDialog extends Dialog {
|
||||
}
|
||||
$(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( (event) => {
|
||||
html.find('#difficulte').change((event) => {
|
||||
console.log("Difficulte: " + event.currentTarget.value)
|
||||
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('#attrKey2').change(async (event) => {
|
||||
html.find('#attrKey2').change(async (event) => {
|
||||
this.rollData.attrKey2 = String(event.currentTarget.value)
|
||||
})
|
||||
html.find('#select-maitrise').change(async (event) => {
|
||||
html.find('#select-maitrise').change(async (event) => {
|
||||
this.rollData.maitriseId = String(event.currentTarget.value)
|
||||
})
|
||||
html.find('#competence-talents').change((event) => {
|
||||
|
||||
@@ -3,10 +3,10 @@ import { HawkmoonCombat } from "./hawkmoon-combat.js";
|
||||
import { HawkmoonCommands } from "./hawkmoon-commands.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const __distanceDifficulte = { "porteecourte": 5, "porteemoyenne": 9, "porteelongue": 14}
|
||||
const __tireurDeplacement = { immobile: 0, lent: 3, rapide: 5}
|
||||
const __cibleCouvert = { aucun: 0, leger: 5, complet: 10}
|
||||
const __tailleCible = { normal: 0, main: 10, enfant: 3, maison: -10}
|
||||
const __distanceDifficulte = { "porteecourte": 5, "porteemoyenne": 9, "porteelongue": 14 }
|
||||
const __tireurDeplacement = { immobile: 0, lent: 3, rapide: 5 }
|
||||
const __cibleCouvert = { aucun: 0, leger: 5, complet: 10 }
|
||||
const __tailleCible = { normal: 0, main: 10, enfant: 3, maison: -10 }
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class HawkmoonUtility {
|
||||
@@ -130,7 +130,7 @@ export class HawkmoonUtility {
|
||||
static createArrayOptionList(min, max) {
|
||||
let options = [];
|
||||
for (let i = min; i <= max; i++) {
|
||||
options.push({key:`${i}`, label:`${i}`});
|
||||
options.push({ key: `${i}`, label: `${i}` });
|
||||
}
|
||||
return options;
|
||||
}
|
||||
@@ -278,9 +278,13 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static onSocketMesssage(msg) {
|
||||
if (msg.name == "msg_apply_combativite") {
|
||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
||||
defender.changeEtatCombativite(msg.data.value)
|
||||
if (msg.msg == "msg_apply_combativite") {
|
||||
let defender = game.canvas.tokens.get(msg.data.defenderTokenId)?.actor
|
||||
if (defender) {
|
||||
defender.changeEtatCombativite(msg.data.value)
|
||||
} else {
|
||||
console.warn("HawkmoonUtility.onSocketMesssage : Impossible de trouver le token pour appliquer la combativité", msg.defenderTokenId)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -354,14 +358,19 @@ export class HawkmoonUtility {
|
||||
}
|
||||
}
|
||||
|
||||
//console.log("Result : ", rollData)
|
||||
//console.log("Result : ", rollData
|
||||
this.computeResultQuality(rollData)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static computeResultQuality(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)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static applyCombativite(rollData, value) {
|
||||
if (game.user.isGM) {
|
||||
@@ -431,9 +440,9 @@ export class HawkmoonUtility {
|
||||
rollData.diceFormula += `+3`
|
||||
}
|
||||
if (rollData.hasAmbidextre) {
|
||||
if ( rollData.ambidextre1) {
|
||||
if (rollData.ambidextre1) {
|
||||
rollData.diceFormula += `-3`
|
||||
} else if ( rollData.ambidextre2) {
|
||||
} else if (rollData.ambidextre2) {
|
||||
rollData.diceFormula += `-6`
|
||||
}
|
||||
}
|
||||
@@ -453,7 +462,7 @@ export class HawkmoonUtility {
|
||||
rollData.diceFormula += `+5`
|
||||
}
|
||||
if (rollData.soutiens > 0) { // 1 soutien = +3, 2 soutiens = +4, 3 soutiens = +5
|
||||
rollData.diceFormula += `+${rollData.soutiens+2}`
|
||||
rollData.diceFormula += `+${rollData.soutiens + 2}`
|
||||
}
|
||||
|
||||
if (rollData.arme?.system.isDistance) {
|
||||
@@ -491,9 +500,9 @@ export class HawkmoonUtility {
|
||||
}
|
||||
if (rollData.feinte) {
|
||||
actor.changeBonneAventure(-1)
|
||||
if ( rollData.isHeroique) {
|
||||
if (rollData.isHeroique) {
|
||||
rollData.nbCombativitePerdu = "vaincu"
|
||||
} else if ( rollData.isSuccess) {
|
||||
} else if (rollData.isSuccess) {
|
||||
rollData.nbCombativitePerdu = 2
|
||||
}
|
||||
}
|
||||
@@ -502,7 +511,7 @@ export class HawkmoonUtility {
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
|
||||
}, rollData)
|
||||
|
||||
if ( (rollData.coupBas || rollData.arme) && rollData.isSuccess && rollData.defenderTokenId) {
|
||||
if ((rollData.coupBas || rollData.arme) && rollData.isSuccess && rollData.defenderTokenId) {
|
||||
this.applyCombativite(rollData, rollData.nbCombativitePerdu)
|
||||
}
|
||||
if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) {
|
||||
@@ -513,30 +522,35 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getCombativiteList(nbActivite) {
|
||||
let list = [ { value: String(0), label: "Combatif"}]
|
||||
for (let i = 1; i < nbActivite-2; i++) {
|
||||
list.push({ value: String(i), label:"Eprouvé " + i} )
|
||||
let list = [{ value: String(0), label: "Combatif" }]
|
||||
for (let i = 1; i < nbActivite - 2; i++) {
|
||||
list.push({ value: String(i), label: "Eprouvé " + i })
|
||||
}
|
||||
list[nbActivite-2] = { value: String(nbActivite-2), label:"Affaibli"}
|
||||
list[nbActivite-1] = { value: String(nbActivite-1), label:"Très Affaibli"}
|
||||
list[nbActivite] = { value: String(nbActivite), label:"Vaincu"}
|
||||
list[nbActivite - 2] = { value: String(nbActivite - 2), label: "Affaibli" }
|
||||
list[nbActivite - 1] = { value: String(nbActivite - 1), label: "Très Affaibli" }
|
||||
list[nbActivite] = { value: String(nbActivite), label: "Vaincu" }
|
||||
return list
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async bonusRollHawkmoon(rollData) {
|
||||
rollData.bonusFormula = rollData.addedBonus
|
||||
console.log("Bonus Roll Hawkmoon", rollData.bonusFormula)
|
||||
|
||||
let bonusRoll = await new Roll(rollData.bonusFormula).roll()
|
||||
await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode"));
|
||||
rollData.bonusRoll = foundry.utils.duplicate(bonusRoll)
|
||||
if (!Number(rollData.bonusFormula)) {
|
||||
let bonusRoll = await new Roll(rollData.bonusFormula).roll()
|
||||
await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode"));
|
||||
rollData.bonusRoll = foundry.utils.duplicate(bonusRoll)
|
||||
rollData.finalResult += Number(rollData.bonusRoll.total)
|
||||
} else {
|
||||
rollData.finalResult += Number(rollData.bonusFormula)
|
||||
console.log("Bonus Roll Hawkmoon 2", rollData.finalResult)
|
||||
}
|
||||
|
||||
rollData.finalResult += rollData.bonusRoll.total
|
||||
|
||||
this.computeResult(rollData)
|
||||
this.computeResultQuality(rollData)
|
||||
|
||||
this.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
|
||||
}, rollData)
|
||||
|
||||
}
|
||||
@@ -646,11 +660,11 @@ export class HawkmoonUtility {
|
||||
distanceTir: "porteemoyenne",
|
||||
attaqueCharge: false,
|
||||
attaqueDesarme: false,
|
||||
attaqueAmbidextre1 : false,
|
||||
attaqueAmbidextre2 : false,
|
||||
chargeCavalerie : false,
|
||||
contenir : false,
|
||||
soutiens : 0
|
||||
attaqueAmbidextre1: false,
|
||||
attaqueAmbidextre2: false,
|
||||
chargeCavalerie: false,
|
||||
contenir: false,
|
||||
soutiens: 0
|
||||
}
|
||||
return rollData
|
||||
}
|
||||
@@ -671,13 +685,13 @@ export class HawkmoonUtility {
|
||||
} else if (rollData.coupBas) {
|
||||
let combatValues = defender.getCombatValues()
|
||||
rollData.difficulte = combatValues.defenseTotal
|
||||
}else if ( rollData.assomer) {
|
||||
} else if (rollData.assomer) {
|
||||
rollData.difficulte = 3 + (defender.system.attributs.tre.value * 2)
|
||||
} else if (rollData.desengager) {
|
||||
} else if (rollData.desengager) {
|
||||
rollData.difficulte = rollData.armeAttaqueDefenseur?.system?.totalOffensif || 0;
|
||||
} else if (rollData.armeDefense) {
|
||||
rollData.difficulte = rollData.armeDefense.system.totalDefensif
|
||||
if ( !rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune ){
|
||||
if (!rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune) {
|
||||
if (rollData.armeDefense.system.armenaturelle || rollData.armeDefense.system.armefortune) {
|
||||
rollData.bonusArmeNaturelle = 3
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000272
|
||||
MANIFEST-000329
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.820283 7fb791ffb6c0 Recovering log #270
|
||||
2025/04/30-22:46:25.831133 7fb791ffb6c0 Delete type=3 #268
|
||||
2025/04/30-22:46:25.831299 7fb791ffb6c0 Delete type=0 #270
|
||||
2025/04/30-23:23:04.369017 7fb7917fa6c0 Level-0 table #275: started
|
||||
2025/04/30-23:23:04.372625 7fb7917fa6c0 Level-0 table #275: 41333 bytes OK
|
||||
2025/04/30-23:23:04.379312 7fb7917fa6c0 Delete type=0 #273
|
||||
2025/04/30-23:23:04.379479 7fb7917fa6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.379516 7fb7917fa6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1
|
||||
2025/04/30-23:23:04.379525 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.383543 7fb7917fa6c0 Generated table #276@1: 4 keys, 41333 bytes
|
||||
2025/04/30-23:23:04.383570 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 41333 bytes
|
||||
2025/04/30-23:23:04.389832 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.390039 7fb7917fa6c0 Delete type=2 #263
|
||||
2025/04/30-23:23:04.390302 7fb7917fa6c0 Delete type=2 #275
|
||||
2025/04/30-23:23:04.421521 7fb7917fa6c0 Manual compaction at level-1 from '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.288531 7f34ccff96c0 Recovering log #327
|
||||
2025/11/21-21:17:11.303357 7f34ccff96c0 Delete type=3 #325
|
||||
2025/11/21-21:17:11.303441 7f34ccff96c0 Delete type=0 #327
|
||||
2025/11/21-21:20:34.182000 7f322ffff6c0 Level-0 table #332: started
|
||||
2025/11/21-21:20:34.182040 7f322ffff6c0 Level-0 table #332: 0 bytes OK
|
||||
2025/11/21-21:20:34.189103 7f322ffff6c0 Delete type=0 #330
|
||||
2025/11/21-21:20:34.199156 7f322ffff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.220809 7f322ffff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.240513 7f9cf5ffb6c0 Recovering log #266
|
||||
2025/03/28-18:06:54.252115 7f9cf5ffb6c0 Delete type=3 #264
|
||||
2025/03/28-18:06:54.252178 7f9cf5ffb6c0 Delete type=0 #266
|
||||
2025/03/28-18:09:08.872875 7f9cf4ff96c0 Level-0 table #271: started
|
||||
2025/03/28-18:09:08.872910 7f9cf4ff96c0 Level-0 table #271: 0 bytes OK
|
||||
2025/03/28-18:09:08.879279 7f9cf4ff96c0 Delete type=0 #269
|
||||
2025/03/28-18:09:08.892832 7f9cf4ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.903986 7f9cf4ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.824844 7f058d1fa6c0 Recovering log #323
|
||||
2025/10/26-15:18:50.834381 7f058d1fa6c0 Delete type=3 #321
|
||||
2025/10/26-15:18:50.834446 7f058d1fa6c0 Delete type=0 #323
|
||||
2025/10/26-15:36:37.999570 7f0586bff6c0 Level-0 table #328: started
|
||||
2025/10/26-15:36:37.999597 7f0586bff6c0 Level-0 table #328: 0 bytes OK
|
||||
2025/10/26-15:36:38.035738 7f0586bff6c0 Delete type=0 #326
|
||||
2025/10/26-15:36:38.190124 7f0586bff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:38.190183 7f0586bff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/aides-de-jeu/MANIFEST-000329
Normal file
BIN
packs/aides-de-jeu/MANIFEST-000329
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.674405 7fb7927fc6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.686479 7fb7927fc6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.686581 7fb7927fc6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.179243 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.182638 7fb7917fa6c0 Level-0 table #274: 14167 bytes OK
|
||||
2025/04/30-23:23:04.190494 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.211888 7fb7917fa6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.221874 7fb7917fa6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1
|
||||
2025/04/30-23:23:04.221885 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.225802 7fb7917fa6c0 Generated table #275@1: 49 keys, 14167 bytes
|
||||
2025/04/30-23:23:04.225834 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 14167 bytes
|
||||
2025/04/30-23:23:04.231964 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.232101 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.232269 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.255042 7fb7917fa6c0 Manual compaction at level-1 from '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.119952 7f34cd7fa6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.135840 7f34cd7fa6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.135940 7f34cd7fa6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.115063 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.115090 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.121038 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.121241 7f322ffff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.121271 7f322ffff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.129546 7f9cf57fa6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.140296 7f9cf57fa6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.140354 7f9cf57fa6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.799681 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.799712 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.806126 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806364 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806424 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.724903 7f05877fe6c0 Recovering log #322
|
||||
2025/10/26-15:18:50.734667 7f05877fe6c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.734726 7f05877fe6c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.786399 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.786438 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.828201 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.860961 7f0586bff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.860990 7f0586bff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/armes/MANIFEST-000328
Normal file
BIN
packs/armes/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.643592 7fb7937fe6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.654454 7fb7937fe6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.654552 7fb7937fe6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.103416 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.106737 7fb7917fa6c0 Level-0 table #274: 7054 bytes OK
|
||||
2025/04/30-23:23:04.112842 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.124899 7fb7917fa6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.146124 7fb7917fa6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at '!items!tFU5yISK6spdNWco' @ 40 : 1
|
||||
2025/04/30-23:23:04.146133 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.149904 7fb7917fa6c0 Generated table #275@1: 8 keys, 7054 bytes
|
||||
2025/04/30-23:23:04.149920 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 7054 bytes
|
||||
2025/04/30-23:23:04.156562 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.156635 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.156743 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.168556 7fb7917fa6c0 Manual compaction at level-1 from '!items!tFU5yISK6spdNWco' @ 40 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.082663 7f34ccff96c0 Recovering log #326
|
||||
2025/11/21-21:17:11.097415 7f34ccff96c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.097522 7f34ccff96c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.082672 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.082698 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.088631 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.094927 7f322ffff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.094971 7f322ffff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.103361 7f9cf5ffb6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.113349 7f9cf5ffb6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.113428 7f9cf5ffb6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.786685 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.786722 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.793132 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806327 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806394 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.698736 7f058c9f96c0 Recovering log #322
|
||||
2025/10/26-15:18:50.709788 7f058c9f96c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.709858 7f058c9f96c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.564245 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.564294 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.604220 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.709945 7f0586bff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.709995 7f0586bff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/competences-creatures/MANIFEST-000328
Normal file
BIN
packs/competences-creatures/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.597132 7fb792ffd6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.609063 7fb792ffd6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.609201 7fb792ffd6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.082867 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.086179 7fb7917fa6c0 Level-0 table #274: 16660 bytes OK
|
||||
2025/04/30-23:23:04.092287 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.124841 7fb7917fa6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.124952 7fb7917fa6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at '!items!yI1zY5k8mAdx9wHK' @ 75 : 1
|
||||
2025/04/30-23:23:04.124972 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.129408 7fb7917fa6c0 Generated table #275@1: 15 keys, 16660 bytes
|
||||
2025/04/30-23:23:04.129442 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 16660 bytes
|
||||
2025/04/30-23:23:04.135379 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.135477 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.135681 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.168528 7fb7917fa6c0 Manual compaction at level-1 from '!items!yI1zY5k8mAdx9wHK' @ 75 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.044217 7f34ce7fc6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.059351 7f34ce7fc6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.059409 7f34ce7fc6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.076024 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.076057 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.082546 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.094915 7f322ffff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.094962 7f322ffff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.075285 7f9cf57fa6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.086230 7f9cf57fa6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.086300 7f9cf57fa6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.813600 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.813626 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.819856 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833880 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833915 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.672996 7f058d1fa6c0 Recovering log #322
|
||||
2025/10/26-15:18:50.683402 7f058d1fa6c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.683496 7f058d1fa6c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.604372 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.604409 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.638938 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.709963 7f0586bff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.710002 7f0586bff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/competences/MANIFEST-000328
Normal file
BIN
packs/competences/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.707873 7fb7927fc6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.719103 7fb7927fc6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.719286 7fb7927fc6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.190695 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.194619 7fb7917fa6c0 Level-0 table #274: 31834 bytes OK
|
||||
2025/04/30-23:23:04.200798 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.211899 7fb7917fa6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.232371 7fb7917fa6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1
|
||||
2025/04/30-23:23:04.232382 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.236254 7fb7917fa6c0 Generated table #275@1: 151 keys, 31834 bytes
|
||||
2025/04/30-23:23:04.236302 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 31834 bytes
|
||||
2025/04/30-23:23:04.243742 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.243955 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.244249 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.255058 7fb7917fa6c0 Manual compaction at level-1 from '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.157103 7f34ce7fc6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.172875 7f34ce7fc6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.172939 7f34ce7fc6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.095092 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.095126 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.102295 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.121183 7f322ffff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.121249 7f322ffff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.156515 7f9cf5ffb6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.167920 7f9cf5ffb6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.168006 7f9cf5ffb6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.806529 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.806589 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.813486 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833864 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833923 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.749067 7f058d1fa6c0 Recovering log #322
|
||||
2025/10/26-15:18:50.759273 7f058d1fa6c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.759337 7f058d1fa6c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.743796 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.743858 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.786277 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.860948 7f0586bff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.860984 7f0586bff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/equipement/MANIFEST-000328
Normal file
BIN
packs/equipement/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.658285 7fb792ffd6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.668622 7fb792ffd6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.668716 7fb792ffd6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.092436 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.095766 7fb7917fa6c0 Level-0 table #274: 19976 bytes OK
|
||||
2025/04/30-23:23:04.103193 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.124873 7fb7917fa6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.135825 7fb7917fa6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at '!items!z1HtkvazCGHut7cz' @ 240 : 1
|
||||
2025/04/30-23:23:04.135851 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.139629 7fb7917fa6c0 Generated table #275@1: 48 keys, 19976 bytes
|
||||
2025/04/30-23:23:04.139657 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 19976 bytes
|
||||
2025/04/30-23:23:04.145845 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.145948 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.146054 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.168545 7fb7917fa6c0 Manual compaction at level-1 from '!items!z1HtkvazCGHut7cz' @ 240 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.100312 7f34ce7fc6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.117500 7f34ce7fc6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.117567 7f34ce7fc6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.069446 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.069505 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.075899 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.094892 7f322ffff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.094951 7f322ffff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.116086 7f9cf67fc6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.126771 7f9cf67fc6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.126828 7f9cf67fc6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.793243 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.793267 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.799520 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806348 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806409 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.712053 7f058d1fa6c0 Recovering log #322
|
||||
2025/10/26-15:18:50.722592 7f058d1fa6c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.722674 7f058d1fa6c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.639047 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.639075 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.675760 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.709975 7f0586bff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.710009 7f0586bff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/historiques/MANIFEST-000328
Normal file
BIN
packs/historiques/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000181
|
||||
MANIFEST-000238
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.616201 7fb791ffb6c0 Recovering log #179
|
||||
2025/04/30-22:46:25.627292 7fb791ffb6c0 Delete type=3 #177
|
||||
2025/04/30-22:46:25.627403 7fb791ffb6c0 Delete type=0 #179
|
||||
2025/04/30-23:23:04.113049 7fb7917fa6c0 Level-0 table #184: started
|
||||
2025/04/30-23:23:04.117530 7fb7917fa6c0 Level-0 table #184: 58257 bytes OK
|
||||
2025/04/30-23:23:04.124557 7fb7917fa6c0 Delete type=0 #182
|
||||
2025/04/30-23:23:04.124923 7fb7917fa6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.156834 7fb7917fa6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at '!items!zttESycGKltfwCzJ' @ 811 : 1
|
||||
2025/04/30-23:23:04.156846 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.160766 7fb7917fa6c0 Generated table #185@1: 167 keys, 58927 bytes
|
||||
2025/04/30-23:23:04.160803 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 58927 bytes
|
||||
2025/04/30-23:23:04.167712 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.167915 7fb7917fa6c0 Delete type=2 #172
|
||||
2025/04/30-23:23:04.168270 7fb7917fa6c0 Delete type=2 #184
|
||||
2025/04/30-23:23:04.168569 7fb7917fa6c0 Manual compaction at level-1 from '!items!zttESycGKltfwCzJ' @ 811 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.062660 7f34cdffb6c0 Recovering log #236
|
||||
2025/11/21-21:17:11.079663 7f34cdffb6c0 Delete type=3 #234
|
||||
2025/11/21-21:17:11.079731 7f34cdffb6c0 Delete type=0 #236
|
||||
2025/11/21-21:20:34.088817 7f322ffff6c0 Level-0 table #241: started
|
||||
2025/11/21-21:20:34.088856 7f322ffff6c0 Level-0 table #241: 0 bytes OK
|
||||
2025/11/21-21:20:34.094750 7f322ffff6c0 Delete type=0 #239
|
||||
2025/11/21-21:20:34.094940 7f322ffff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.094980 7f322ffff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.089587 7f9cf6ffd6c0 Recovering log #175
|
||||
2025/03/28-18:06:54.100163 7f9cf6ffd6c0 Delete type=3 #173
|
||||
2025/03/28-18:06:54.100221 7f9cf6ffd6c0 Delete type=0 #175
|
||||
2025/03/28-18:09:08.826965 7f9cf4ff96c0 Level-0 table #180: started
|
||||
2025/03/28-18:09:08.826991 7f9cf4ff96c0 Level-0 table #180: 0 bytes OK
|
||||
2025/03/28-18:09:08.833674 7f9cf4ff96c0 Delete type=0 #178
|
||||
2025/03/28-18:09:08.833905 7f9cf4ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833931 7f9cf4ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.686224 7f0587fff6c0 Recovering log #232
|
||||
2025/10/26-15:18:50.696079 7f0587fff6c0 Delete type=3 #230
|
||||
2025/10/26-15:18:50.696162 7f0587fff6c0 Delete type=0 #232
|
||||
2025/10/26-15:36:37.675951 7f0586bff6c0 Level-0 table #237: started
|
||||
2025/10/26-15:36:37.676003 7f0586bff6c0 Level-0 table #237: 0 bytes OK
|
||||
2025/10/26-15:36:37.709795 7f0586bff6c0 Delete type=0 #235
|
||||
2025/10/26-15:36:37.709986 7f0586bff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.710016 7f0586bff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/mutations/MANIFEST-000238
Normal file
BIN
packs/mutations/MANIFEST-000238
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.726020 7fb792ffd6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.737499 7fb792ffd6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.737660 7fb792ffd6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.201057 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.205481 7fb7917fa6c0 Level-0 table #274: 29941 bytes OK
|
||||
2025/04/30-23:23:04.211714 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.211908 7fb7917fa6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.244455 7fb7917fa6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at '!items!tFQqcxmkS3MT6ASE' @ 75 : 1
|
||||
2025/04/30-23:23:04.244476 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.248277 7fb7917fa6c0 Generated table #275@1: 15 keys, 29941 bytes
|
||||
2025/04/30-23:23:04.248311 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 29941 bytes
|
||||
2025/04/30-23:23:04.254398 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.254638 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.254910 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.255072 7fb7917fa6c0 Manual compaction at level-1 from '!items!tFQqcxmkS3MT6ASE' @ 75 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.175622 7f34cd7fa6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.190667 7f34cd7fa6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.190757 7f34cd7fa6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.109081 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.109106 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.114933 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.121229 7f322ffff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.121264 7f322ffff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.172273 7f9cf67fc6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.183178 7f9cf67fc6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.183275 7f9cf67fc6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.820046 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.820086 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.826845 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833893 7f9cf4ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833939 7f9cf4ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.761639 7f05877fe6c0 Recovering log #322
|
||||
2025/10/26-15:18:50.771506 7f05877fe6c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.771562 7f05877fe6c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.710125 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.710175 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.743520 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.860930 7f0586bff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.860978 7f0586bff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/profils/MANIFEST-000328
Normal file
BIN
packs/profils/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.692517 7fb7937fe6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.703599 7fb7937fe6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.703745 7fb7937fe6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.168688 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.172836 7fb7917fa6c0 Level-0 table #274: 3496 bytes OK
|
||||
2025/04/30-23:23:04.179106 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.211874 7fb7917fa6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.211922 7fb7917fa6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at '!items!yszkersMTE4p9VzP' @ 70 : 1
|
||||
2025/04/30-23:23:04.211931 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.215103 7fb7917fa6c0 Generated table #275@1: 14 keys, 3496 bytes
|
||||
2025/04/30-23:23:04.215136 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 3496 bytes
|
||||
2025/04/30-23:23:04.221500 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.221635 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.221783 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.255023 7fb7917fa6c0 Manual compaction at level-1 from '!items!yszkersMTE4p9VzP' @ 70 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.139151 7f34cdffb6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.154714 7f34cdffb6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.154795 7f34cdffb6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.102428 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.102452 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.108966 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.121216 7f322ffff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.121256 7f322ffff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.142912 7f9cf6ffd6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.152918 7f9cf6ffd6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.153055 7f9cf6ffd6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.779338 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.779431 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.786537 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806298 7f9cf4ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806379 7f9cf4ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.736841 7f058c9f96c0 Recovering log #322
|
||||
2025/10/26-15:18:50.746818 7f058c9f96c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.746894 7f058c9f96c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.828362 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.828487 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.860797 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.860970 7f0586bff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.860996 7f0586bff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/protections/MANIFEST-000328
Normal file
BIN
packs/protections/MANIFEST-000328
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000167
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.802227 7fb7937fe6c0 Recovering log #108
|
||||
2025/04/30-22:46:25.814731 7fb7937fe6c0 Delete type=3 #106
|
||||
2025/04/30-22:46:25.814933 7fb7937fe6c0 Delete type=0 #108
|
||||
2025/04/30-23:23:04.285184 7fb7917fa6c0 Level-0 table #113: started
|
||||
2025/04/30-23:23:04.288382 7fb7917fa6c0 Level-0 table #113: 1653 bytes OK
|
||||
2025/04/30-23:23:04.295867 7fb7917fa6c0 Delete type=0 #111
|
||||
2025/04/30-23:23:04.296061 7fb7917fa6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.319755 7fb7917fa6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at '!scenes!mfosNsLsHN5Pf4TO' @ 97 : 1
|
||||
2025/04/30-23:23:04.319768 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.323061 7fb7917fa6c0 Generated table #114@1: 2 keys, 1653 bytes
|
||||
2025/04/30-23:23:04.323100 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 1653 bytes
|
||||
2025/04/30-23:23:04.329661 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.329775 7fb7917fa6c0 Delete type=2 #101
|
||||
2025/04/30-23:23:04.329934 7fb7917fa6c0 Delete type=2 #113
|
||||
2025/04/30-23:23:04.341258 7fb7917fa6c0 Manual compaction at level-1 from '!scenes!mfosNsLsHN5Pf4TO' @ 97 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.269484 7f34cdffb6c0 Recovering log #165
|
||||
2025/11/21-21:17:11.284464 7f34cdffb6c0 Delete type=3 #163
|
||||
2025/11/21-21:17:11.284524 7f34cdffb6c0 Delete type=0 #165
|
||||
2025/11/21-21:20:34.145250 7f322ffff6c0 Level-0 table #170: started
|
||||
2025/11/21-21:20:34.145279 7f322ffff6c0 Level-0 table #170: 0 bytes OK
|
||||
2025/11/21-21:20:34.151544 7f322ffff6c0 Delete type=0 #168
|
||||
2025/11/21-21:20:34.151702 7f322ffff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.164154 7f322ffff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.226942 7f9cf67fc6c0 Recovering log #104
|
||||
2025/03/28-18:06:54.236785 7f9cf67fc6c0 Delete type=3 #102
|
||||
2025/03/28-18:06:54.236844 7f9cf67fc6c0 Delete type=0 #104
|
||||
2025/03/28-18:09:08.854204 7f9cf4ff96c0 Level-0 table #109: started
|
||||
2025/03/28-18:09:08.854246 7f9cf4ff96c0 Level-0 table #109: 0 bytes OK
|
||||
2025/03/28-18:09:08.861935 7f9cf4ff96c0 Delete type=0 #107
|
||||
2025/03/28-18:09:08.862106 7f9cf4ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.862134 7f9cf4ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.811691 7f0587fff6c0 Recovering log #161
|
||||
2025/10/26-15:18:50.821681 7f0587fff6c0 Delete type=3 #159
|
||||
2025/10/26-15:18:50.821761 7f0587fff6c0 Delete type=0 #161
|
||||
2025/10/26-15:36:37.961254 7f0586bff6c0 Level-0 table #166: started
|
||||
2025/10/26-15:36:37.961290 7f0586bff6c0 Level-0 table #166: 0 bytes OK
|
||||
2025/10/26-15:36:37.999333 7f0586bff6c0 Delete type=0 #164
|
||||
2025/10/26-15:36:37.999500 7f0586bff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.999534 7f0586bff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/scenes/MANIFEST-000167
Normal file
BIN
packs/scenes/MANIFEST-000167
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000268
|
||||
MANIFEST-000324
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2025/04/30-22:46:25.773588 7fb792ffd6c0 Recovering log #266
|
||||
2025/04/30-22:46:25.784012 7fb792ffd6c0 Delete type=3 #264
|
||||
2025/04/30-22:46:25.784106 7fb792ffd6c0 Delete type=0 #266
|
||||
2025/04/30-23:23:04.278863 7fb7917fa6c0 Level-0 table #271: started
|
||||
2025/04/30-23:23:04.278898 7fb7917fa6c0 Level-0 table #271: 0 bytes OK
|
||||
2025/04/30-23:23:04.285012 7fb7917fa6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.296050 7fb7917fa6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.238038 7f34ccff96c0 Recovering log #322
|
||||
2025/11/21-21:17:11.266542 7f34ccff96c0 Delete type=3 #320
|
||||
2025/11/21-21:17:11.266608 7f34ccff96c0 Delete type=0 #322
|
||||
2025/11/21-21:20:34.138228 7f322ffff6c0 Level-0 table #327: started
|
||||
2025/11/21-21:20:34.138262 7f322ffff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/11/21-21:20:34.145084 7f322ffff6c0 Delete type=0 #325
|
||||
2025/11/21-21:20:34.151692 7f322ffff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2025/03/28-18:06:54.214203 7f9cf5ffb6c0 Recovering log #262
|
||||
2025/03/28-18:06:54.224626 7f9cf5ffb6c0 Delete type=3 #260
|
||||
2025/03/28-18:06:54.224678 7f9cf5ffb6c0 Delete type=0 #262
|
||||
2025/03/28-18:09:08.847807 7f9cf4ff96c0 Level-0 table #267: started
|
||||
2025/03/28-18:09:08.847847 7f9cf4ff96c0 Level-0 table #267: 0 bytes OK
|
||||
2025/03/28-18:09:08.854019 7f9cf4ff96c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.862095 7f9cf4ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.798879 7f058d1fa6c0 Recovering log #318
|
||||
2025/10/26-15:18:50.809138 7f058d1fa6c0 Delete type=3 #316
|
||||
2025/10/26-15:18:50.809213 7f058d1fa6c0 Delete type=0 #318
|
||||
2025/10/26-15:36:37.898215 7f0586bff6c0 Level-0 table #323: started
|
||||
2025/10/26-15:36:37.898241 7f0586bff6c0 Level-0 table #323: 0 bytes OK
|
||||
2025/10/26-15:36:37.926213 7f0586bff6c0 Delete type=0 #321
|
||||
2025/10/26-15:36:37.999475 7f0586bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/tables/MANIFEST-000324
Normal file
BIN
packs/tables/MANIFEST-000324
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000271
|
||||
MANIFEST-000328
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/04/30-22:46:25.759038 7fb7927fc6c0 Recovering log #269
|
||||
2025/04/30-22:46:25.769599 7fb7927fc6c0 Delete type=3 #267
|
||||
2025/04/30-22:46:25.769703 7fb7927fc6c0 Delete type=0 #269
|
||||
2025/04/30-23:23:04.267381 7fb7917fa6c0 Level-0 table #274: started
|
||||
2025/04/30-23:23:04.270850 7fb7917fa6c0 Level-0 table #274: 9342 bytes OK
|
||||
2025/04/30-23:23:04.278700 7fb7917fa6c0 Delete type=0 #272
|
||||
2025/04/30-23:23:04.296038 7fb7917fa6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.308030 7fb7917fa6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at '!items!yRTYaNKyXBX9wHhb' @ 95 : 1
|
||||
2025/04/30-23:23:04.308048 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.312866 7fb7917fa6c0 Generated table #275@1: 19 keys, 9342 bytes
|
||||
2025/04/30-23:23:04.312897 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 9342 bytes
|
||||
2025/04/30-23:23:04.319365 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.319482 7fb7917fa6c0 Delete type=2 #262
|
||||
2025/04/30-23:23:04.319646 7fb7917fa6c0 Delete type=2 #274
|
||||
2025/04/30-23:23:04.341230 7fb7917fa6c0 Manual compaction at level-1 from '!items!yRTYaNKyXBX9wHhb' @ 95 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.214544 7f34ce7fc6c0 Recovering log #326
|
||||
2025/11/21-21:17:11.234732 7f34ce7fc6c0 Delete type=3 #324
|
||||
2025/11/21-21:17:11.234809 7f34ce7fc6c0 Delete type=0 #326
|
||||
2025/11/21-21:20:34.121434 7f322ffff6c0 Level-0 table #331: started
|
||||
2025/11/21-21:20:34.121467 7f322ffff6c0 Level-0 table #331: 0 bytes OK
|
||||
2025/11/21-21:20:34.128698 7f322ffff6c0 Delete type=0 #329
|
||||
2025/11/21-21:20:34.151669 7f322ffff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.151712 7f322ffff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.200895 7f9cf6ffd6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.211375 7f9cf6ffd6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.211438 7f9cf6ffd6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.840568 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.840595 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.847609 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.862082 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.862116 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.786524 7f058c9f96c0 Recovering log #322
|
||||
2025/10/26-15:18:50.796170 7f058c9f96c0 Delete type=3 #320
|
||||
2025/10/26-15:18:50.796225 7f058c9f96c0 Delete type=0 #322
|
||||
2025/10/26-15:36:37.861107 7f0586bff6c0 Level-0 table #327: started
|
||||
2025/10/26-15:36:37.861131 7f0586bff6c0 Level-0 table #327: 0 bytes OK
|
||||
2025/10/26-15:36:37.898090 7f0586bff6c0 Delete type=0 #325
|
||||
2025/10/26-15:36:37.999464 7f0586bff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.999493 7f0586bff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/talents-cellule/MANIFEST-000328
Normal file
BIN
packs/talents-cellule/MANIFEST-000328
Normal file
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000272
|
||||
MANIFEST-000329
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2025/04/30-22:46:25.742575 7fb7937fe6c0 Recovering log #270
|
||||
2025/04/30-22:46:25.752964 7fb7937fe6c0 Delete type=3 #268
|
||||
2025/04/30-22:46:25.753059 7fb7937fe6c0 Delete type=0 #270
|
||||
2025/04/30-23:23:04.255212 7fb7917fa6c0 Level-0 table #275: started
|
||||
2025/04/30-23:23:04.260863 7fb7917fa6c0 Level-0 table #275: 104959 bytes OK
|
||||
2025/04/30-23:23:04.267163 7fb7917fa6c0 Delete type=0 #273
|
||||
2025/04/30-23:23:04.296024 7fb7917fa6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/04/30-23:23:04.296075 7fb7917fa6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at '!items!zKvlDHBalR4UdwUx' @ 1158 : 1
|
||||
2025/04/30-23:23:04.296083 7fb7917fa6c0 Compacting 1@1 + 1@2 files
|
||||
2025/04/30-23:23:04.300984 7fb7917fa6c0 Generated table #276@1: 193 keys, 104959 bytes
|
||||
2025/04/30-23:23:04.301016 7fb7917fa6c0 Compacted 1@1 + 1@2 files => 104959 bytes
|
||||
2025/04/30-23:23:04.307236 7fb7917fa6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/04/30-23:23:04.307444 7fb7917fa6c0 Delete type=2 #263
|
||||
2025/04/30-23:23:04.307805 7fb7917fa6c0 Delete type=2 #275
|
||||
2025/04/30-23:23:04.341202 7fb7917fa6c0 Manual compaction at level-1 from '!items!zKvlDHBalR4UdwUx' @ 1158 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:17:11.194230 7f34cdffb6c0 Recovering log #327
|
||||
2025/11/21-21:17:11.210969 7f34cdffb6c0 Delete type=3 #325
|
||||
2025/11/21-21:17:11.211033 7f34cdffb6c0 Delete type=0 #327
|
||||
2025/11/21-21:20:34.128800 7f322ffff6c0 Level-0 table #332: started
|
||||
2025/11/21-21:20:34.131893 7f322ffff6c0 Level-0 table #332: 3527 bytes OK
|
||||
2025/11/21-21:20:34.137994 7f322ffff6c0 Delete type=0 #330
|
||||
2025/11/21-21:20:34.151683 7f322ffff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/11/21-21:20:34.151734 7f322ffff6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at '!items!PfuzDohW3l2ds0hu' @ 1159 : 1
|
||||
2025/11/21-21:20:34.151743 7f322ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2025/11/21-21:20:34.157101 7f322ffff6c0 Generated table #333@1: 193 keys, 105016 bytes
|
||||
2025/11/21-21:20:34.157139 7f322ffff6c0 Compacted 1@1 + 1@2 files => 105016 bytes
|
||||
2025/11/21-21:20:34.163649 7f322ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/11/21-21:20:34.163835 7f322ffff6c0 Delete type=2 #276
|
||||
2025/11/21-21:20:34.164056 7f322ffff6c0 Delete type=2 #332
|
||||
2025/11/21-21:20:34.181980 7f322ffff6c0 Manual compaction at level-1 from '!items!PfuzDohW3l2ds0hu' @ 1159 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/03/28-18:06:54.186843 7f9cf57fa6c0 Recovering log #266
|
||||
2025/03/28-18:06:54.196503 7f9cf57fa6c0 Delete type=3 #264
|
||||
2025/03/28-18:06:54.196568 7f9cf57fa6c0 Delete type=0 #266
|
||||
2025/03/28-18:09:08.834145 7f9cf4ff96c0 Level-0 table #271: started
|
||||
2025/03/28-18:09:08.834174 7f9cf4ff96c0 Level-0 table #271: 0 bytes OK
|
||||
2025/03/28-18:09:08.840438 7f9cf4ff96c0 Delete type=0 #269
|
||||
2025/03/28-18:09:08.862069 7f9cf4ff96c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.862124 7f9cf4ff96c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:18:50.773811 7f0587fff6c0 Recovering log #323
|
||||
2025/10/26-15:18:50.783703 7f0587fff6c0 Delete type=3 #321
|
||||
2025/10/26-15:18:50.783762 7f0587fff6c0 Delete type=0 #323
|
||||
2025/10/26-15:36:37.926443 7f0586bff6c0 Level-0 table #328: started
|
||||
2025/10/26-15:36:37.926479 7f0586bff6c0 Level-0 table #328: 0 bytes OK
|
||||
2025/10/26-15:36:37.961122 7f0586bff6c0 Delete type=0 #326
|
||||
2025/10/26-15:36:37.999484 7f0586bff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:36:37.999513 7f0586bff6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/talents/MANIFEST-000329
Normal file
BIN
packs/talents/MANIFEST-000329
Normal file
Binary file not shown.
@@ -1,33 +1,38 @@
|
||||
/* ==================== (A) Fonts ==================== */
|
||||
/* ==================== (A) Fonts ==================== */
|
||||
@font-face {
|
||||
font-family: "Charlemagne";
|
||||
src: url('../assets/fonts/CharlemagneStd-Bold.otf') format("otf");
|
||||
font-family: "Pfeffer";
|
||||
src: url('../assets/fonts/pfeffer-simpelgotisch.regular.otf') format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Montserrat";
|
||||
src: url('../assets/fonts/Montserrat-Medium.woff') format("woff");
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
:root {
|
||||
/* =================== 1. ACTOR SHEET FONT STYLES =========== */
|
||||
--window-header-font-family: Charlemagne;
|
||||
--window-header-title-font-size: 1.1rem;
|
||||
--window-header-font-family: Montserrat;
|
||||
--window-header-title-font-size: 0.95rem;
|
||||
--window-header-title-font-weight: normal;
|
||||
--window-header-title-color: #f5f5f5;
|
||||
|
||||
--major-button-font-family: Charlemagne;
|
||||
--major-button-font-size: 1.05rem;
|
||||
--major-button-font-family: Montserrat;
|
||||
--major-button-font-size: 0.95rem;
|
||||
--major-button-font-weight: normal;
|
||||
--major-button-color: #dadada;
|
||||
|
||||
--tab-header-font-family: Charlemagne;
|
||||
--tab-header-font-family: Montserrat;
|
||||
--tab-header-font-size: 1.0rem;
|
||||
--tab-header-font-weight: 700;
|
||||
--tab-header-color: #403f3e;
|
||||
--tab-header-color-active: #4a0404;
|
||||
|
||||
--actor-input-font-size: 0.8rem;
|
||||
--actor-input-font-size: 0.9rem;
|
||||
--actor-input-font-weight: 500;
|
||||
--actor-input-color: black;
|
||||
|
||||
--actor-label-font-size: 0.8rem;
|
||||
--actor-label-font-size: 0.9rem;
|
||||
--actor-label-font-weight: 700;
|
||||
--actor-label-color: #464331c4;
|
||||
|
||||
@@ -56,10 +61,17 @@
|
||||
}
|
||||
}
|
||||
|
||||
.window-app button,
|
||||
.window-app select,
|
||||
.window-app input {
|
||||
font-family: "Montserrat";
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*@import url("https://fonts.googleapis.com/css2?family=Martel:wght@400;800&family=Roboto:wght@300;400;500&display=swap");*/
|
||||
/* Global styles & Font */
|
||||
.window-app {
|
||||
font-family: Charlemagne;
|
||||
font-family: Montserrat;
|
||||
text-align: justify;
|
||||
font-size: 12px;
|
||||
letter-spacing: 1px;
|
||||
@@ -71,19 +83,25 @@
|
||||
.window-app .window-header,
|
||||
#actors .directory-list,
|
||||
#navigation #scene-list .scene.nav-item {
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Montserrat";
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
/* For title, sidebar character and scene */
|
||||
.sheet header.sheet-header h1 input {
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Pfeffer";
|
||||
font-size: 0.8rem;
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
.journal-sidebar .headings .heading.h3,
|
||||
.journal-sidebar .headings .heading.h4,
|
||||
.journal-sidebar .headings .heading.h2 {
|
||||
color: #e6dede;
|
||||
}
|
||||
|
||||
.sheet nav.sheet-tabs {
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Pfeffer";
|
||||
font-size: 0.8rem;
|
||||
color: #151c1f;
|
||||
}
|
||||
@@ -350,8 +368,9 @@
|
||||
border-bottom: 0;
|
||||
font-weight: bold;
|
||||
font-size: 2rem;
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Pfeffer";
|
||||
color: lightgray;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.fvtt-hawkmoon-cyd .sheet-header h1.charname input {
|
||||
@@ -359,9 +378,10 @@
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Pfeffer";
|
||||
font-size: 2rem;
|
||||
color: lightgray;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.fvtt-hawkmoon-cyd .sheet-tabs {
|
||||
@@ -969,6 +989,11 @@
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.chat-message .message-content {
|
||||
font-size: 0.9rem;
|
||||
font-family: CentaurMT;
|
||||
}
|
||||
|
||||
.chat-actor-name {
|
||||
padding: 4px;
|
||||
}
|
||||
@@ -986,7 +1011,7 @@
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 40%;
|
||||
left: 54%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@@ -1001,6 +1026,7 @@
|
||||
.icon-adversite {
|
||||
width: 48px;
|
||||
border: 0px;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.hud-adversite-container {
|
||||
@@ -1490,8 +1516,8 @@
|
||||
.item-field-label-medium {
|
||||
padding-top: 6px;
|
||||
flex-grow: 1;
|
||||
max-width: 6rem;
|
||||
min-width: 6rem;
|
||||
max-width: 7rem;
|
||||
min-width: 7rem;
|
||||
}
|
||||
|
||||
.item-field-label-long {
|
||||
@@ -1564,11 +1590,11 @@
|
||||
}
|
||||
|
||||
.page-title {
|
||||
color: black;
|
||||
color: rgb(233, 226, 226);
|
||||
}
|
||||
|
||||
textarea {
|
||||
font-family: "Charlemagne";
|
||||
font-family: "Montserrat";
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "fvtt-hawkmoon-cyd",
|
||||
"description": "Hawkmoon RPG for FoundryVTT (CYD system - French)",
|
||||
"version": "13.0.0",
|
||||
"version": "13.0.6",
|
||||
"grid": {
|
||||
"distance": 2,
|
||||
"units": "m"
|
||||
@@ -37,7 +37,7 @@
|
||||
],
|
||||
"license": "LICENSE.txt",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/raw/branch/master/system.json",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/archive/fvtt-hawkmoon-cyd-13.0.0.zip",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/archive/fvtt-hawkmoon-cyd-13.0.6.zip",
|
||||
"languages": [
|
||||
{
|
||||
"lang": "fr",
|
||||
@@ -264,4 +264,4 @@
|
||||
"minimum": "13",
|
||||
"verified": "13"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -40,7 +40,7 @@
|
||||
{{selectOptions combativiteList selected=system.sante.etat valueAttr="value" nameAttr="value" labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@@ -55,6 +55,7 @@
|
||||
<a class="item" data-tab="equipement">Equipement</a>
|
||||
<a class="item" data-tab="biodata">Bio&Notes</a>
|
||||
</nav>
|
||||
<hr>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
@@ -63,7 +64,7 @@
|
||||
<div class="tab principal" data-group="primary" data-tab="principal">
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
|
||||
<div class="grid grid-2col">
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
@@ -86,7 +87,7 @@
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.vitesse.value"
|
||||
value="{{system.vitesse.value}}" data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -236,17 +237,17 @@
|
||||
{{#each skills as |skill key|}}
|
||||
<li class="item flexrow " data-item-id="{{skill._id}}" data-item-type="competence">
|
||||
<img class="item-name-img" src="{{skill.img}}" />
|
||||
|
||||
|
||||
<div class="flexcol item-name-label">
|
||||
|
||||
<span class="item-name-label competence-name"><a class="roll-competence item-field-label-short"
|
||||
<span class="item-name-label competence-name"><a class="roll-competence "
|
||||
data-attr-key="tochoose">{{skill.name}}</a></span>
|
||||
|
||||
<span class="predilection-text">
|
||||
{{#each skill.system.predilections as |pred key|}}
|
||||
{{#if (and pred.acquise (not pred.used))}}
|
||||
{{pred.name}},
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
</span>
|
||||
</div>
|
||||
@@ -410,21 +411,21 @@
|
||||
<div class="tab equipement" data-group="primary" data-tab="equipement">
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
|
||||
<hr>
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<h4>
|
||||
<label class="argent-total-text">
|
||||
Argent Total : {{richesse.po}} PO - {{richesse.pa}} PA - {{richesse.sc}} SC (total {{richesse.valueSC}} SC)
|
||||
</label>
|
||||
</h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Richesses et Argent</label></h3>
|
||||
<h3><label class="items-title-text">Richesses et Argent</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Quantité</label>
|
||||
@@ -440,7 +441,7 @@
|
||||
<li class="item flexrow " data-item-id="{{monnaie._id}}" data-item-type="monnaie">
|
||||
<img class="item-name-img" src="{{monnaie.img}}" />
|
||||
<span class="item-name-label competence-name">{{monnaie.name}}</span>
|
||||
<span class="item-name-label competence-name item-field-label-medium">{{monnaie.system.quantite}}
|
||||
<span class="item-name-label competence-name item-field-label-medium">{{monnaie.system.quantite}}
|
||||
<a class="quantity-modify plus-minus-button" data-quantite-value="-1">-</a>
|
||||
<a class="quantity-modify plus-minus-button" data-quantite-value="+1">+</a>
|
||||
</span>
|
||||
@@ -460,7 +461,7 @@
|
||||
<label class="argent-total-text">
|
||||
Valeur Total Equipement : {{valeurEquipement.po}} PO - {{valeurEquipement.pa}} PA - {{valeurEquipement.sc}} SC (total {{valeurEquipement.valueSC}} SC)
|
||||
</label>
|
||||
</h4>
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
{{#if actorImg}}
|
||||
<img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" />
|
||||
{{/if}}
|
||||
<h4 class=chat-actor-name>{{alias}}</h4>
|
||||
<h4 class="chat-actor-name">{{alias}}</h4>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
<hr />
|
||||
|
||||
{{#if actionImg}}
|
||||
<div>
|
||||
@@ -13,145 +13,126 @@
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="flexcol">
|
||||
</div>
|
||||
<div class="flexcol"></div>
|
||||
|
||||
<div>
|
||||
<ul>
|
||||
<li class="hawkmoon-roll">Attribut : {{attr.label}} ({{attr.value}})</li>
|
||||
<li class="hawkmoon-roll">
|
||||
<strong>Attribut</strong> : {{attr.label}} ({{attr.value}})
|
||||
</li>
|
||||
{{#if attr2}}
|
||||
<li>Attribut : {{attr2.label}} ({{attr2.value}})</li>
|
||||
<li><strong>Attribut</strong> : {{attr2.label}} ({{attr2.value}})</li>
|
||||
{{/if}} {{#if competence}}
|
||||
<li>
|
||||
<strong>Compétence</strong> : {{competence.name}}
|
||||
({{competence.system.niveau}})
|
||||
</li>
|
||||
{{/if}} {{#if selectedMaitrise}}
|
||||
<li><strong>Maitrise</strong> : {{selectedMaitrise.name}}</li>
|
||||
{{/if}} {{#if arme}}
|
||||
<li>
|
||||
<strong>Arme</strong> : {{arme.name}} (+{{arme.system.bonusmaniementoff}})
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if competence}}
|
||||
<li>Compétence : {{competence.name}} ({{competence.system.niveau}})</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if selectedMaitrise}}
|
||||
<li>Maitrise : {{selectedMaitrise.name}}</li>
|
||||
{{/if}}
|
||||
|
||||
|
||||
{{#if arme}}
|
||||
<li>Arme : {{arme.name}} (+{{arme.system.bonusmaniementoff}})</li>
|
||||
{{/if}}
|
||||
|
||||
<li>Formule : {{diceFormula}}</li>
|
||||
<li>Résultat du dé : {{diceResult}}</li>
|
||||
<li><strong>Formule</strong> : {{diceFormula}}</li>
|
||||
<li><strong>Résultat du dé</strong> : {{diceResult}}</li>
|
||||
|
||||
{{#if bonusRoll}}
|
||||
<li>{{textBonus}} : +{{bonusRoll.total}}</li>
|
||||
{{/if}}
|
||||
|
||||
<li>Total : {{finalResult}}</li>
|
||||
<li><strong>Total</strong> : {{finalResult}}</li>
|
||||
|
||||
{{#if attaqueCharge}}
|
||||
<li>Vous avez chargé : vos adversaires bénéficient de +3 pour vous attaquer</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if difficulte}}
|
||||
<li>SD : {{difficulte}}</li>
|
||||
|
||||
{{#if isSuccess}}
|
||||
<li class="chat-success">Succés...
|
||||
</li>
|
||||
{{#if attaqueDesarme}}
|
||||
<li>Vous désarmez votre adversaire ! Son arme tombe hors de sa portée.</li>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<li class="chat-failure">Echec...</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if isHeroique}}
|
||||
<li class="chat-success">Héroïque !!!</li>
|
||||
{{#if attaqueDesarme}}
|
||||
<li>... Et en plus vous récupérez l'arme de votre adversaire dans votre main (si vous le souhaitez) !.</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if isDramatique}}
|
||||
<li class="chat-failure">Dramatique !!!</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if isInit}}
|
||||
<li>Initiative stockée ! </li>
|
||||
{{/if}}
|
||||
|
||||
{{#if isSuccess}}
|
||||
|
||||
{{#if immobiliser}}
|
||||
{{#if isHeroique}}
|
||||
<li>Votre cible est immobilisée, et vous pouvez faire une action complexe.</li>
|
||||
{{else}}
|
||||
<li>Votre cible est immobilisée.</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if desengager}}
|
||||
{{#if isSuccess}}
|
||||
<li>Vous vous désengagez de votre adversaire.</li>
|
||||
{{else}}
|
||||
<li>Vous ne parvenez pas à vous désengager de votre adversaire, il a un bonus de +3 pour vous attaquer</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if repousser}}
|
||||
{{#if isHeroique}}
|
||||
<li>Votre cible est repoussée de 3 mètres et tombe au sol.</li>
|
||||
{{else}}
|
||||
<li>Votre cible tombe au sol.</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if assomer}}
|
||||
{{#if isHeroique}}
|
||||
<li>Votre cible est assomée pour [[/r 1d10+10]] minutes.</li>
|
||||
{{else}}
|
||||
<li>Votre cible est assomée pour [[/r 1d10]] minutes.</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if coupBas}}
|
||||
<li>La cible a reçu 2 adversités bleues et a perdu 1 niveau de combativité (auto).</li>
|
||||
{{#if isHeroique}}
|
||||
<li>Et votre cible perd sa prochaine action complexe.</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#if arme}}
|
||||
{{#if contenir}}
|
||||
{{#if isHeroique}}
|
||||
<li>Aucun dégât, mais tous les adversaires dont le Seuil de Défense + 10 est atteint ou dépassé par le résultat de la manœuvre ne peuvent déclarer d’attaque contre le personnage lors de leur prochaine action complexe (à ce tour de jeu ou au suivant).</li>
|
||||
{{else}}
|
||||
<li>Aucun dégât, mais la cible de cette manœuvre ne peut pas déclarer d’attaque contre vous lors de sa prochaine action complexe (à ce tour de jeu ou au suivant).</li>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if (eq nbCombativitePerdu "vaincu")}}
|
||||
<li>Votre adversaire est vaincu !</li>
|
||||
{{else}}
|
||||
<li>Votre adversaire a perdu {{nbCombativitePerdu}} Etat de Combativité (auto)</li>
|
||||
{{#if (not arme.system.onlevelonly)}}
|
||||
<button class="chat-card-button roll-chat-degat">Dégats de l'arme</button>
|
||||
{{#if coupDevastateur}}
|
||||
<button class="chat-card-button roll-chat-degat-devastateur">Dégats de l'arme avec Coup Dévastateur</button>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
|
||||
{{#each predilections as |pred key|}}
|
||||
<li>
|
||||
{{#if (and (and pred.acquise (not pred.maitrise)) (not pred.used))}}
|
||||
<button class="chat-card-button predilection-reroll" data-predilection-index="{{key}}">Predilection :
|
||||
{{pred.name}}
|
||||
</button>
|
||||
{{/if}}
|
||||
Vous avez chargé : vos adversaires bénéficient de +3 pour vous attaquer
|
||||
</li>
|
||||
{{/if}} {{#if difficulte}}
|
||||
<li><strong>SD</strong> : {{difficulte}}</li>
|
||||
|
||||
{{#if isSuccess}}
|
||||
<li class="chat-success">Succés...</li>
|
||||
{{#if attaqueDesarme}}
|
||||
<li>Vous désarmez votre adversaire ! Son arme tombe hors de sa portée.</li>
|
||||
{{/if}} {{else}}
|
||||
<li class="chat-failure">Echec...</li>
|
||||
{{/if}} {{/if}} {{#if isHeroique}}
|
||||
<li class="chat-success">Héroïque !!!</li>
|
||||
{{#if attaqueDesarme}}
|
||||
<li>
|
||||
... Et en plus vous récupérez l'arme de votre adversaire dans votre main
|
||||
(si vous le souhaitez) !.
|
||||
</li>
|
||||
{{/if}} {{/if}} {{#if isDramatique}}
|
||||
<li class="chat-failure">Dramatique !!!</li>
|
||||
{{/if}} {{#if isInit}}
|
||||
<li>Initiative stockée !</li>
|
||||
{{/if}} {{#if isSuccess}} {{#if immobiliser}} {{#if isHeroique}}
|
||||
<li>
|
||||
Votre cible est immobilisée, et vous pouvez faire une action complexe.
|
||||
</li>
|
||||
{{else}}
|
||||
<li>Votre cible est immobilisée.</li>
|
||||
{{/if}} {{/if}} {{#if desengager}} {{#if isSuccess}}
|
||||
<li>Vous vous désengagez de votre adversaire.</li>
|
||||
{{else}}
|
||||
<li>
|
||||
Vous ne parvenez pas à vous désengager de votre adversaire, il a un bonus
|
||||
de +3 pour vous attaquer
|
||||
</li>
|
||||
{{/if}} {{/if}} {{#if repousser}} {{#if isHeroique}}
|
||||
<li>Votre cible est repoussée de 3 mètres et tombe au sol.</li>
|
||||
{{else}}
|
||||
<li>Votre cible tombe au sol.</li>
|
||||
{{/if}} {{/if}} {{#if assomer}} {{#if isHeroique}}
|
||||
<li>Votre cible est assomée pour [[/r 1d10+10]] minutes.</li>
|
||||
{{else}}
|
||||
<li>Votre cible est assomée pour [[/r 1d10]] minutes.</li>
|
||||
{{/if}} {{/if}} {{#if coupBas}}
|
||||
<li>
|
||||
La cible a reçu 2 adversités bleues et a perdu 1 niveau de combativité
|
||||
(auto).
|
||||
</li>
|
||||
{{#if isHeroique}}
|
||||
<li>Et votre cible perd sa prochaine action complexe.</li>
|
||||
{{/if}} {{/if}} {{#if arme}} {{#if contenir}} {{#if isHeroique}}
|
||||
<li>
|
||||
Aucun dégât, mais tous les adversaires dont le Seuil de Défense + 10 est
|
||||
atteint ou dépassé par le résultat de la manœuvre ne peuvent déclarer
|
||||
d’attaque contre le personnage lors de leur prochaine action complexe (à
|
||||
ce tour de jeu ou au suivant).
|
||||
</li>
|
||||
{{else}}
|
||||
<li>
|
||||
Aucun dégât, mais la cible de cette manœuvre ne peut pas déclarer
|
||||
d’attaque contre vous lors de sa prochaine action complexe (à ce tour de
|
||||
jeu ou au suivant).
|
||||
</li>
|
||||
{{/if}} {{else}} {{#if (eq nbCombativitePerdu "vaincu")}}
|
||||
<li>Votre adversaire est vaincu !</li>
|
||||
{{else}}
|
||||
<li>
|
||||
Votre adversaire a perdu {{nbCombativitePerdu}} Etat de Combativité (auto)
|
||||
</li>
|
||||
{{#if (not arme.system.onlevelonly)}}
|
||||
<button class="chat-card-button roll-chat-degat">Dégats de l'arme</button>
|
||||
{{#if coupDevastateur}}
|
||||
<button class="chat-card-button roll-chat-degat-devastateur">
|
||||
Dégats de l'arme avec Coup Dévastateur
|
||||
</button>
|
||||
{{/if}} {{/if}} {{/if}} {{/if}} {{/if}} {{/if}} {{#each predilections as
|
||||
|pred key|}}
|
||||
<li>
|
||||
{{#if (and (and pred.acquise (not pred.maitrise)) (not pred.used))}}
|
||||
<button
|
||||
class="chat-card-button predilection-reroll"
|
||||
data-predilection-index="{{key}}"
|
||||
>
|
||||
Predilection : {{pred.name}}
|
||||
</button>
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,93 +1,183 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html}}
|
||||
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html}}
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html}} {{!-- Sheet Body
|
||||
--}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-description.html}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Type d'arme : </label>
|
||||
<select class="item-field-label-long" type="text" name="system.typearme"
|
||||
value="{{system.typearme}}" data-dtype="string">
|
||||
{{selectOptions config.optionsTypeArme selected=system.typearme valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Arme naturelle ? </label>
|
||||
<input type="checkbox" name="system.armenaturelle" {{checked system.armenaturelle}} />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Arme de fortune ? </label>
|
||||
<input type="checkbox" name="system.armefortune" {{checked system.armefortune}} />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Bonus offensif : </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.bonusmaniementoff"
|
||||
value="{{system.bonusmaniementoff}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Seuil de Défense : </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.seuildefense"
|
||||
value="{{system.seuildefense}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">1 niveau de Combativité au maximum ? </label>
|
||||
<input type="checkbox" name="system.onlevelonly" {{checked system.onlevelonly}} />
|
||||
</li>
|
||||
{{#if system.onlevelonly}}
|
||||
{{else}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Dégâts : </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.degats"
|
||||
value="{{system.degats}}" data-dtype="String" />
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Type d'arme :
|
||||
</label>
|
||||
<select
|
||||
class="item-field-label-long1"
|
||||
type="text"
|
||||
name="system.typearme"
|
||||
value="{{system.typearme}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.optionsTypeArme selected=system.typearme
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
>Arme naturelle ?
|
||||
</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="system.armenaturelle"
|
||||
{{checked
|
||||
system.armenaturelle}}
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
>Arme de fortune ?
|
||||
</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="system.armefortune"
|
||||
{{checked
|
||||
system.armefortune}}
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Bonus offensif :
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.bonusmaniementoff"
|
||||
value="{{system.bonusmaniementoff}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Seuil de Défense :
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.seuildefense"
|
||||
value="{{system.seuildefense}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
>1 niveau de Combativité au maximum ?
|
||||
</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="system.onlevelonly"
|
||||
{{checked
|
||||
system.onlevelonly}}
|
||||
/>
|
||||
</li>
|
||||
{{#if system.onlevelonly}} {{else}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Dégâts : </label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.degats"
|
||||
value="{{system.degats}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
{{/if}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>A deux mains ?
|
||||
</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="system.deuxmains"
|
||||
{{checked
|
||||
system.deuxmains}}
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Perce Armure ?
|
||||
</label>
|
||||
<input
|
||||
type="checkbox"
|
||||
name="system.percearmure"
|
||||
{{checked
|
||||
system.percearmure}}
|
||||
/>
|
||||
</li>
|
||||
{{#if system.percearmure}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
>Valeur de Perce Armure :
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.percearmurevalue"
|
||||
value="{{system.percearmurevalue}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
{{/if}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Portée courte
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.courte"
|
||||
value="{{system.courte}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Portée moyenne
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.moyenne"
|
||||
value="{{system.moyenne}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long"
|
||||
>Portée longue
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.longue"
|
||||
value="{{system.longue}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
>Temps de rechargement
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right numeric-input item-field-label-short"
|
||||
name="system.tr"
|
||||
value="{{system.tr}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
{{/if}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">A deux mains ? </label>
|
||||
<input type="checkbox" name="system.deuxmains" {{checked system.deuxmains}} />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Perce Armure ? </label>
|
||||
<input type="checkbox" name="system.percearmure" {{checked system.percearmure}} />
|
||||
</li>
|
||||
{{#if system.percearmure}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Valeur de Perce Armure : </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.percearmurevalue"
|
||||
value="{{system.percearmurevalue}}" data-dtype="Number" />
|
||||
</li>
|
||||
{{/if}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Portée courte </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.courte"
|
||||
value="{{system.courte}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Portée moyenne </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.moyenne"
|
||||
value="{{system.moyenne}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Portée longue </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.longue"
|
||||
value="{{system.longue}}" data-dtype="Number" />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Temps de rechargement </label>
|
||||
<input type="text" class="padd-right numeric-input item-field-label-short" name="system.tr" value="{{system.tr}}"
|
||||
data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-prix.html}}
|
||||
{{> systems/fvtt-hawkmoon-cyd/templates/partial-item-prix.html}}
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
@@ -1,23 +1,36 @@
|
||||
<li class="item flexrow list-item list-item-shadow" data-item-id="{{equip._id}}">
|
||||
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img" src="{{equip.img}}" /></a>
|
||||
<li
|
||||
class="item flexrow list-item list-item-shadow"
|
||||
data-item-id="{{equip._id}}"
|
||||
>
|
||||
<a class="item-edit item-name-img" title="Edit Item"
|
||||
><img class="sheet-competence-img" src="{{equip.img}}"
|
||||
/></a>
|
||||
{{#if (eq level 1)}}
|
||||
<span class="item-name-label">{{equip.name}}</span>
|
||||
{{else}}
|
||||
<span class="item-name-label-level2">{{equip.name}}</span>
|
||||
{{/if}}
|
||||
|
||||
<span class="item-field-label-long"><label>
|
||||
{{equip.system.quantity}}
|
||||
(<a class="quantity-minus plus-minus-button"> -</a>/<a class="quantity-plus plus-minus-button">+</a>)
|
||||
</label>
|
||||
</span>
|
||||
|
||||
<span class="item-field-label-long"
|
||||
><label>
|
||||
{{equip.system.quantity}} (<a class="quantity-minus plus-minus-button">
|
||||
-</a
|
||||
>/<a class="quantity-plus plus-minus-button">+</a>)
|
||||
</label>
|
||||
</span>
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
{{#if (eq level 1)}}
|
||||
<a class="item-control item-equip" title="Worn">{{#if equip.system.equipped}}<i
|
||||
class="fas fa-circle"></i>{{else}}<i class="fas fa-genderless"></i>{{/if}}</a>
|
||||
<a class="item-control item-equip" title="Worn"
|
||||
>{{#if equip.system.equipped}}<i class="fas fa-circle"></i>{{else}}<i
|
||||
class="fas fa-genderless"
|
||||
></i
|
||||
>{{/if}}</a
|
||||
>
|
||||
{{/if}}
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"
|
||||
><i class="fas fa-trash"></i
|
||||
></a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@@ -3,3 +3,4 @@
|
||||
<a class="item" data-tab="description">Description</a>
|
||||
<a class="item" data-tab="details">Details</a>
|
||||
</nav>
|
||||
<hr />
|
||||
|
||||
@@ -7,234 +7,328 @@
|
||||
</header>
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
<div class="flexrow">
|
||||
{{#if (eq attrKey "tochoose")}}
|
||||
<span class="roll-dialog-label">Attribut</span>
|
||||
<select class="status-small-label color-class-common" id ="attrKey" type="text" name="attrKey" value="attrKey" data-dtype="string" >
|
||||
{{selectOptions attributs selected=attrKey}}
|
||||
</select>
|
||||
<span class="roll-dialog-label"><strong>Attribut</strong></span>
|
||||
<select
|
||||
class="status-small-label color-class-common"
|
||||
id="attrKey"
|
||||
type="text"
|
||||
name="attrKey"
|
||||
value="attrKey"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions attributs selected=attrKey}}
|
||||
</select>
|
||||
{{else}}
|
||||
<span class="roll-dialog-label">{{attr.label}}</span>
|
||||
<span class="small-label roll-dialog-label">{{attr.value}}</span>
|
||||
<span class="roll-dialog-label"><strong>{{attr.label}}</strong></span>
|
||||
<span class="small-label roll-dialog-label">{{attr.value}}</span>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
{{#if nbAdversites}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Malus d'adversités </span>
|
||||
<span class="roll-dialog-label"><strong>Malus d'adversités</strong></span>
|
||||
<span class="small-label roll-dialog-label">- {{nbAdversites}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if competence}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">{{competence.name}}</span>
|
||||
<span class="small-label roll-dialog-label">{{competence.system.niveau}}</span>
|
||||
</div>
|
||||
{{#if maitrises}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Utiliser une maîtrise</span>
|
||||
<select class="status-small-label color-class-common" id ="select-maitrise" type="text" name="select-maitrise" value="maitriseId" data-dtype="string" >
|
||||
{{selectOptions maitrises selected=maitriseId valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Second Attribut</span>
|
||||
<select class="status-small-label color-class-common" id ="attrKey2" type="text" name="attrKey2" value="attrKey2" data-dtype="string" >
|
||||
{{#select attrKey2}}
|
||||
<option value="none">Aucun</option>
|
||||
{{#each attributs as |attrLabel attrKey|}}
|
||||
<option value="{{attrKey}}">{{attrLabel}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if (count talents)}}
|
||||
{{/if}} {{#if competence}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Talents </span>
|
||||
<select class="flex1" name="competence-talents" id="competence-talents" data-type="String" multiple>
|
||||
<span class="roll-dialog-label"><strong>{{competence.name}}</strong></span>
|
||||
<span class="small-label roll-dialog-label"><strong>{{competence.system.niveau}}</strong></span>
|
||||
</div>
|
||||
{{#if maitrises}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"><strong>Maîtrise</strong></span>
|
||||
<select
|
||||
class="status-small-label color-class-common"
|
||||
id="select-maitrise"
|
||||
type="text"
|
||||
name="select-maitrise"
|
||||
value="maitriseId"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions maitrises selected=maitriseId valueAttr="key"
|
||||
nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}} {{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"><strong>Second Attribut</strong></span>
|
||||
<select
|
||||
class="status-small-label color-class-common"
|
||||
id="attrKey2"
|
||||
type="text"
|
||||
name="attrKey2"
|
||||
value="attrKey2"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{#select attrKey2}}
|
||||
<option value="none">Aucun</option>
|
||||
{{#each attributs as |attrLabel attrKey|}}
|
||||
<option value="{{attrKey}}">{{attrLabel}}</option>
|
||||
{{/each}} {{/select}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}} {{#if (count talents)}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"><strong></strong>Talents</strong></span>
|
||||
<select
|
||||
class="flex1"
|
||||
name="competence-talents"
|
||||
id="competence-talents"
|
||||
data-type="String"
|
||||
multiple
|
||||
>
|
||||
{{#each talents as |talent key|}}
|
||||
<option value="{{talent._id}}">{{talent.name}}</option>
|
||||
<option value="{{talent._id}}">{{talent.name}}</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}} {{#if conditionsCommunes}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">En surplomb, défenseur au sol (+3)?</span>
|
||||
<input type="checkbox" id="defenseur-au-sol" {{checked defenseurAuSol}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur aveuglé (+10)?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="defenseur-aveugle"
|
||||
{{checked
|
||||
defenseurAveugle}}
|
||||
/>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur de dos (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-de-dos" {{checked defenseurDeDos}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur immobilisé (+5)?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="defenseur-immobilise"
|
||||
{{checked
|
||||
defenseurImmobilise}}
|
||||
/>
|
||||
</div>
|
||||
{{/if}} {{#if (or immobiliser repousser)}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible consciente?</span>
|
||||
<input type="checkbox" id="cibleconsciente" {{checked cibleconsciente}} />
|
||||
</div>
|
||||
{{/if}} {{#if arme}} {{#if arme.system.isMelee}} {{#if bonusArmeNaturelle}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Arme naturelle/fortune en défense</span>
|
||||
<span class="small-label roll-dialog-label">{{bonusArmeNaturelle}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if conditionsCommunes}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">En surplomb, défenseur au sol (+3)?</span>
|
||||
<input type="checkbox" id="defenseur-au-sol" {{checked defenseurAuSol}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur aveuglé (+10)?</span>
|
||||
<input type="checkbox" id="defenseur-aveugle" {{checked defenseurAveugle}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur de dos (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-de-dos" {{checked defenseurDeDos}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur immobilisé (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-immobilise" {{checked defenseurImmobilise}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if (or immobiliser repousser)}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible consciente?</span>
|
||||
<input type="checkbox" id="cibleconsciente" {{checked cibleconsciente}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if arme}}
|
||||
{{#if arme.system.isMelee}}
|
||||
{{#if bonusArmeNaturelle}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Arme naturelle/fortune en défense</span>
|
||||
<span class="small-label roll-dialog-label">{{bonusArmeNaturelle}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">En surplomb, défenseur au sol (+3)?</span>
|
||||
<input type="checkbox" id="defenseur-au-sol" {{checked defenseurAuSol}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Attaquants multiples (après le premier) (+3)?</span>
|
||||
<input type="checkbox" id="attaquants-multiple" {{checked attaquantsMultiples}} />
|
||||
</div>
|
||||
{{#if hasAmbidextre}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Première attaque avec deux armes (-3)?</span>
|
||||
<input type="checkbox" id="ambidextre-1" {{checked attaqueAmbidextre1}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Seconde attaque avec deux armes (-6)?</span>
|
||||
<input type="checkbox" id="ambidextre-2" {{checked attaqueAmbidextre2}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#if hasFeinte}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Feinte (<strong>cout : 1 BA</strong>) ?</span>
|
||||
<input type="checkbox" id="feinte" {{checked feinte}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Soutiens </span>
|
||||
<select class="status-small-label color-class-common" name="soutiens" id="soutiens" data-type="Number">
|
||||
{{selectOptions config.optionsSoutiens selected=soutiens valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur aveuglé (+10)?</span>
|
||||
<input type="checkbox" id="defenseur-aveugle" {{checked defenseurAveugle}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur de dos (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-de-dos" {{checked defenseurDeDos}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur dans espace restreint (+3)?</span>
|
||||
<input type="checkbox" id="defenseur-restreint" {{checked defenseurRestreint}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur immobilisé (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-immobilise" {{checked defenseurImmobilise}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Charge ?</span>
|
||||
<input type="checkbox" id="attaque-charge" {{checked attaqueCharge}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Contenir?</span>
|
||||
<input type="checkbox" id="contenir" {{checked contenir}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Désarmer (SD+10)?</span>
|
||||
<input type="checkbox" id="attaque-desarme" {{checked attaqueDesarme}} />
|
||||
</div>
|
||||
{{#if isMonte}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Charge de cavalerie?</span>
|
||||
<input type="checkbox" id="charge-cavalerie" {{checked chargeCavalerie}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Tireur en déplacement ?</span>
|
||||
<select class="item-field-label-long" type="text" id="tireur-deplacement" data-dtype="string">
|
||||
{{selectOptions config.optionsTireurDeplacement selected=tireurDeplacement valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Couvert de la cible ?</span>
|
||||
<select class="item-field-label-long" type="text" id="cible-couvert" data-dtype="string">
|
||||
{{selectOptions config.optionsCouvert selected=cibleCouvert valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible se déplace vite (SD+3)?</span>
|
||||
<input type="checkbox" id="tireur-cible-deplace" {{checked cibleDeplace}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible corps à corps (SD+3)?</span>
|
||||
<input type="checkbox" id="tireur-cible-cac" {{checked cibleCaC}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Taille de la cible ?</span>
|
||||
<select class="item-field-label-long" type="text" id="taille-cible" data-dtype="string">
|
||||
{{selectOptions config.optionsTailleCible selected=tailleCible valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">En surplomb, défenseur au sol (+3)?</span>
|
||||
<input type="checkbox" id="defenseur-au-sol" {{checked defenseurAuSol}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"
|
||||
>Attaquants multiples (après le premier) (+3)?</span
|
||||
>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="attaquants-multiple"
|
||||
{{checked
|
||||
attaquantsMultiples}}
|
||||
/>
|
||||
</div>
|
||||
{{#if hasAmbidextre}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"
|
||||
>Première attaque avec deux armes (-3)?</span
|
||||
>
|
||||
<input type="checkbox" id="ambidextre-1" {{checked attaqueAmbidextre1}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"
|
||||
>Seconde attaque avec deux armes (-6)?</span
|
||||
>
|
||||
<input type="checkbox" id="ambidextre-2" {{checked attaqueAmbidextre2}} />
|
||||
</div>
|
||||
{{/if}} {{#if hasFeinte}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"
|
||||
>Feinte (<strong>cout : 1 BA</strong>) ?</span
|
||||
>
|
||||
<input type="checkbox" id="feinte" {{checked feinte}} />
|
||||
</div>
|
||||
{{/if}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"><strong></strong>Soutiens</strong></span>
|
||||
<select
|
||||
class="status-small-label color-class-common"
|
||||
name="soutiens"
|
||||
id="soutiens"
|
||||
data-type="Number"
|
||||
>
|
||||
{{selectOptions config.optionsSoutiens selected=soutiens valueAttr="key"
|
||||
nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur aveuglé (+10)?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="defenseur-aveugle"
|
||||
{{checked
|
||||
defenseurAveugle}}
|
||||
/>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur de dos (+5)?</span>
|
||||
<input type="checkbox" id="defenseur-de-dos" {{checked defenseurDeDos}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label"
|
||||
>Défenseur dans espace restreint (+3)?</span
|
||||
>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="defenseur-restreint"
|
||||
{{checked
|
||||
defenseurRestreint}}
|
||||
/>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Défenseur immobilisé (+5)?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="defenseur-immobilise"
|
||||
{{checked
|
||||
defenseurImmobilise}}
|
||||
/>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Charge ?</span>
|
||||
<input type="checkbox" id="attaque-charge" {{checked attaqueCharge}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Contenir?</span>
|
||||
<input type="checkbox" id="contenir" {{checked contenir}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Désarmer (SD+10)?</span>
|
||||
<input type="checkbox" id="attaque-desarme" {{checked attaqueDesarme}} />
|
||||
</div>
|
||||
{{#if isMonte}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Charge de cavalerie?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="charge-cavalerie"
|
||||
{{checked
|
||||
chargeCavalerie}}
|
||||
/>
|
||||
</div>
|
||||
{{/if}} {{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Tireur en déplacement ?</span>
|
||||
<select
|
||||
class="item-field-label-long"
|
||||
type="text"
|
||||
id="tireur-deplacement"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.optionsTireurDeplacement
|
||||
selected=tireurDeplacement valueAttr="key" nameAttr="key"
|
||||
labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Couvert de la cible ?</span>
|
||||
<select
|
||||
class="item-field-label-long"
|
||||
type="text"
|
||||
id="cible-couvert"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.optionsCouvert selected=cibleCouvert
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible se déplace vite (SD+3)?</span>
|
||||
<input
|
||||
type="checkbox"
|
||||
id="tireur-cible-deplace"
|
||||
{{checked
|
||||
cibleDeplace}}
|
||||
/>
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Cible corps à corps (SD+3)?</span>
|
||||
<input type="checkbox" id="tireur-cible-cac" {{checked cibleCaC}} />
|
||||
</div>
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Taille de la cible ?</span>
|
||||
<select
|
||||
class="item-field-label-long"
|
||||
type="text"
|
||||
id="taille-cible"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.optionsTailleCible selected=tailleCible
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}} {{/if}}
|
||||
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Bonus/Malus </span>
|
||||
<select class="roll-dialog-label" id="bonus-malus-context" type="text" value="{{bonusMalusContext}}"
|
||||
data-dtype="Number">
|
||||
{{selectOptions config.optionsBonusMalus selected=bonusMalusContext valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
<select
|
||||
class="roll-dialog-label"
|
||||
id="bonus-malus-context"
|
||||
type="text"
|
||||
value="{{bonusMalusContext}}"
|
||||
data-dtype="Number"
|
||||
>
|
||||
{{selectOptions config.optionsBonusMalus selected=bonusMalusContext
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
{{#if (or armeDefense arme.system.isDistance)}}
|
||||
|
||||
{{#if arme.system.isDistance}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">SD de distance</span>
|
||||
<select class="item-field-label-long" type="text" id="distance-tir" data-dtype="string">
|
||||
{{selectOptions config.optionsDistanceTir selected=distanceTir valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="flexrow">
|
||||
{{#if desengager}}
|
||||
<span class="roll-dialog-label">C. Offensive adversaire </span>
|
||||
{{else}}
|
||||
<span class="roll-dialog-label">C. Défensive adversaire</span>
|
||||
{{/if}}
|
||||
<span class="roll-dialog-label"><strong>{{difficulte}}</strong> </span>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if (or armeDefense arme.system.isDistance)}} {{#if
|
||||
arme.system.isDistance}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">SD de distance</span>
|
||||
<select
|
||||
class="item-field-label-long"
|
||||
type="text"
|
||||
id="distance-tir"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.optionsDistanceTir selected=distanceTir
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{else}}
|
||||
|
||||
{{#if isInit}}
|
||||
|
||||
<div class="flexrow">
|
||||
{{#if desengager}}
|
||||
<span class="roll-dialog-label">C. Offensive adversaire </span>
|
||||
{{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Difficulté : </span>
|
||||
<select class="roll-dialog-label" id="difficulte" type="text" name="difficulte" data-dtype="String">
|
||||
{{selectOptions config.optionsDifficulte selected=difficulte valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
<span class="roll-dialog-label">C. Défensive adversaire</span>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
<span class="roll-dialog-label"><strong>{{difficulte}}</strong> </span>
|
||||
</div>
|
||||
{{/if}} {{else}} {{#if isInit}} {{else}}
|
||||
<div class="flexrow">
|
||||
<span class="roll-dialog-label">Difficulté : </span>
|
||||
<select
|
||||
class="roll-dialog-label"
|
||||
id="difficulte"
|
||||
type="text"
|
||||
name="difficulte"
|
||||
data-dtype="String"
|
||||
>
|
||||
{{selectOptions config.optionsDifficulte selected=difficulte
|
||||
valueAttr="key" nameAttr="key" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}} {{/if}}
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user