Compare commits

..

No commits in common. "main" and "12.0.17" have entirely different histories.

76 changed files with 141 additions and 209 deletions

View File

@ -1,18 +1,10 @@
# Système Foundry pour Te Deum pour un Massacre (French RPG, Open Sesame Games, Official)
# Système Foundry pour Te Deum pour un massacre (French RPG, Open Sesam Games, Official)
This is a base game system with functionnal character sheets for the game Te Deum pour un massacre.
# Contributions
- Original code realised by Uberwald (https://www.uberwald.me/)
Snapshot of the system :
![Alt text](https://www.lahiette.com/leratierbretonnien/wp-content/uploads/2025/02/tedeum_snapshot.webp "a title")
# Copyright mentions
Copyright 2025 Open Sesame Games
All rights reserved
@ -21,6 +13,5 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
Te Deum pour un massacre is a game written by Jean-Philippe Jaworski. The author retains his moral rights regarding this work in both print and digital formats.
# Requests or Problems
Please report any requests or problems you have at contact@open-sesame.games

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

View File

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

View File

@ -57,7 +57,6 @@ export class TeDeumActorPJSheet extends ActorSheet {
educations: this.actor.getEducations(),
description: await TextEditor.enrichHTML(this.object.system.description, { 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,
owner: this.document.isOwner,
editScore: this.options.editScore,

View File

@ -34,7 +34,7 @@ export class TeDeumActor extends Actor {
return actor;
}
if (data.type == 'pj' || data.type == 'pnj') {
if (data.type == 'pj') {
const skills = await TeDeumUtility.loadCompendium("fvtt-te-deum.competences")
data.items = data.items || []
for (let skill of skills) {
@ -65,14 +65,6 @@ 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) {
let updates = []

View File

@ -11,7 +11,6 @@ export class TeDeumCharacterCreator {
this.religion = undefined
this.caracBonus = {}
this.competenceBonus = {}
this.suiviReponses = []
this.competences = TeDeumUtility.getCompetencesForDropDown()
for (let k in game.system.tedeum.config.caracteristiques) {
@ -169,8 +168,6 @@ export class TeDeumCharacterCreator {
let selectedResponse = question.reponses[context.responseKey]
let compName = context.competences[context.responseKey] || selectedResponse.compName
this.increaseCompetence(compName)
this.suiviReponses.push({ etape: stage.name, question: question.question, reponse: selectedResponse.reponse, compName: compName })
}
}
@ -576,22 +573,8 @@ export class TeDeumCharacterCreator {
newArgent /= this.ageViril.system.cagnotteDivider
await actor.update({ [`system.fortune.${this.origineSociale.cagnotteUnit}`]: newArgent})
let histoire = ""
for (let reponse of this.suiviReponses) {
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

@ -41,7 +41,6 @@ export class TeDeumPJSchema extends foundry.abstract.TypeDataModel {
schema.description = new fields.HTMLField({required: true, blank: true});
schema.connaissances = new fields.HTMLField({required: true, blank: true});
schema.histoire = new fields.HTMLField({required: true, blank: true});
schema.vetements = new fields.HTMLField({required: true, blank: true});
schema.equipmentfree = new fields.HTMLField({required: true, blank: true});

BIN
packs/aides/000005.ldb Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000039
MANIFEST-000006

View File

@ -1,8 +1,8 @@
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)
2025/02/13-22:35:49.582184 7fcc32ffd6c0 Recovering log #4
2025/02/13-22:35:49.633338 7fcc32ffd6c0 Delete type=3 #2
2025/02/13-22:35:49.633392 7fcc32ffd6c0 Delete type=0 #4
2025/02/13-22:42:05.161388 7fcc327fc6c0 Level-0 table #9: started
2025/02/13-22:42:05.161406 7fcc327fc6c0 Level-0 table #9: 0 bytes OK
2025/02/13-22:42:05.168017 7fcc327fc6c0 Delete type=0 #7
2025/02/13-22:42:05.168186 7fcc327fc6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
2025/02/13-22:42:05.168210 7fcc327fc6c0 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,5 @@
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)
2025/02/05-20:07:00.726830 7ffae77fe6c0 Delete type=3 #1
2025/02/05-20:50:19.888688 7ffae6bff6c0 Level-0 table #5: started
2025/02/05-20:50:19.892050 7ffae6bff6c0 Level-0 table #5: 3651 bytes OK
2025/02/05-20:50:19.898356 7ffae6bff6c0 Delete type=0 #3
2025/02/05-20:50:19.924903 7ffae6bff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)

BIN
packs/aides/MANIFEST-000006 Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000141
MANIFEST-000109

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.132071 7fcc337fe6c0 Recovering log #107
2025/02/13-22:35:49.187037 7fcc337fe6c0 Delete type=3 #105
2025/02/13-22:35:49.187149 7fcc337fe6c0 Delete type=0 #107
2025/02/13-22:42:05.116041 7fcc327fc6c0 Level-0 table #112: started
2025/02/13-22:42:05.116121 7fcc327fc6c0 Level-0 table #112: 0 bytes OK
2025/02/13-22:42:05.122845 7fcc327fc6c0 Delete type=0 #110
2025/02/13-22:42:05.142173 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.600917 7ffae7fff6c0 Recovering log #103
2025/02/05-20:07:00.611719 7ffae7fff6c0 Delete type=3 #101
2025/02/05-20:07:00.611830 7ffae7fff6c0 Delete type=0 #103
2025/02/05-20:50:19.838224 7ffae6bff6c0 Level-0 table #108: started
2025/02/05-20:50:19.838303 7ffae6bff6c0 Level-0 table #108: 0 bytes OK
2025/02/05-20:50:19.844606 7ffae6bff6c0 Delete type=0 #106
2025/02/05-20:50:19.863174 7ffae6bff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000141
MANIFEST-000109

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.200499 7fcc32ffd6c0 Recovering log #107
2025/02/13-22:35:49.256910 7fcc32ffd6c0 Delete type=3 #105
2025/02/13-22:35:49.256980 7fcc32ffd6c0 Delete type=0 #107
2025/02/13-22:42:05.134786 7fcc327fc6c0 Level-0 table #112: started
2025/02/13-22:42:05.134811 7fcc327fc6c0 Level-0 table #112: 0 bytes OK
2025/02/13-22:42:05.142066 7fcc327fc6c0 Delete type=0 #110
2025/02/13-22:42:05.142204 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.616342 7ffaecbf96c0 Recovering log #103
2025/02/05-20:07:00.627971 7ffaecbf96c0 Delete type=3 #101
2025/02/05-20:07:00.628058 7ffaecbf96c0 Delete type=0 #103
2025/02/05-20:50:19.844802 7ffae6bff6c0 Level-0 table #108: started
2025/02/05-20:50:19.844850 7ffae6bff6c0 Level-0 table #108: 0 bytes OK
2025/02/05-20:50:19.851086 7ffae6bff6c0 Delete type=0 #106
2025/02/05-20:50:19.863187 7ffae6bff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000138
MANIFEST-000106

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.055633 7fcc38ffa6c0 Recovering log #104
2025/02/13-22:35:49.118535 7fcc38ffa6c0 Delete type=3 #102
2025/02/13-22:35:49.118612 7fcc38ffa6c0 Delete type=0 #104
2025/02/13-22:42:05.128785 7fcc327fc6c0 Level-0 table #109: started
2025/02/13-22:42:05.128812 7fcc327fc6c0 Level-0 table #109: 0 bytes OK
2025/02/13-22:42:05.134704 7fcc327fc6c0 Delete type=0 #107
2025/02/13-22:42:05.142195 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.587007 7ffaed3fa6c0 Recovering log #100
2025/02/05-20:07:00.596905 7ffaed3fa6c0 Delete type=3 #98
2025/02/05-20:07:00.596964 7ffaed3fa6c0 Delete type=0 #100
2025/02/05-20:50:19.857097 7ffae6bff6c0 Level-0 table #105: started
2025/02/05-20:50:19.857120 7ffae6bff6c0 Level-0 table #105: 0 bytes OK
2025/02/05-20:50:19.863064 7ffae6bff6c0 Delete type=0 #103
2025/02/05-20:50:19.863205 7ffae6bff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000148
MANIFEST-000114

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.263823 7fcc33fff6c0 Recovering log #112
2025/02/13-22:35:49.318056 7fcc33fff6c0 Delete type=3 #110
2025/02/13-22:35:49.318131 7fcc33fff6c0 Delete type=0 #112
2025/02/13-22:42:05.122931 7fcc327fc6c0 Level-0 table #117: started
2025/02/13-22:42:05.122950 7fcc327fc6c0 Level-0 table #117: 0 bytes OK
2025/02/13-22:42:05.128697 7fcc327fc6c0 Delete type=0 #115
2025/02/13-22:42:05.142187 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.631061 7ffae77fe6c0 Recovering log #108
2025/02/05-20:07:00.640688 7ffae77fe6c0 Delete type=3 #106
2025/02/05-20:07:00.640754 7ffae77fe6c0 Delete type=0 #108
2025/02/05-20:50:19.869892 7ffae6bff6c0 Level-0 table #113: started
2025/02/05-20:50:19.869921 7ffae6bff6c0 Level-0 table #113: 0 bytes OK
2025/02/05-20:50:19.876430 7ffae6bff6c0 Delete type=0 #111
2025/02/05-20:50:19.888577 7ffae6bff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000140
MANIFEST-000108

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.333807 7fcc38ffa6c0 Recovering log #106
2025/02/13-22:35:49.390442 7fcc38ffa6c0 Delete type=3 #104
2025/02/13-22:35:49.390520 7fcc38ffa6c0 Delete type=0 #106
2025/02/13-22:42:05.142328 7fcc327fc6c0 Level-0 table #111: started
2025/02/13-22:42:05.142350 7fcc327fc6c0 Level-0 table #111: 0 bytes OK
2025/02/13-22:42:05.149259 7fcc327fc6c0 Delete type=0 #109
2025/02/13-22:42:05.168150 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.649375 7ffaed3fa6c0 Recovering log #102
2025/02/05-20:07:00.660182 7ffaed3fa6c0 Delete type=3 #100
2025/02/05-20:07:00.660251 7ffaed3fa6c0 Delete type=0 #102
2025/02/05-20:50:19.851179 7ffae6bff6c0 Level-0 table #107: started
2025/02/05-20:50:19.851201 7ffae6bff6c0 Level-0 table #107: 0 bytes OK
2025/02/05-20:50:19.857001 7ffae6bff6c0 Delete type=0 #105
2025/02/05-20:50:19.863196 7ffae6bff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000140
MANIFEST-000108

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.396011 7fcc337fe6c0 Recovering log #106
2025/02/13-22:35:49.449719 7fcc337fe6c0 Delete type=3 #104
2025/02/13-22:35:49.449798 7fcc337fe6c0 Delete type=0 #106
2025/02/13-22:42:05.155275 7fcc327fc6c0 Level-0 table #111: started
2025/02/13-22:42:05.155292 7fcc327fc6c0 Level-0 table #111: 0 bytes OK
2025/02/13-22:42:05.161323 7fcc327fc6c0 Delete type=0 #109
2025/02/13-22:42:05.168175 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.663190 7ffae7fff6c0 Recovering log #102
2025/02/05-20:07:00.673484 7ffae7fff6c0 Delete type=3 #100
2025/02/05-20:07:00.673553 7ffae7fff6c0 Delete type=0 #102
2025/02/05-20:50:19.863283 7ffae6bff6c0 Level-0 table #107: started
2025/02/05-20:50:19.863350 7ffae6bff6c0 Level-0 table #107: 0 bytes OK
2025/02/05-20:50:19.869776 7ffae6bff6c0 Delete type=0 #105
2025/02/05-20:50:19.888563 7ffae6bff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000078
MANIFEST-000046

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.519066 7fcc33fff6c0 Recovering log #44
2025/02/13-22:35:49.574033 7fcc33fff6c0 Delete type=3 #42
2025/02/13-22:35:49.574112 7fcc33fff6c0 Delete type=0 #44
2025/02/13-22:42:05.168348 7fcc327fc6c0 Level-0 table #49: started
2025/02/13-22:42:05.168374 7fcc327fc6c0 Level-0 table #49: 0 bytes OK
2025/02/13-22:42:05.174222 7fcc327fc6c0 Delete type=0 #47
2025/02/13-22:42:05.199806 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.692354 7ffae77fe6c0 Recovering log #40
2025/02/05-20:07:00.702369 7ffae77fe6c0 Delete type=3 #38
2025/02/05-20:07:00.702455 7ffae77fe6c0 Delete type=0 #40
2025/02/05-20:50:19.882562 7ffae6bff6c0 Level-0 table #45: started
2025/02/05-20:50:19.882585 7ffae6bff6c0 Level-0 table #45: 0 bytes OK
2025/02/05-20:50:19.888444 7ffae6bff6c0 Delete type=0 #43
2025/02/05-20:50:19.888601 7ffae6bff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000140
MANIFEST-000108

View File

@ -1,7 +1,7 @@
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)
2025/02/13-22:35:49.456288 7fcc32ffd6c0 Recovering log #106
2025/02/13-22:35:49.511470 7fcc32ffd6c0 Delete type=3 #104
2025/02/13-22:35:49.511544 7fcc32ffd6c0 Delete type=0 #106
2025/02/13-22:42:05.149363 7fcc327fc6c0 Level-0 table #111: started
2025/02/13-22:42:05.149382 7fcc327fc6c0 Level-0 table #111: 0 bytes OK
2025/02/13-22:42:05.155211 7fcc327fc6c0 Delete type=0 #109
2025/02/13-22:42:05.168164 7fcc327fc6c0 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/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)
2025/02/05-20:07:00.678259 7ffaecbf96c0 Recovering log #102
2025/02/05-20:07:00.688241 7ffaecbf96c0 Delete type=3 #100
2025/02/05-20:07:00.688315 7ffaecbf96c0 Delete type=0 #102
2025/02/05-20:50:19.876543 7ffae6bff6c0 Level-0 table #107: started
2025/02/05-20:50:19.876571 7ffae6bff6c0 Level-0 table #107: 0 bytes OK
2025/02/05-20:50:19.882462 7ffae6bff6c0 Delete type=0 #105
2025/02/05-20:50:19.888589 7ffae6bff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)

View File

@ -1254,7 +1254,6 @@ ul, li {
}
.fvtt-te-deum-character-creator {
background: rgba(226, 226, 222, 0.95);
font-family: "GreatPrimer";
font-size: 0.9rem;
.field-title {

View File

@ -1191,7 +1191,6 @@ ul, li {
}
.fvtt-te-deum-character-creator {
background: rgba(226, 226, 222, 0.95);
font-family: "GreatPrimer";
font-size: 0.9rem;
}

View File

@ -132,7 +132,7 @@
}
],
"license": "LICENSE.txt",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-te-deum/releases/download/latest/system.json",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-te-deum/raw/branch/master/system.json",
"compatibility": {
"minimum": "12",
"verified": "12"

View File

@ -1,7 +1,7 @@
{
"Actor": {
"types": ["pj", "pnj"],
"htmlFields": ["description", "equipmentfree", "histoire"],
"htmlFields": ["description", "equipmentfree"],
"pj": {},
"pnj": {}
},

View File

@ -449,7 +449,7 @@
<h3><label class="items-title-text">Background</label></h3>
</span>
<div class="form-group editor">
{{editor description target="system.description" button=true owner=owner
{{editor description target="system.biodata.description" button=true owner=owner
editable=editable}}
</div>
<hr>
@ -457,14 +457,7 @@
<h3><label class="items-title-text">Notes</label></h3>
</span>
<div class="form-group editor">
{{editor notes target="system.notes" button=true owner=owner editable=editable}}
</div>
<hr>
<span class="item-name-label-header items-title-bg">
<h3><label class="items-title-text">Histoire</label></h3>
</span>
<div class="form-group editor">
{{editor histoire target="system.histoire" button=true owner=owner editable=editable}}
{{editor notes target="system.biodata.notes" button=true owner=owner editable=editable}}
</div>
<hr>

View File

@ -6,15 +6,6 @@
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
les objets de jeu nécessaires (armes, richesses, etc.).