8 Commits

Author SHA1 Message Date
a30f813d94 Fix genre 2025-03-10 16:56:25 +01:00
090f6be601 Fix genre 2025-03-10 16:56:10 +01:00
60db1f65e4 Prit fix sur equipement et armes d'hast 2025-03-10 15:52:37 +01:00
d532765d2b Correction sur creation PNJ
All checks were successful
Release Creation / build (release) Successful in 2m0s
2025-03-01 22:01:01 +01:00
b6016742ae Enable PNJ 2025-03-01 19:42:15 +01:00
761f95d6d9 Ajout comp libres
All checks were successful
Release Creation / build (release) Successful in 44s
2025-02-25 22:29:05 +01:00
c24f4fe502 Ajout comp libres
All checks were successful
Release Creation / build (release) Successful in 1m13s
2025-02-25 21:29:52 +01:00
caedcf5e21 Update release 2025-02-24 19:53:03 +01:00
58 changed files with 197 additions and 144 deletions

View File

@ -1,4 +1,4 @@
# Système Foundry pour Te Deum pour un massacre (French RPG, Open Sesam Games, Official)
# Système Foundry pour Te Deum pour un Massacre (French RPG, Open Sesame Games, Official)
This is a base game system with functionnal character sheets for the game Te Deum pour un massacre.

View File

@ -0,0 +1,11 @@
# 12.0.21
- Creation de PNJ OK
# 12.0.20
- Corrections sur la création de perso
# 12.0.19
- Initial release !

View File

@ -56,6 +56,7 @@ export class TeDeumActorPJSheet extends ActorSheet {
santeModifier: this.actor.getSanteModifier(),
educations: this.actor.getEducations(),
description: await TextEditor.enrichHTML(this.object.system.description, { async: true }),
equipmentfree: await TextEditor.enrichHTML(this.object.system.equipmentfree, { async: true }),
notes: await TextEditor.enrichHTML(this.object.system.notes, { async: true }),
histoire: await TextEditor.enrichHTML(this.object.system.histoire, { async: true }),
options: this.options,

View File

@ -34,7 +34,7 @@ export class TeDeumActor extends Actor {
return actor;
}
if (data.type == 'pj') {
if (data.type == 'pj' || data.type == 'pnj') {
const skills = await TeDeumUtility.loadCompendium("fvtt-te-deum.competences")
data.items = data.items || []
for (let skill of skills) {
@ -64,6 +64,14 @@ export class TeDeumActor extends Actor {
super._preUpdate(changed, options, user);
}
getCompetenceScore(compName) {
let competence = this.items.find(item => item.type == "competence" && item.name.toLowerCase() == compName.toLowerCase())
if (competence) {
return competence.system.score
}
return 0
}
/* -------------------------------------------- */
_onUpdate(changed, options, userId) {
@ -622,7 +630,8 @@ export class TeDeumActor extends Actor {
// Setup competence + carac
if (!compName) {
compName = weapon.system.competence
let compIdx = weapon.system.competence
compName = game.system.tedeum.config.armeCompetences[compIdx]?.label
}
let competence = this.items.find(item => item.type == "competence" && item.name.toLowerCase() == compName.toLowerCase())
if (competence) {

View File

@ -581,9 +581,17 @@ export class TeDeumCharacterCreator {
histoire += `<p>${reponse.question}<br>${reponse.reponse} (${reponse.compName})</p>`
}
await actor.update({ "system.histoire": histoire})
actor.render(true)
context.pointsCompetence = {
"savoir": { score: actor.getCompetenceScore("Mémoriser"), label: "Savoir" },
"sensibilite": { score: actor.getCompetenceScore("Perception"), label: "Sensibilité" },
"entregent": { score: actor.getCompetenceScore("Charme"), label: "Entregent" },
"puissance": { score: actor.getCompetenceScore("Effort"), label: "Puissance" },
"complexion": { score: actor.getCompetenceScore("Endurance"), label: "Complexion" },
"adresse": { score: actor.getCompetenceScore("Initiative"), label: "Adresse" },
}
const content = await renderTemplate("systems/fvtt-te-deum/templates/dialogs/character-creator-finished.hbs", context)
const label = "Terminer"
const choiceResult = await foundry.applications.api.DialogV2.wait({

View File

@ -5,7 +5,7 @@ export class TeDeumCombat extends Combat {
/* -------------------------------------------- */
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
console.log("Roll INIT !")
//console.log("Roll INIT !")
ids = typeof ids === "string" ? [ids] : ids;
for (let cId of ids) {
const c = this.combatants.get(cId);

View File

@ -117,6 +117,11 @@ export const TEDEUM_CONFIG = {
melee: { label: "Mêlée", value: "melee" },
tir: { label: "Tir", value: "tir" }
},
genreEducation: {
"homme": { label: "Homme", value: "homme" },
"femme": { label: "Femme", value: "femme" },
"mixte": { label: "Mixte", value: "mixte" }
},
armeAllonges: {
courte: { label: "Courte", value: "courte" },
moyenne: { label: "Moyenne", value: "moyenne" },

View File

@ -141,6 +141,7 @@ export class TeDeumUtility {
/*-------------------------------------------- */
static prepareEducationContent(formData) {
console.log("Etape:", formData.system.etape)
let etape = game.system.tedeum.config.etapesEducation[formData.system.etape]
let nbCompetences = etape.nbCompetences
for (let key in formData.system.competences) {

View File

@ -15,6 +15,8 @@ export class TeDeumEducationSchema extends foundry.abstract.TypeDataModel {
}, {})
);
schema.genre = new fields.StringField({required: true, initial: "masculin", choices: ["masculin", "feminin", "mixte"]});
schema.nbChoixCarac = new fields.NumberField({ ...requiredInteger, initial: 1, min: 1 });
schema.caracteristiques = new fields.SchemaField(Array.fromRange(3, 1).reduce((caracs, i) => {
caracs[`carac${i}`] = new fields.SchemaField({

View File

@ -1 +1 @@
MANIFEST-000023
MANIFEST-000039

View File

@ -1,8 +1,8 @@
2025/02/22-22:33:49.671443 7f59317fa6c0 Recovering log #21
2025/02/22-22:33:49.682157 7f59317fa6c0 Delete type=3 #19
2025/02/22-22:33:49.682211 7f59317fa6c0 Delete type=0 #21
2025/02/22-22:43:19.821691 7f5693fff6c0 Level-0 table #26: started
2025/02/22-22:43:19.821739 7f5693fff6c0 Level-0 table #26: 0 bytes OK
2025/02/22-22:43:19.827819 7f5693fff6c0 Delete type=0 #24
2025/02/22-22:43:19.828050 7f5693fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/02/22-22:43:19.841442 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.555874 7fe59dffb6c0 Recovering log #37
2025/03/01-19:40:45.565732 7fe59dffb6c0 Delete type=3 #35
2025/03/01-19:40:45.565785 7fe59dffb6c0 Delete type=0 #37
2025/03/01-19:41:57.321763 7fe59d7fa6c0 Level-0 table #42: started
2025/03/01-19:41:57.321801 7fe59d7fa6c0 Level-0 table #42: 0 bytes OK
2025/03/01-19:41:57.328249 7fe59d7fa6c0 Delete type=0 #40
2025/03/01-19:41:57.328418 7fe59d7fa6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/03/01-19:41:57.328438 7fe59d7fa6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2025/02/21-17:44:00.297169 7f5931ffb6c0 Recovering log #16
2025/02/21-17:44:00.350341 7f5931ffb6c0 Delete type=3 #14
2025/02/21-17:44:00.350497 7f5931ffb6c0 Delete type=0 #16
2025/02/21-17:47:55.710312 7f5693fff6c0 Level-0 table #22: started
2025/02/21-17:47:55.710349 7f5693fff6c0 Level-0 table #22: 0 bytes OK
2025/02/21-17:47:55.716766 7f5693fff6c0 Delete type=0 #20
2025/02/21-17:47:55.743124 7f5693fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/02/21-17:47:55.743202 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.154413 7fe59e7fc6c0 Recovering log #33
2025/03/01-19:35:57.165621 7fe59e7fc6c0 Delete type=3 #31
2025/03/01-19:35:57.165677 7fe59e7fc6c0 Delete type=0 #33
2025/03/01-19:38:46.090031 7fe59d7fa6c0 Level-0 table #38: started
2025/03/01-19:38:46.090085 7fe59d7fa6c0 Level-0 table #38: 0 bytes OK
2025/03/01-19:38:46.096397 7fe59d7fa6c0 Delete type=0 #36
2025/03/01-19:38:46.113755 7fe59d7fa6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/03/01-19:38:46.113810 7fe59d7fa6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000125
MANIFEST-000141

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.571959 7f5930ff96c0 Recovering log #123
2025/02/22-22:33:49.581451 7f5930ff96c0 Delete type=3 #121
2025/02/22-22:33:49.581507 7f5930ff96c0 Delete type=0 #123
2025/02/22-22:43:19.756476 7f5693fff6c0 Level-0 table #128: started
2025/02/22-22:43:19.756512 7f5693fff6c0 Level-0 table #128: 0 bytes OK
2025/02/22-22:43:19.763078 7f5693fff6c0 Delete type=0 #126
2025/02/22-22:43:19.770534 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.461315 7fe59effd6c0 Recovering log #139
2025/03/01-19:40:45.471298 7fe59effd6c0 Delete type=3 #137
2025/03/01-19:40:45.471427 7fe59effd6c0 Delete type=0 #139
2025/03/01-19:41:57.262543 7fe59d7fa6c0 Level-0 table #144: started
2025/03/01-19:41:57.262603 7fe59d7fa6c0 Level-0 table #144: 0 bytes OK
2025/03/01-19:41:57.269401 7fe59d7fa6c0 Delete type=0 #142
2025/03/01-19:41:57.269633 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:43:59.860699 7f59317fa6c0 Recovering log #119
2025/02/21-17:43:59.916350 7f59317fa6c0 Delete type=3 #117
2025/02/21-17:43:59.916493 7f59317fa6c0 Delete type=0 #119
2025/02/21-17:47:55.663886 7f5693fff6c0 Level-0 table #124: started
2025/02/21-17:47:55.663923 7f5693fff6c0 Level-0 table #124: 0 bytes OK
2025/02/21-17:47:55.670649 7f5693fff6c0 Delete type=0 #122
2025/02/21-17:47:55.677247 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.054371 7fe59f7fe6c0 Recovering log #135
2025/03/01-19:35:57.064331 7fe59f7fe6c0 Delete type=3 #133
2025/03/01-19:35:57.064442 7fe59f7fe6c0 Delete type=0 #135
2025/03/01-19:38:46.045299 7fe59d7fa6c0 Level-0 table #140: started
2025/03/01-19:38:46.045318 7fe59d7fa6c0 Level-0 table #140: 0 bytes OK
2025/03/01-19:38:46.052039 7fe59d7fa6c0 Delete type=0 #138
2025/03/01-19:38:46.058190 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000125
MANIFEST-000141

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.584858 7f59317fa6c0 Recovering log #123
2025/02/22-22:33:49.595075 7f59317fa6c0 Delete type=3 #121
2025/02/22-22:33:49.595272 7f59317fa6c0 Delete type=0 #123
2025/02/22-22:43:19.749434 7f5693fff6c0 Level-0 table #128: started
2025/02/22-22:43:19.749479 7f5693fff6c0 Level-0 table #128: 0 bytes OK
2025/02/22-22:43:19.756348 7f5693fff6c0 Delete type=0 #126
2025/02/22-22:43:19.770523 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.474414 7fe59dffb6c0 Recovering log #139
2025/03/01-19:40:45.484515 7fe59dffb6c0 Delete type=3 #137
2025/03/01-19:40:45.484615 7fe59dffb6c0 Delete type=0 #139
2025/03/01-19:41:57.244110 7fe59d7fa6c0 Level-0 table #144: started
2025/03/01-19:41:57.244149 7fe59d7fa6c0 Level-0 table #144: 0 bytes OK
2025/03/01-19:41:57.250209 7fe59d7fa6c0 Delete type=0 #142
2025/03/01-19:41:57.269578 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:43:59.921453 7f5931ffb6c0 Recovering log #119
2025/02/21-17:43:59.978668 7f5931ffb6c0 Delete type=3 #117
2025/02/21-17:43:59.978782 7f5931ffb6c0 Delete type=0 #119
2025/02/21-17:47:55.657052 7f5693fff6c0 Level-0 table #124: started
2025/02/21-17:47:55.657095 7f5693fff6c0 Level-0 table #124: 0 bytes OK
2025/02/21-17:47:55.663742 7f5693fff6c0 Delete type=0 #122
2025/02/21-17:47:55.677232 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.068105 7fe59e7fc6c0 Recovering log #135
2025/03/01-19:35:57.078819 7fe59e7fc6c0 Delete type=3 #133
2025/03/01-19:35:57.078913 7fe59e7fc6c0 Delete type=0 #135
2025/03/01-19:38:46.052161 7fe59d7fa6c0 Level-0 table #140: started
2025/03/01-19:38:46.052188 7fe59d7fa6c0 Level-0 table #140: 0 bytes OK
2025/03/01-19:38:46.058075 7fe59d7fa6c0 Delete type=0 #138
2025/03/01-19:38:46.058217 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000122
MANIFEST-000138

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.555798 7f59327fc6c0 Recovering log #120
2025/02/22-22:33:49.566915 7f59327fc6c0 Delete type=3 #118
2025/02/22-22:33:49.567025 7f59327fc6c0 Delete type=0 #120
2025/02/22-22:43:19.763211 7f5693fff6c0 Level-0 table #125: started
2025/02/22-22:43:19.763237 7f5693fff6c0 Level-0 table #125: 0 bytes OK
2025/02/22-22:43:19.770353 7f5693fff6c0 Delete type=0 #123
2025/02/22-22:43:19.770546 7f5693fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.446777 7fe59f7fe6c0 Recovering log #136
2025/03/01-19:40:45.457998 7fe59f7fe6c0 Delete type=3 #134
2025/03/01-19:40:45.458083 7fe59f7fe6c0 Delete type=0 #136
2025/03/01-19:41:57.250328 7fe59d7fa6c0 Level-0 table #141: started
2025/03/01-19:41:57.250355 7fe59d7fa6c0 Level-0 table #141: 0 bytes OK
2025/03/01-19:41:57.256324 7fe59d7fa6c0 Delete type=0 #139
2025/03/01-19:41:57.269599 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:43:59.798767 7f5930ff96c0 Recovering log #116
2025/02/21-17:43:59.855271 7f5930ff96c0 Delete type=3 #114
2025/02/21-17:43:59.855472 7f5930ff96c0 Delete type=0 #116
2025/02/21-17:47:55.650583 7f5693fff6c0 Level-0 table #121: started
2025/02/21-17:47:55.650666 7f5693fff6c0 Level-0 table #121: 0 bytes OK
2025/02/21-17:47:55.656867 7f5693fff6c0 Delete type=0 #119
2025/02/21-17:47:55.677212 7f5693fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.039829 7fe59dffb6c0 Recovering log #132
2025/03/01-19:35:57.049894 7fe59dffb6c0 Delete type=3 #130
2025/03/01-19:35:57.049949 7fe59dffb6c0 Delete type=0 #132
2025/03/01-19:38:46.032600 7fe59d7fa6c0 Level-0 table #137: started
2025/03/01-19:38:46.032653 7fe59d7fa6c0 Level-0 table #137: 0 bytes OK
2025/03/01-19:38:46.038775 7fe59d7fa6c0 Delete type=0 #135
2025/03/01-19:38:46.058171 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000130
MANIFEST-000148

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.598250 7f5931ffb6c0 Recovering log #128
2025/02/22-22:33:49.609114 7f5931ffb6c0 Delete type=3 #126
2025/02/22-22:33:49.609187 7f5931ffb6c0 Delete type=0 #128
2025/02/22-22:43:19.742523 7f5693fff6c0 Level-0 table #133: started
2025/02/22-22:43:19.742609 7f5693fff6c0 Level-0 table #133: 0 bytes OK
2025/02/22-22:43:19.749216 7f5693fff6c0 Delete type=0 #131
2025/02/22-22:43:19.770500 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.487407 7fe59e7fc6c0 Recovering log #146
2025/03/01-19:40:45.498701 7fe59e7fc6c0 Delete type=3 #144
2025/03/01-19:40:45.498803 7fe59e7fc6c0 Delete type=0 #146
2025/03/01-19:41:57.256411 7fe59d7fa6c0 Level-0 table #151: started
2025/03/01-19:41:57.256434 7fe59d7fa6c0 Level-0 table #151: 0 bytes OK
2025/03/01-19:41:57.262412 7fe59d7fa6c0 Delete type=0 #149
2025/03/01-19:41:57.269615 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:43:59.982694 7f59327fc6c0 Recovering log #124
2025/02/21-17:44:00.043945 7f59327fc6c0 Delete type=3 #122
2025/02/21-17:44:00.044048 7f59327fc6c0 Delete type=0 #124
2025/02/21-17:47:55.670798 7f5693fff6c0 Level-0 table #129: started
2025/02/21-17:47:55.670851 7f5693fff6c0 Level-0 table #129: 0 bytes OK
2025/02/21-17:47:55.677050 7f5693fff6c0 Delete type=0 #127
2025/02/21-17:47:55.677262 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.082694 7fe59effd6c0 Recovering log #141
2025/03/01-19:35:57.093326 7fe59effd6c0 Delete type=3 #139
2025/03/01-19:35:57.093376 7fe59effd6c0 Delete type=0 #141
2025/03/01-19:38:46.038876 7fe59d7fa6c0 Level-0 table #147: started
2025/03/01-19:38:46.038898 7fe59d7fa6c0 Level-0 table #147: 0 bytes OK
2025/03/01-19:38:46.045195 7fe59d7fa6c0 Delete type=0 #145
2025/03/01-19:38:46.058182 7fe59d7fa6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000124
MANIFEST-000140

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.615053 7f59327fc6c0 Recovering log #122
2025/02/22-22:33:49.625185 7f59327fc6c0 Delete type=3 #120
2025/02/22-22:33:49.625256 7f59327fc6c0 Delete type=0 #122
2025/02/22-22:43:19.770657 7f5693fff6c0 Level-0 table #127: started
2025/02/22-22:43:19.770730 7f5693fff6c0 Level-0 table #127: 0 bytes OK
2025/02/22-22:43:19.776949 7f5693fff6c0 Delete type=0 #125
2025/02/22-22:43:19.797410 7f5693fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.502221 7fe59f7fe6c0 Recovering log #138
2025/03/01-19:40:45.511946 7fe59f7fe6c0 Delete type=3 #136
2025/03/01-19:40:45.512076 7fe59f7fe6c0 Delete type=0 #138
2025/03/01-19:41:57.282060 7fe59d7fa6c0 Level-0 table #143: started
2025/03/01-19:41:57.282084 7fe59d7fa6c0 Level-0 table #143: 0 bytes OK
2025/03/01-19:41:57.288122 7fe59d7fa6c0 Delete type=0 #141
2025/03/01-19:41:57.295100 7fe59d7fa6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:44:00.049637 7f5930ff96c0 Recovering log #118
2025/02/21-17:44:00.112380 7f5930ff96c0 Delete type=3 #116
2025/02/21-17:44:00.112480 7f5930ff96c0 Delete type=0 #118
2025/02/21-17:47:55.677403 7f5693fff6c0 Level-0 table #123: started
2025/02/21-17:47:55.677440 7f5693fff6c0 Level-0 table #123: 0 bytes OK
2025/02/21-17:47:55.687654 7f5693fff6c0 Delete type=0 #121
2025/02/21-17:47:55.710065 7f5693fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.098663 7fe59dffb6c0 Recovering log #134
2025/03/01-19:35:57.108416 7fe59dffb6c0 Delete type=3 #132
2025/03/01-19:35:57.108524 7fe59dffb6c0 Delete type=0 #134
2025/03/01-19:38:46.058273 7fe59d7fa6c0 Level-0 table #139: started
2025/03/01-19:38:46.058294 7fe59d7fa6c0 Level-0 table #139: 0 bytes OK
2025/03/01-19:38:46.064281 7fe59d7fa6c0 Delete type=0 #137
2025/03/01-19:38:46.083204 7fe59d7fa6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000124
MANIFEST-000140

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.629130 7f5930ff96c0 Recovering log #122
2025/02/22-22:33:49.639881 7f5930ff96c0 Delete type=3 #120
2025/02/22-22:33:49.639935 7f5930ff96c0 Delete type=0 #122
2025/02/22-22:43:19.777079 7f5693fff6c0 Level-0 table #127: started
2025/02/22-22:43:19.777104 7f5693fff6c0 Level-0 table #127: 0 bytes OK
2025/02/22-22:43:19.783503 7f5693fff6c0 Delete type=0 #125
2025/02/22-22:43:19.797421 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.515906 7fe59effd6c0 Recovering log #138
2025/03/01-19:40:45.525965 7fe59effd6c0 Delete type=3 #136
2025/03/01-19:40:45.526045 7fe59effd6c0 Delete type=0 #138
2025/03/01-19:41:57.269782 7fe59d7fa6c0 Level-0 table #143: started
2025/03/01-19:41:57.269820 7fe59d7fa6c0 Level-0 table #143: 0 bytes OK
2025/03/01-19:41:57.275965 7fe59d7fa6c0 Delete type=0 #141
2025/03/01-19:41:57.295052 7fe59d7fa6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:44:00.115577 7f59317fa6c0 Recovering log #118
2025/02/21-17:44:00.167423 7f59317fa6c0 Delete type=3 #116
2025/02/21-17:44:00.167553 7f59317fa6c0 Delete type=0 #118
2025/02/21-17:47:55.695434 7f5693fff6c0 Level-0 table #123: started
2025/02/21-17:47:55.695473 7f5693fff6c0 Level-0 table #123: 0 bytes OK
2025/02/21-17:47:55.701961 7f5693fff6c0 Delete type=0 #121
2025/02/21-17:47:55.710108 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.112622 7fe59f7fe6c0 Recovering log #134
2025/03/01-19:35:57.122660 7fe59f7fe6c0 Delete type=3 #132
2025/03/01-19:35:57.122712 7fe59f7fe6c0 Delete type=0 #134
2025/03/01-19:38:46.064405 7fe59d7fa6c0 Level-0 table #139: started
2025/03/01-19:38:46.064430 7fe59d7fa6c0 Level-0 table #139: 0 bytes OK
2025/03/01-19:38:46.070616 7fe59d7fa6c0 Delete type=0 #137
2025/03/01-19:38:46.083218 7fe59d7fa6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000062
MANIFEST-000078

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.656683 7f5931ffb6c0 Recovering log #60
2025/02/22-22:33:49.666865 7f5931ffb6c0 Delete type=3 #58
2025/02/22-22:33:49.666921 7f5931ffb6c0 Delete type=0 #60
2025/02/22-22:43:19.791156 7f5693fff6c0 Level-0 table #65: started
2025/02/22-22:43:19.791229 7f5693fff6c0 Level-0 table #65: 0 bytes OK
2025/02/22-22:43:19.797285 7f5693fff6c0 Delete type=0 #63
2025/02/22-22:43:19.797477 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.542936 7fe59e7fc6c0 Recovering log #76
2025/03/01-19:40:45.552602 7fe59e7fc6c0 Delete type=3 #74
2025/03/01-19:40:45.552684 7fe59e7fc6c0 Delete type=0 #76
2025/03/01-19:41:57.288227 7fe59d7fa6c0 Level-0 table #81: started
2025/03/01-19:41:57.288250 7fe59d7fa6c0 Level-0 table #81: 0 bytes OK
2025/03/01-19:41:57.294848 7fe59d7fa6c0 Delete type=0 #79
2025/03/01-19:41:57.295119 7fe59d7fa6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:44:00.233536 7f59327fc6c0 Recovering log #56
2025/02/21-17:44:00.291027 7f59327fc6c0 Delete type=3 #54
2025/02/21-17:44:00.291155 7f59327fc6c0 Delete type=0 #56
2025/02/21-17:47:55.702164 7f5693fff6c0 Level-0 table #61: started
2025/02/21-17:47:55.702213 7f5693fff6c0 Level-0 table #61: 0 bytes OK
2025/02/21-17:47:55.709876 7f5693fff6c0 Delete type=0 #59
2025/02/21-17:47:55.710126 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.140176 7fe59effd6c0 Recovering log #72
2025/03/01-19:35:57.150150 7fe59effd6c0 Delete type=3 #70
2025/03/01-19:35:57.150203 7fe59effd6c0 Delete type=0 #72
2025/03/01-19:38:46.076894 7fe59d7fa6c0 Level-0 table #77: started
2025/03/01-19:38:46.076917 7fe59d7fa6c0 Level-0 table #77: 0 bytes OK
2025/03/01-19:38:46.083020 7fe59d7fa6c0 Delete type=0 #75
2025/03/01-19:38:46.083234 7fe59d7fa6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000124
MANIFEST-000140

View File

@ -1,7 +1,7 @@
2025/02/22-22:33:49.642688 7f59317fa6c0 Recovering log #122
2025/02/22-22:33:49.653372 7f59317fa6c0 Delete type=3 #120
2025/02/22-22:33:49.653442 7f59317fa6c0 Delete type=0 #122
2025/02/22-22:43:19.783617 7f5693fff6c0 Level-0 table #127: started
2025/02/22-22:43:19.783640 7f5693fff6c0 Level-0 table #127: 0 bytes OK
2025/02/22-22:43:19.791036 7f5693fff6c0 Delete type=0 #125
2025/02/22-22:43:19.797431 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
2025/03/01-19:40:45.528396 7fe59dffb6c0 Recovering log #138
2025/03/01-19:40:45.539802 7fe59dffb6c0 Delete type=3 #136
2025/03/01-19:40:45.539863 7fe59dffb6c0 Delete type=0 #138
2025/03/01-19:41:57.276076 7fe59d7fa6c0 Level-0 table #143: started
2025/03/01-19:41:57.276097 7fe59d7fa6c0 Level-0 table #143: 0 bytes OK
2025/03/01-19:41:57.281956 7fe59d7fa6c0 Delete type=0 #141
2025/03/01-19:41:57.295080 7fe59d7fa6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2025/02/21-17:44:00.171470 7f5931ffb6c0 Recovering log #118
2025/02/21-17:44:00.229098 7f5931ffb6c0 Delete type=3 #116
2025/02/21-17:44:00.229246 7f5931ffb6c0 Delete type=0 #118
2025/02/21-17:47:55.687944 7f5693fff6c0 Level-0 table #123: started
2025/02/21-17:47:55.688004 7f5693fff6c0 Level-0 table #123: 0 bytes OK
2025/02/21-17:47:55.695229 7f5693fff6c0 Delete type=0 #121
2025/02/21-17:47:55.710089 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
2025/03/01-19:35:57.125546 7fe59e7fc6c0 Recovering log #134
2025/03/01-19:35:57.136467 7fe59e7fc6c0 Delete type=3 #132
2025/03/01-19:35:57.136592 7fe59e7fc6c0 Delete type=0 #134
2025/03/01-19:38:46.070718 7fe59d7fa6c0 Level-0 table #139: started
2025/03/01-19:38:46.070737 7fe59d7fa6c0 Level-0 table #139: 0 bytes OK
2025/03/01-19:38:46.076759 7fe59d7fa6c0 Delete type=0 #137
2025/03/01-19:38:46.083227 7fe59d7fa6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -335,7 +335,7 @@
<h3><label class="items-title-text">Zone libre</label></h3>
</span>
<div class="form-group small-editor">
{{editor equipementlibre target="system.equipmentfree" button=true owner=owner editable=editable}}
{{editor equipmentfree target="system.equipmentfree" button=true owner=owner editable=editable}}
</div>
<ul class="item-list alternate-list">
@ -348,7 +348,7 @@
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-add" data-type="equipment" title="Créer un équipement"><i
<a class="item-control item-add" data-type="equipement" title="Créer un équipement"><i
class="fas fa-plus"></i></a>
</div>

View File

@ -5,6 +5,15 @@
<div class="form-group creator-finished-section">
L'ensemble des choix a été appliqué sur la fiche de personnage nouvellement créée.
</div>
<div class="form-group creator-finished-section">
Vous pouvez maintenant répartir les points suivants dans les compétences de votre personnage (score max 5):
<ul>
{{#each pointsCompetence as |comp idx|}}
<li>Compétences de {{comp.label}} : {{comp.score}} points</li>
{{/each}}
</ul>
</div>
<div class="form-group creator-finished-section">
Le Trousseau issu de l'Age Viril a été copié dans zone d'équipement libre de la fiche de personnage, à vous de créer

View File

@ -25,6 +25,13 @@
</select>
</li>
<li class="flexrow">
<label class="item-name-label-long">Genre</label>
<select name="system.genre">
{{selectOptions config.genreEducation selected=system.genre labelAttr="label" }}
</select>
</li>
{{#if hasMultiplier}}
{{else}}