Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
fe0814e498 | |||
544f9f467a | |||
ce5771f930 | |||
93b8325bb9 | |||
48be65e7fd |
@ -1,10 +1,18 @@
|
||||
# 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 :
|
||||
|
||||

|
||||
|
||||
|
||||
# Copyright mentions
|
||||
|
||||
Copyright 2025 Open Sesame Games
|
||||
All rights reserved
|
||||
|
||||
@ -13,5 +21,6 @@ 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
|
||||
|
||||
|
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 171 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 29 KiB |
@ -57,6 +57,7 @@ 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,
|
||||
|
@ -11,6 +11,7 @@ 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) {
|
||||
@ -168,6 +169,8 @@ 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 })
|
||||
}
|
||||
}
|
||||
|
||||
@ -573,6 +576,12 @@ 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)
|
||||
|
||||
const content = await renderTemplate("systems/fvtt-te-deum/templates/dialogs/character-creator-finished.hbs", context)
|
||||
|
@ -41,6 +41,7 @@ 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/000018.ldb
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
@ -1,8 +1,8 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,5 +1,8 @@
|
||||
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)
|
||||
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)
|
||||
|
BIN
packs/aides/MANIFEST-000023
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000109
|
||||
MANIFEST-000125
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000109
|
||||
MANIFEST-000125
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000106
|
||||
MANIFEST-000122
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000114
|
||||
MANIFEST-000130
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000108
|
||||
MANIFEST-000124
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000108
|
||||
MANIFEST-000124
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000046
|
||||
MANIFEST-000062
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000108
|
||||
MANIFEST-000124
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1,7 +1,7 @@
|
||||
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)
|
||||
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)
|
||||
|
@ -1254,6 +1254,7 @@ ul, li {
|
||||
}
|
||||
|
||||
.fvtt-te-deum-character-creator {
|
||||
background: rgba(226, 226, 222, 0.95);
|
||||
font-family: "GreatPrimer";
|
||||
font-size: 0.9rem;
|
||||
.field-title {
|
||||
|
@ -1191,6 +1191,7 @@ ul, li {
|
||||
}
|
||||
|
||||
.fvtt-te-deum-character-creator {
|
||||
background: rgba(226, 226, 222, 0.95);
|
||||
font-family: "GreatPrimer";
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
@ -132,7 +132,7 @@
|
||||
}
|
||||
],
|
||||
"license": "LICENSE.txt",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-te-deum/raw/branch/master/system.json",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-te-deum/releases/download/latest/system.json",
|
||||
"compatibility": {
|
||||
"minimum": "12",
|
||||
"verified": "12"
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"Actor": {
|
||||
"types": ["pj", "pnj"],
|
||||
"htmlFields": ["description", "equipmentfree"],
|
||||
"htmlFields": ["description", "equipmentfree", "histoire"],
|
||||
"pj": {},
|
||||
"pnj": {}
|
||||
},
|
||||
|
@ -449,7 +449,7 @@
|
||||
<h3><label class="items-title-text">Background</label></h3>
|
||||
</span>
|
||||
<div class="form-group editor">
|
||||
{{editor description target="system.biodata.description" button=true owner=owner
|
||||
{{editor description target="system.description" button=true owner=owner
|
||||
editable=editable}}
|
||||
</div>
|
||||
<hr>
|
||||
@ -457,7 +457,14 @@
|
||||
<h3><label class="items-title-text">Notes</label></h3>
|
||||
</span>
|
||||
<div class="form-group editor">
|
||||
{{editor notes target="system.biodata.notes" button=true owner=owner editable=editable}}
|
||||
{{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}}
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
|