Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
761f95d6d9 | |||
c24f4fe502 | |||
caedcf5e21 | |||
fe0814e498 | |||
544f9f467a | |||
ce5771f930 |
@ -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.
|
||||
|
||||
@ -6,6 +6,11 @@ This is a base game system with functionnal character sheets for the game Te Deu
|
||||
|
||||
- Original code realised by Uberwald (https://www.uberwald.me/)
|
||||
|
||||
Snapshot of the system :
|
||||
|
||||

|
||||
|
||||
|
||||
# Copyright mentions
|
||||
|
||||
Copyright 2025 Open Sesame Games
|
||||
|
@ -0,0 +1,7 @@
|
||||
# 12.0.20
|
||||
|
||||
- Corrections sur la création de perso
|
||||
|
||||
# 12.0.19
|
||||
|
||||
- Initial release !
|
@ -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,
|
||||
|
@ -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) {
|
||||
|
@ -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,8 +576,22 @@ 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({
|
||||
|
@ -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);
|
||||
|
@ -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});
|
||||
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000014
|
||||
MANIFEST-000031
|
||||
|
@ -1,15 +1,8 @@
|
||||
2025/02/21-17:37:17.636121 7f5931ffb6c0 Recovering log #12
|
||||
2025/02/21-17:37:17.694242 7f5931ffb6c0 Delete type=3 #10
|
||||
2025/02/21-17:37:17.694432 7f5931ffb6c0 Delete type=0 #12
|
||||
2025/02/21-17:40:09.864856 7f5693fff6c0 Level-0 table #17: started
|
||||
2025/02/21-17:40:09.868441 7f5693fff6c0 Level-0 table #17: 6588 bytes OK
|
||||
2025/02/21-17:40:09.875550 7f5693fff6c0 Delete type=0 #15
|
||||
2025/02/21-17:40:09.886661 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:40:09.893774 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 15 : 1
|
||||
2025/02/21-17:40:09.893799 7f5693fff6c0 Compacting 1@1 + 1@2 files
|
||||
2025/02/21-17:40:09.898306 7f5693fff6c0 Generated table #18@1: 5 keys, 3660 bytes
|
||||
2025/02/21-17:40:09.898361 7f5693fff6c0 Compacted 1@1 + 1@2 files => 3660 bytes
|
||||
2025/02/21-17:40:09.904952 7f5693fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/02/21-17:40:09.905193 7f5693fff6c0 Delete type=2 #5
|
||||
2025/02/21-17:40:09.905447 7f5693fff6c0 Delete type=2 #17
|
||||
2025/02/21-17:40:09.923689 7f5693fff6c0 Manual compaction at level-1 from '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 15 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.523300 7fcd227fc6c0 Recovering log #29
|
||||
2025/02/25-21:31:20.533410 7fcd227fc6c0 Delete type=3 #27
|
||||
2025/02/25-21:31:20.533498 7fcd227fc6c0 Delete type=0 #29
|
||||
2025/02/25-21:35:34.575677 7fcd20bff6c0 Level-0 table #34: started
|
||||
2025/02/25-21:35:34.575713 7fcd20bff6c0 Level-0 table #34: 0 bytes OK
|
||||
2025/02/25-21:35:34.581867 7fcd20bff6c0 Delete type=0 #32
|
||||
2025/02/25-21:35:34.595379 7fcd20bff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:35:34.595417 7fcd20bff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/02/21-17:31:59.431540 7f5930ff96c0 Recovering log #8
|
||||
2025/02/21-17:31:59.442045 7f5930ff96c0 Delete type=3 #6
|
||||
2025/02/21-17:31:59.442169 7f5930ff96c0 Delete type=0 #8
|
||||
2025/02/21-17:36:32.701871 7f5693fff6c0 Level-0 table #13: started
|
||||
2025/02/21-17:36:32.701921 7f5693fff6c0 Level-0 table #13: 0 bytes OK
|
||||
2025/02/21-17:36:32.708271 7f5693fff6c0 Delete type=0 #11
|
||||
2025/02/21-17:36:32.718706 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:36:32.732878 7f5693fff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.885720 7fcd22ffd6c0 Recovering log #25
|
||||
2025/02/25-20:49:36.980833 7fcd22ffd6c0 Delete type=3 #23
|
||||
2025/02/25-20:49:36.980955 7fcd22ffd6c0 Delete type=0 #25
|
||||
2025/02/25-21:29:18.220253 7fcd20bff6c0 Level-0 table #30: started
|
||||
2025/02/25-21:29:18.220310 7fcd20bff6c0 Level-0 table #30: 0 bytes OK
|
||||
2025/02/25-21:29:18.251218 7fcd20bff6c0 Delete type=0 #28
|
||||
2025/02/25-21:29:18.384283 7fcd20bff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:29:18.384413 7fcd20bff6c0 Manual compaction at level-1 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/aides/MANIFEST-000031
Normal file
BIN
packs/aides/MANIFEST-000031
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000117
|
||||
MANIFEST-000133
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.195165 7f5930ff96c0 Recovering log #115
|
||||
2025/02/21-17:37:17.251788 7f5930ff96c0 Delete type=3 #113
|
||||
2025/02/21-17:37:17.251907 7f5930ff96c0 Delete type=0 #115
|
||||
2025/02/21-17:40:09.792578 7f5693fff6c0 Level-0 table #120: started
|
||||
2025/02/21-17:40:09.792658 7f5693fff6c0 Level-0 table #120: 0 bytes OK
|
||||
2025/02/21-17:40:09.799539 7f5693fff6c0 Delete type=0 #118
|
||||
2025/02/21-17:40:09.813519 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.430273 7fcd22ffd6c0 Recovering log #131
|
||||
2025/02/25-21:31:20.440203 7fcd22ffd6c0 Delete type=3 #129
|
||||
2025/02/25-21:31:20.440252 7fcd22ffd6c0 Delete type=0 #131
|
||||
2025/02/25-21:35:34.532301 7fcd20bff6c0 Level-0 table #136: started
|
||||
2025/02/25-21:35:34.532327 7fcd20bff6c0 Level-0 table #136: 0 bytes OK
|
||||
2025/02/25-21:35:34.538182 7fcd20bff6c0 Delete type=0 #134
|
||||
2025/02/25-21:35:34.551679 7fcd20bff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.314972 7f59327fc6c0 Recovering log #111
|
||||
2025/02/21-17:31:59.325624 7f59327fc6c0 Delete type=3 #109
|
||||
2025/02/21-17:31:59.325779 7f59327fc6c0 Delete type=0 #111
|
||||
2025/02/21-17:36:32.629703 7f5693fff6c0 Level-0 table #116: started
|
||||
2025/02/21-17:36:32.629742 7f5693fff6c0 Level-0 table #116: 0 bytes OK
|
||||
2025/02/21-17:36:32.638568 7f5693fff6c0 Delete type=0 #114
|
||||
2025/02/21-17:36:32.653420 7f5693fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.106601 7fcd21ffb6c0 Recovering log #127
|
||||
2025/02/25-20:49:36.195396 7fcd21ffb6c0 Delete type=3 #125
|
||||
2025/02/25-20:49:36.195529 7fcd21ffb6c0 Delete type=0 #127
|
||||
2025/02/25-21:29:17.947467 7fcd20bff6c0 Level-0 table #132: started
|
||||
2025/02/25-21:29:17.947511 7fcd20bff6c0 Level-0 table #132: 0 bytes OK
|
||||
2025/02/25-21:29:17.987072 7fcd20bff6c0 Delete type=0 #130
|
||||
2025/02/25-21:29:17.987251 7fcd20bff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000117
|
||||
MANIFEST-000133
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.256489 7f5931ffb6c0 Recovering log #115
|
||||
2025/02/21-17:37:17.318730 7f5931ffb6c0 Delete type=3 #113
|
||||
2025/02/21-17:37:17.318861 7f5931ffb6c0 Delete type=0 #115
|
||||
2025/02/21-17:40:09.806879 7f5693fff6c0 Level-0 table #120: started
|
||||
2025/02/21-17:40:09.806939 7f5693fff6c0 Level-0 table #120: 0 bytes OK
|
||||
2025/02/21-17:40:09.813255 7f5693fff6c0 Delete type=0 #118
|
||||
2025/02/21-17:40:09.813572 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.442940 7fcd227fc6c0 Recovering log #131
|
||||
2025/02/25-21:31:20.453064 7fcd227fc6c0 Delete type=3 #129
|
||||
2025/02/25-21:31:20.453114 7fcd227fc6c0 Delete type=0 #131
|
||||
2025/02/25-21:35:34.538283 7fcd20bff6c0 Level-0 table #136: started
|
||||
2025/02/25-21:35:34.538304 7fcd20bff6c0 Level-0 table #136: 0 bytes OK
|
||||
2025/02/25-21:35:34.544358 7fcd20bff6c0 Delete type=0 #134
|
||||
2025/02/25-21:35:34.551687 7fcd20bff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.330152 7f5930ff96c0 Recovering log #111
|
||||
2025/02/21-17:31:59.341768 7f5930ff96c0 Delete type=3 #109
|
||||
2025/02/21-17:31:59.341926 7f5930ff96c0 Delete type=0 #111
|
||||
2025/02/21-17:36:32.638873 7f5693fff6c0 Level-0 table #116: started
|
||||
2025/02/21-17:36:32.638950 7f5693fff6c0 Level-0 table #116: 0 bytes OK
|
||||
2025/02/21-17:36:32.645471 7f5693fff6c0 Delete type=0 #114
|
||||
2025/02/21-17:36:32.653459 7f5693fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.212555 7fcd22ffd6c0 Recovering log #127
|
||||
2025/02/25-20:49:36.305645 7fcd22ffd6c0 Delete type=3 #125
|
||||
2025/02/25-20:49:36.305755 7fcd22ffd6c0 Delete type=0 #127
|
||||
2025/02/25-21:29:17.834303 7fcd20bff6c0 Level-0 table #132: started
|
||||
2025/02/25-21:29:17.834368 7fcd20bff6c0 Level-0 table #132: 0 bytes OK
|
||||
2025/02/25-21:29:17.871779 7fcd20bff6c0 Delete type=0 #130
|
||||
2025/02/25-21:29:17.987222 7fcd20bff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000114
|
||||
MANIFEST-000130
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.133219 7f59327fc6c0 Recovering log #112
|
||||
2025/02/21-17:37:17.190379 7f59327fc6c0 Delete type=3 #110
|
||||
2025/02/21-17:37:17.190537 7f59327fc6c0 Delete type=0 #112
|
||||
2025/02/21-17:40:09.785663 7f5693fff6c0 Level-0 table #117: started
|
||||
2025/02/21-17:40:09.785737 7f5693fff6c0 Level-0 table #117: 0 bytes OK
|
||||
2025/02/21-17:40:09.792355 7f5693fff6c0 Delete type=0 #115
|
||||
2025/02/21-17:40:09.813482 7f5693fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.416892 7fcd21ffb6c0 Recovering log #128
|
||||
2025/02/25-21:31:20.427488 7fcd21ffb6c0 Delete type=3 #126
|
||||
2025/02/25-21:31:20.427535 7fcd21ffb6c0 Delete type=0 #128
|
||||
2025/02/25-21:35:34.525613 7fcd20bff6c0 Level-0 table #133: started
|
||||
2025/02/25-21:35:34.525647 7fcd20bff6c0 Level-0 table #133: 0 bytes OK
|
||||
2025/02/25-21:35:34.532166 7fcd20bff6c0 Delete type=0 #131
|
||||
2025/02/25-21:35:34.551667 7fcd20bff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.298905 7f59317fa6c0 Recovering log #108
|
||||
2025/02/21-17:31:59.309924 7f59317fa6c0 Delete type=3 #106
|
||||
2025/02/21-17:31:59.310033 7f59317fa6c0 Delete type=0 #108
|
||||
2025/02/21-17:36:32.618180 7f5693fff6c0 Level-0 table #113: started
|
||||
2025/02/21-17:36:32.618265 7f5693fff6c0 Level-0 table #113: 0 bytes OK
|
||||
2025/02/21-17:36:32.629549 7f5693fff6c0 Delete type=0 #111
|
||||
2025/02/21-17:36:32.653376 7f5693fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:35.983838 7fcd227fc6c0 Recovering log #124
|
||||
2025/02/25-20:49:36.086131 7fcd227fc6c0 Delete type=3 #122
|
||||
2025/02/25-20:49:36.086317 7fcd227fc6c0 Delete type=0 #124
|
||||
2025/02/25-21:29:17.912757 7fcd20bff6c0 Level-0 table #129: started
|
||||
2025/02/25-21:29:17.912821 7fcd20bff6c0 Level-0 table #129: 0 bytes OK
|
||||
2025/02/25-21:29:17.947301 7fcd20bff6c0 Delete type=0 #127
|
||||
2025/02/25-21:29:17.987243 7fcd20bff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000122
|
||||
MANIFEST-000139
|
||||
|
@ -1,7 +1,14 @@
|
||||
2025/02/21-17:37:17.322674 7f59317fa6c0 Recovering log #120
|
||||
2025/02/21-17:37:17.380428 7f59317fa6c0 Delete type=3 #118
|
||||
2025/02/21-17:37:17.380608 7f59317fa6c0 Delete type=0 #120
|
||||
2025/02/21-17:40:09.799751 7f5693fff6c0 Level-0 table #125: started
|
||||
2025/02/21-17:40:09.799807 7f5693fff6c0 Level-0 table #125: 0 bytes OK
|
||||
2025/02/21-17:40:09.806651 7f5693fff6c0 Delete type=0 #123
|
||||
2025/02/21-17:40:09.813547 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.455668 7fcd217fa6c0 Recovering log #136
|
||||
2025/02/25-21:31:20.467004 7fcd217fa6c0 Delete type=3 #134
|
||||
2025/02/25-21:31:20.467103 7fcd217fa6c0 Delete type=0 #136
|
||||
2025/02/25-21:35:34.551837 7fcd20bff6c0 Level-0 table #142: started
|
||||
2025/02/25-21:35:34.555923 7fcd20bff6c0 Level-0 table #142: 45263 bytes OK
|
||||
2025/02/25-21:35:34.561930 7fcd20bff6c0 Delete type=0 #140
|
||||
2025/02/25-21:35:34.582002 7fcd20bff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at '!items!yBfCr85GXSpzhRkF' @ 339 : 1
|
||||
2025/02/25-21:35:34.582009 7fcd20bff6c0 Compacting 1@0 + 1@1 files
|
||||
2025/02/25-21:35:34.588279 7fcd20bff6c0 Generated table #143@0: 71 keys, 246138 bytes
|
||||
2025/02/25-21:35:34.588301 7fcd20bff6c0 Compacted 1@0 + 1@1 files => 246138 bytes
|
||||
2025/02/25-21:35:34.594753 7fcd20bff6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2025/02/25-21:35:34.594924 7fcd20bff6c0 Delete type=2 #138
|
||||
2025/02/25-21:35:34.595213 7fcd20bff6c0 Delete type=2 #142
|
||||
2025/02/25-21:35:34.595401 7fcd20bff6c0 Manual compaction at level-0 from '!items!yBfCr85GXSpzhRkF' @ 339 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,14 @@
|
||||
2025/02/21-17:31:59.347176 7f5931ffb6c0 Recovering log #116
|
||||
2025/02/21-17:31:59.357805 7f5931ffb6c0 Delete type=3 #114
|
||||
2025/02/21-17:31:59.358054 7f5931ffb6c0 Delete type=0 #116
|
||||
2025/02/21-17:36:32.660378 7f5693fff6c0 Level-0 table #121: started
|
||||
2025/02/21-17:36:32.660437 7f5693fff6c0 Level-0 table #121: 0 bytes OK
|
||||
2025/02/21-17:36:32.666840 7f5693fff6c0 Delete type=0 #119
|
||||
2025/02/21-17:36:32.681433 7f5693fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.314175 7fcd217fa6c0 Recovering log #132
|
||||
2025/02/25-20:49:36.403485 7fcd217fa6c0 Delete type=3 #130
|
||||
2025/02/25-20:49:36.403607 7fcd217fa6c0 Delete type=0 #132
|
||||
2025/02/25-21:29:17.987386 7fcd20bff6c0 Level-0 table #137: started
|
||||
2025/02/25-21:29:18.006349 7fcd20bff6c0 Level-0 table #137: 5726 bytes OK
|
||||
2025/02/25-21:29:18.041844 7fcd20bff6c0 Delete type=0 #135
|
||||
2025/02/25-21:29:18.159515 7fcd20bff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at '!items!v4mzjKOYibOsJ9Wn' @ 334 : 1
|
||||
2025/02/25-21:29:18.159529 7fcd20bff6c0 Compacting 1@0 + 1@1 files
|
||||
2025/02/25-21:29:18.179100 7fcd20bff6c0 Generated table #138@0: 71 keys, 245910 bytes
|
||||
2025/02/25-21:29:18.179146 7fcd20bff6c0 Compacted 1@0 + 1@1 files => 245910 bytes
|
||||
2025/02/25-21:29:18.219660 7fcd20bff6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2025/02/25-21:29:18.219809 7fcd20bff6c0 Delete type=2 #55
|
||||
2025/02/25-21:29:18.220047 7fcd20bff6c0 Delete type=2 #137
|
||||
2025/02/25-21:29:18.220167 7fcd20bff6c0 Manual compaction at level-0 from '!items!v4mzjKOYibOsJ9Wn' @ 334 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/education/MANIFEST-000139
Normal file
BIN
packs/education/MANIFEST-000139
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000116
|
||||
MANIFEST-000132
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.386428 7f59327fc6c0 Recovering log #114
|
||||
2025/02/21-17:37:17.439969 7f59327fc6c0 Delete type=3 #112
|
||||
2025/02/21-17:37:17.440130 7f59327fc6c0 Delete type=0 #114
|
||||
2025/02/21-17:40:09.813728 7f5693fff6c0 Level-0 table #119: started
|
||||
2025/02/21-17:40:09.813806 7f5693fff6c0 Level-0 table #119: 0 bytes OK
|
||||
2025/02/21-17:40:09.820069 7f5693fff6c0 Delete type=0 #117
|
||||
2025/02/21-17:40:09.840912 7f5693fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.470397 7fcd21ffb6c0 Recovering log #130
|
||||
2025/02/25-21:31:20.480598 7fcd21ffb6c0 Delete type=3 #128
|
||||
2025/02/25-21:31:20.480650 7fcd21ffb6c0 Delete type=0 #130
|
||||
2025/02/25-21:35:34.544557 7fcd20bff6c0 Level-0 table #135: started
|
||||
2025/02/25-21:35:34.544604 7fcd20bff6c0 Level-0 table #135: 0 bytes OK
|
||||
2025/02/25-21:35:34.551403 7fcd20bff6c0 Delete type=0 #133
|
||||
2025/02/25-21:35:34.551694 7fcd20bff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.365093 7f59317fa6c0 Recovering log #110
|
||||
2025/02/21-17:31:59.377140 7f59317fa6c0 Delete type=3 #108
|
||||
2025/02/21-17:31:59.377276 7f59317fa6c0 Delete type=0 #110
|
||||
2025/02/21-17:36:32.645760 7f5693fff6c0 Level-0 table #115: started
|
||||
2025/02/21-17:36:32.645838 7f5693fff6c0 Level-0 table #115: 0 bytes OK
|
||||
2025/02/21-17:36:32.653163 7f5693fff6c0 Delete type=0 #113
|
||||
2025/02/21-17:36:32.653494 7f5693fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.429598 7fcd227fc6c0 Recovering log #126
|
||||
2025/02/25-20:49:36.532213 7fcd227fc6c0 Delete type=3 #124
|
||||
2025/02/25-20:49:36.532372 7fcd227fc6c0 Delete type=0 #126
|
||||
2025/02/25-21:29:17.871948 7fcd20bff6c0 Level-0 table #131: started
|
||||
2025/02/25-21:29:17.871992 7fcd20bff6c0 Level-0 table #131: 0 bytes OK
|
||||
2025/02/25-21:29:17.912532 7fcd20bff6c0 Delete type=0 #129
|
||||
2025/02/25-21:29:17.987234 7fcd20bff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000116
|
||||
MANIFEST-000132
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.445029 7f5930ff96c0 Recovering log #114
|
||||
2025/02/21-17:37:17.501603 7f5930ff96c0 Delete type=3 #112
|
||||
2025/02/21-17:37:17.501757 7f5930ff96c0 Delete type=0 #114
|
||||
2025/02/21-17:40:09.820238 7f5693fff6c0 Level-0 table #119: started
|
||||
2025/02/21-17:40:09.820287 7f5693fff6c0 Level-0 table #119: 0 bytes OK
|
||||
2025/02/21-17:40:09.826744 7f5693fff6c0 Delete type=0 #117
|
||||
2025/02/21-17:40:09.840932 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.482655 7fcd22ffd6c0 Recovering log #130
|
||||
2025/02/25-21:31:20.492620 7fcd22ffd6c0 Delete type=3 #128
|
||||
2025/02/25-21:31:20.492718 7fcd22ffd6c0 Delete type=0 #130
|
||||
2025/02/25-21:35:34.562215 7fcd20bff6c0 Level-0 table #135: started
|
||||
2025/02/25-21:35:34.562254 7fcd20bff6c0 Level-0 table #135: 0 bytes OK
|
||||
2025/02/25-21:35:34.569203 7fcd20bff6c0 Delete type=0 #133
|
||||
2025/02/25-21:35:34.595331 7fcd20bff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.382121 7f59327fc6c0 Recovering log #110
|
||||
2025/02/21-17:31:59.393045 7f59327fc6c0 Delete type=3 #108
|
||||
2025/02/21-17:31:59.393142 7f59327fc6c0 Delete type=0 #110
|
||||
2025/02/21-17:36:32.666994 7f5693fff6c0 Level-0 table #115: started
|
||||
2025/02/21-17:36:32.667032 7f5693fff6c0 Level-0 table #115: 0 bytes OK
|
||||
2025/02/21-17:36:32.673540 7f5693fff6c0 Delete type=0 #113
|
||||
2025/02/21-17:36:32.681453 7f5693fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.541079 7fcd21ffb6c0 Recovering log #126
|
||||
2025/02/25-20:49:36.646693 7fcd21ffb6c0 Delete type=3 #124
|
||||
2025/02/25-20:49:36.646854 7fcd21ffb6c0 Delete type=0 #126
|
||||
2025/02/25-21:29:18.042069 7fcd20bff6c0 Level-0 table #131: started
|
||||
2025/02/25-21:29:18.042179 7fcd20bff6c0 Level-0 table #131: 0 bytes OK
|
||||
2025/02/25-21:29:18.079407 7fcd20bff6c0 Delete type=0 #129
|
||||
2025/02/25-21:29:18.220125 7fcd20bff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000054
|
||||
MANIFEST-000070
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.569000 7f59317fa6c0 Recovering log #52
|
||||
2025/02/21-17:37:17.629782 7f59317fa6c0 Delete type=3 #50
|
||||
2025/02/21-17:37:17.629902 7f59317fa6c0 Delete type=0 #52
|
||||
2025/02/21-17:40:09.834331 7f5693fff6c0 Level-0 table #57: started
|
||||
2025/02/21-17:40:09.834375 7f5693fff6c0 Level-0 table #57: 0 bytes OK
|
||||
2025/02/21-17:40:09.840764 7f5693fff6c0 Delete type=0 #55
|
||||
2025/02/21-17:40:09.840960 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.508866 7fcd217fa6c0 Recovering log #68
|
||||
2025/02/25-21:31:20.518964 7fcd217fa6c0 Delete type=3 #66
|
||||
2025/02/25-21:31:20.519090 7fcd217fa6c0 Delete type=0 #68
|
||||
2025/02/25-21:35:34.608401 7fcd20bff6c0 Level-0 table #73: started
|
||||
2025/02/25-21:35:34.608427 7fcd20bff6c0 Level-0 table #73: 0 bytes OK
|
||||
2025/02/25-21:35:34.615112 7fcd20bff6c0 Delete type=0 #71
|
||||
2025/02/25-21:35:34.621576 7fcd20bff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.412318 7f5931ffb6c0 Recovering log #48
|
||||
2025/02/21-17:31:59.424943 7f5931ffb6c0 Delete type=3 #46
|
||||
2025/02/21-17:31:59.425110 7f5931ffb6c0 Delete type=0 #48
|
||||
2025/02/21-17:36:32.673764 7f5693fff6c0 Level-0 table #53: started
|
||||
2025/02/21-17:36:32.673821 7f5693fff6c0 Level-0 table #53: 0 bytes OK
|
||||
2025/02/21-17:36:32.681210 7f5693fff6c0 Delete type=0 #51
|
||||
2025/02/21-17:36:32.681468 7f5693fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.767182 7fcd217fa6c0 Recovering log #64
|
||||
2025/02/25-20:49:36.873245 7fcd217fa6c0 Delete type=3 #62
|
||||
2025/02/25-20:49:36.873362 7fcd217fa6c0 Delete type=0 #64
|
||||
2025/02/25-21:29:18.123099 7fcd20bff6c0 Level-0 table #69: started
|
||||
2025/02/25-21:29:18.123157 7fcd20bff6c0 Level-0 table #69: 0 bytes OK
|
||||
2025/02/25-21:29:18.159308 7fcd20bff6c0 Delete type=0 #67
|
||||
2025/02/25-21:29:18.220157 7fcd20bff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000116
|
||||
MANIFEST-000132
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:37:17.505625 7f5931ffb6c0 Recovering log #114
|
||||
2025/02/21-17:37:17.563325 7f5931ffb6c0 Delete type=3 #112
|
||||
2025/02/21-17:37:17.563437 7f5931ffb6c0 Delete type=0 #114
|
||||
2025/02/21-17:40:09.826880 7f5693fff6c0 Level-0 table #119: started
|
||||
2025/02/21-17:40:09.826917 7f5693fff6c0 Level-0 table #119: 0 bytes OK
|
||||
2025/02/21-17:40:09.834168 7f5693fff6c0 Delete type=0 #117
|
||||
2025/02/21-17:40:09.840947 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-21:31:20.494910 7fcd227fc6c0 Recovering log #130
|
||||
2025/02/25-21:31:20.505934 7fcd227fc6c0 Delete type=3 #128
|
||||
2025/02/25-21:31:20.505982 7fcd227fc6c0 Delete type=0 #130
|
||||
2025/02/25-21:35:34.569418 7fcd20bff6c0 Level-0 table #135: started
|
||||
2025/02/25-21:35:34.569455 7fcd20bff6c0 Level-0 table #135: 0 bytes OK
|
||||
2025/02/25-21:35:34.575522 7fcd20bff6c0 Delete type=0 #133
|
||||
2025/02/25-21:35:34.595351 7fcd20bff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2025/02/21-17:31:59.396940 7f5930ff96c0 Recovering log #110
|
||||
2025/02/21-17:31:59.407606 7f5930ff96c0 Delete type=3 #108
|
||||
2025/02/21-17:31:59.407726 7f5930ff96c0 Delete type=0 #110
|
||||
2025/02/21-17:36:32.653673 7f5693fff6c0 Level-0 table #115: started
|
||||
2025/02/21-17:36:32.653768 7f5693fff6c0 Level-0 table #115: 0 bytes OK
|
||||
2025/02/21-17:36:32.660109 7f5693fff6c0 Delete type=0 #113
|
||||
2025/02/21-17:36:32.681412 7f5693fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
|
||||
2025/02/25-20:49:36.655819 7fcd22ffd6c0 Recovering log #126
|
||||
2025/02/25-20:49:36.756075 7fcd22ffd6c0 Delete type=3 #124
|
||||
2025/02/25-20:49:36.756252 7fcd22ffd6c0 Delete type=0 #126
|
||||
2025/02/25-21:29:18.079648 7fcd20bff6c0 Level-0 table #131: started
|
||||
2025/02/25-21:29:18.079709 7fcd20bff6c0 Level-0 table #131: 0 bytes OK
|
||||
2025/02/25-21:29:18.122915 7fcd20bff6c0 Delete type=0 #129
|
||||
2025/02/25-21:29:18.220147 7fcd20bff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user