Compare commits

...

6 Commits

60 changed files with 220 additions and 198 deletions

View File

@@ -6,7 +6,7 @@
import { EcrymeUtility } from "../common/ecryme-utility.js";
/* -------------------------------------------- */
export class EcrymeActorSheet extends ActorSheet {
export class EcrymeActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@@ -53,9 +53,9 @@ export class EcrymeActorSheet extends ActorSheet {
cephalySkills: this.actor.getCephalySkills(),
subActors: foundry.utils.duplicate(this.actor.getSubActors()),
annency: this.actor.getAnnency(),
description: await TextEditor.enrichHTML(this.object.system.biodata.description, { async: true }),
notes: await TextEditor.enrichHTML(this.object.system.biodata.notes, { async: true }),
equipementlibre: await TextEditor.enrichHTML(this.object.system.equipmentfree, { async: true }),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.description, { async: true }),
notes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.notes, { async: true }),
equipementlibre: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.equipmentfree, { async: true }),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,
@@ -63,7 +63,7 @@ export class EcrymeActorSheet extends ActorSheet {
}
this.formData = formData;
console.log("PC : ", formData, this.object);
//console.log("PC : ", formData, this.object);
return formData;
}

View File

@@ -6,7 +6,7 @@
import { EcrymeUtility } from "../common/ecryme-utility.js";
/* -------------------------------------------- */
export class EcrymeAnnencySheet extends ActorSheet {
export class EcrymeAnnencySheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {

View File

@@ -36,7 +36,7 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static async init() {
Hooks.on('renderChatLog', (log, html, data) => EcrymeUtility.chatListeners(html));
Hooks.on("getChatLogEntryContext", (html, options) => EcrymeUtility.chatMenuManager(html, options));
Hooks.on("getChatMessageContextOptions", (html, options) => EcrymeUtility.chatMenuManager(html, options));
this.rollDataStore = {}
this.defenderStore = {}
@@ -155,8 +155,8 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static getActorFromRollData(rollData) {
let actor = game.actors.get(rollData.actorId)
if (rollData.tokenId) {
let token = canvas.tokens.placeables.find(t => t.id == rollData.tokenId)
if (rollData.defenderTokenId) {
let token = canvas.tokens.placeables.find(t => t.id == rollData.defenderTokenId)
if (token) {
actor = token.actor
}
@@ -273,20 +273,17 @@ export class EcrymeUtility {
let canTranscendRoll = []
for (let i = 1; i <= 10; i++) {
canTranscendRoll[i] = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "rolldata")
//console.log(">>>>>>>>>>>>>>>>>>>>>>>>>> Menu !!!!", rollData)
if (rollData.skill && rollData.skill.value >= i && !rollData.transcendUsed && rollData.spec) {
return true
}
return false
return (rollData?.skill?.value >= i && !rollData.transcendUsed && rollData.spec)
}
options.push({
name: game.i18n.localize("ECRY.chat.spectranscend") + i,
icon: '<i class="fas fa-plus-square"></i>',
condition: canTranscendRoll[i],
callback: li => {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "rolldata")
EcrymeUtility.transcendFromSpec(rollData, i).catch("Error on Transcend")
}
@@ -297,27 +294,35 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static async chatListeners(html) {
html.on("click", '.button-select-confront', event => {
$(html).on("click", '.button-select-confront', event => {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "ecryme-rolldata")
ui.notifications.info(game.i18n.localize("ECRY.chat.confrontselect"))
EcrymeUtility.manageConfrontation(rollData)
})
html.on("click", '.button-apply-cephaly-difficulty', event => {
$(html).on("click", '.button-apply-cephaly-difficulty', event => {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "ecryme-rolldata")
let difficulty = $("#" + rollData.rollId + "-cephaly-difficulty").val()
EcrymeUtility.manageCephalyDifficulty(rollData, difficulty)
})
html.on("click", '.button-apply-impact', event => {
$(html).on("click", '.button-apply-impact', event => {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let actor = game.actors.get($(event.currentTarget).data("actor-id"))
let tokenId = $(event.currentTarget).data("token-id")
let actor
if (!tokenId) {
actorId = $(event.currentTarget).data("actor-id")
actor = game.actors.get(actorId)
} else {
let token = canvas.tokens.placeables.find(t => t.id == tokenId)
actor = token?.actor
}
actor.modifyImpact($(event.currentTarget).data("impact-type"), $(event.currentTarget).data("impact"), 1)
})
html.on("click", '.button-apply-bonus', event => {
$(html).on("click", '.button-apply-bonus', event => {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let actor = game.actors.get($(event.currentTarget).data("actor-id"))
@@ -339,7 +344,7 @@ export class EcrymeUtility {
'systems/fvtt-ecryme/templates/dialogs/partial-confront-bonus-area.hbs',
'systems/fvtt-ecryme/templates/actors/partial-impacts.hbs',
]
return loadTemplates(templatePaths);
return foundry.applications.handlebars.loadTemplates(templatePaths);
}
/* -------------------------------------------- */
@@ -575,7 +580,7 @@ export class EcrymeUtility {
this.computeResults(rollData)
let msg = await this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-ecryme/templates/chat/chat-generic-result.hbs`, rollData)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-ecryme/templates/chat/chat-generic-result.hbs`, rollData)
})
await msg.setFlag("world", "ecryme-rolldata", rollData)
console.log("Rolldata result", rollData)
@@ -718,11 +723,11 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static async confirmDelete(actorSheet, li) {
let itemId = li.data("item-id");
let msgTxt = "<p>Are you sure to remove this Item ?";
let msgTxt = "<p>Etes vous certain de souhaiter envoyer cet item dans les limbes ?";
let buttons = {
delete: {
icon: '<i class="fas fa-check"></i>',
label: "Yes, remove it",
label: "Oui, retirez-le",
callback: () => {
actorSheet.actor.deleteEmbeddedDocuments("Item", [itemId]);
li.slideUp(200, () => actorSheet.render(false));
@@ -730,7 +735,7 @@ export class EcrymeUtility {
},
cancel: {
icon: '<i class="fas fa-times"></i>',
label: "Cancel"
label: "Annuler"
}
}
msgTxt += "</p>";

View File

@@ -12,7 +12,7 @@ export class EcrymeConfrontDialog extends Dialog {
width: 620, height: 'fit-content', 'z-index': 99999
});
let html = await renderTemplate('systems/fvtt-ecryme/templates/dialogs/confront-dialog.hbs', rollData);
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-ecryme/templates/dialogs/confront-dialog.hbs', rollData);
return new EcrymeConfrontDialog(actor, rollData, html, options);
}

View File

@@ -5,9 +5,12 @@ export class EcrymeConfrontStartDialog extends Dialog {
/* -------------------------------------------- */
static async create(actor, rollData) {
if (!actor) throw new Error("Ecryme | No actor provided for confront dialog");
if (!rollData) throw new Error("Ecryme | No roll data provided for confront dialog");
if (actor?.token) rollData.tokenId = actor.token.id;
let options = { classes: ["fvtt-ecryme ecryme-confront-dialog"], width: 540, height: 'fit-content', 'z-index': 99999 }
let html = await renderTemplate('systems/fvtt-ecryme/templates/dialogs/confront-start-dialog.hbs', rollData);
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-ecryme/templates/dialogs/confront-start-dialog.hbs', rollData);
return new EcrymeConfrontStartDialog(actor, rollData, html, options);
}
@@ -43,7 +46,7 @@ export class EcrymeConfrontStartDialog extends Dialog {
super(conf, options);
this.actor = actor;
this.actor = actor?.token?.actor || actor;
this.rollData = rollData;
}

View File

@@ -6,7 +6,7 @@ export class EcrymeRollDialog extends Dialog {
static async create(actor, rollData) {
let options = { classes: ["ecryme-roll-dialog"], width: 540, height: 'fit-content', 'z-index': 99999 }
let html = await renderTemplate('systems/fvtt-ecryme/templates/dialogs/roll-dialog-generic.hbs', rollData);
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-ecryme/templates/dialogs/roll-dialog-generic.hbs', rollData);
return new EcrymeRollDialog(actor, rollData, html, options);
}
@@ -52,7 +52,6 @@ export class EcrymeRollDialog extends Dialog {
activateListeners(html) {
super.activateListeners(html);
var dialog = this;
function onLoad() {
}
$(function () { onLoad(); });

View File

@@ -57,18 +57,16 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-ecryme", EcrymeActorSheet, { types: ["pc"], makeDefault: true });
Actors.registerSheet("fvtt-ecryme", EcrymeActorSheet, { types: ["npc"], makeDefault: true });
Actors.registerSheet("fvtt-ecryme", EcrymeAnnencySheet, { types: ["annency"], makeDefault: false });
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
foundry.documents.collections.Actors.registerSheet("fvtt-ecryme", EcrymeActorSheet, { types: ["pc"], makeDefault: true });
foundry.documents.collections.Actors.registerSheet("fvtt-ecryme", EcrymeActorSheet, { types: ["npc"], makeDefault: true });
foundry.documents.collections.Actors.registerSheet("fvtt-ecryme", EcrymeAnnencySheet, { types: ["annency"], makeDefault: false });
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-ecryme", EcrymeItemSheet, { makeDefault: true });
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
foundry.documents.collections.Items.registerSheet("fvtt-ecryme", EcrymeItemSheet, { makeDefault: true });
EcrymeUtility.init()
Babele.get().setSystemTranslationsDir("translated")
});
/* -------------------------------------------- */
@@ -91,6 +89,7 @@ async function importDefaultScene() {
await game.scenes.documentClass.create(newDocuments);
game.scenes.find(i => i.name == "Landing page 1").activate();
}
}
/* -------------------------------------------- */
@@ -98,9 +97,6 @@ async function importDefaultScene() {
/* -------------------------------------------- */
Hooks.once("ready", function () {
// Load trranslations
Babele.get().setSystemTranslationsDir("translated")
// User warning
if (!game.user.isGM && game.user.character == undefined) {
ui.notifications.info("Attention ! Aucun personnage relié au joueur !");
@@ -122,6 +118,9 @@ Hooks.once("ready", function () {
EcrymeCharacterSummary.ready();
importDefaultScene();
// Load translations
Babele.get().setSystemTranslationsDir("translated")
})
@@ -138,4 +137,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
}
return true;
});

View File

@@ -4,7 +4,7 @@ import { EcrymeUtility } from "../common/ecryme-utility.js";
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class EcrymeItemSheet extends ItemSheet {
export class EcrymeItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
@@ -61,8 +61,8 @@ export class EcrymeItemSheet extends ItemSheet {
limited: this.object.limited,
options: this.options,
owner: this.document.isOwner,
description: await TextEditor.enrichHTML(this.object.system.description, { async: true }),
notes: await TextEditor.enrichHTML(this.object.system.notes, { async: true }),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, { async: true }),
notes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.notes, { async: true }),
isGM: game.user.isGM
}

Binary file not shown.

BIN
packs/equipment/000192.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000176
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/03/11-22:28:43.689446 7f24c57fa6c0 Recovering log #174
2025/03/11-22:28:43.742748 7f24c57fa6c0 Delete type=3 #172
2025/03/11-22:28:43.742876 7f24c57fa6c0 Delete type=0 #174
2025/03/11-22:29:05.490854 7f24c4bff6c0 Level-0 table #179: started
2025/03/11-22:29:05.490876 7f24c4bff6c0 Level-0 table #179: 0 bytes OK
2025/03/11-22:29:05.528875 7f24c4bff6c0 Delete type=0 #177
2025/03/11-22:29:05.604302 7f24c4bff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.935378 7f189effd6c0 Recovering log #223
2025/10/16-23:04:27.944998 7f189effd6c0 Delete type=3 #221
2025/10/16-23:04:27.945071 7f189effd6c0 Delete type=0 #223
2025/10/17-00:31:02.431129 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.431165 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.437211 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.444512 7f189e7fc6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/03/11-22:17:42.207103 7f24c5ffb6c0 Recovering log #169
2025/03/11-22:17:42.229307 7f24c5ffb6c0 Delete type=3 #167
2025/03/11-22:17:42.229364 7f24c5ffb6c0 Delete type=0 #169
2025/03/11-22:28:37.828063 7f24c4bff6c0 Level-0 table #175: started
2025/03/11-22:28:37.828090 7f24c4bff6c0 Level-0 table #175: 0 bytes OK
2025/03/11-22:28:37.835412 7f24c4bff6c0 Delete type=0 #173
2025/03/11-22:28:37.855865 7f24c4bff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.315581 7ff26f7fe6c0 Recovering log #219
2025/10/02-22:42:43.325193 7ff26f7fe6c0 Delete type=3 #217
2025/10/02-22:42:43.325254 7ff26f7fe6c0 Delete type=0 #219
2025/10/02-22:46:10.718055 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.718108 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.724165 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737951 7ff26ebff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/help/000129.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000113
MANIFEST-000162

View File

@@ -1,8 +1,8 @@
2025/03/11-22:28:43.904749 7f24c6ffd6c0 Recovering log #111
2025/03/11-22:28:43.971386 7f24c6ffd6c0 Delete type=3 #109
2025/03/11-22:28:43.971494 7f24c6ffd6c0 Delete type=0 #111
2025/03/11-22:29:05.641249 7f24c4bff6c0 Level-0 table #116: started
2025/03/11-22:29:05.641276 7f24c4bff6c0 Level-0 table #116: 0 bytes OK
2025/03/11-22:29:05.674923 7f24c4bff6c0 Delete type=0 #114
2025/03/11-22:29:05.723243 7f24c4bff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/03/11-22:29:05.762798 7f24c4bff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.987583 7f189f7fe6c0 Recovering log #160
2025/10/16-23:04:27.998975 7f189f7fe6c0 Delete type=3 #158
2025/10/16-23:04:27.999065 7f189f7fe6c0 Delete type=0 #160
2025/10/17-00:31:02.437340 7f189e7fc6c0 Level-0 table #165: started
2025/10/17-00:31:02.437367 7f189e7fc6c0 Level-0 table #165: 0 bytes OK
2025/10/17-00:31:02.444287 7f189e7fc6c0 Delete type=0 #163
2025/10/17-00:31:02.444526 7f189e7fc6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/17-00:31:02.454473 7f189e7fc6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2025/03/11-22:17:42.313432 7f24c57fa6c0 Recovering log #106
2025/03/11-22:17:42.340002 7f24c57fa6c0 Delete type=3 #104
2025/03/11-22:17:42.340070 7f24c57fa6c0 Delete type=0 #106
2025/03/11-22:28:37.842072 7f24c4bff6c0 Level-0 table #112: started
2025/03/11-22:28:37.842115 7f24c4bff6c0 Level-0 table #112: 0 bytes OK
2025/03/11-22:28:37.848681 7f24c4bff6c0 Delete type=0 #110
2025/03/11-22:28:37.855911 7f24c4bff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/03/11-22:28:37.855943 7f24c4bff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.369243 7ff26ffff6c0 Recovering log #156
2025/10/02-22:42:43.379551 7ff26ffff6c0 Delete type=3 #154
2025/10/02-22:42:43.379614 7ff26ffff6c0 Delete type=0 #156
2025/10/02-22:46:10.762665 7ff26ebff6c0 Level-0 table #161: started
2025/10/02-22:46:10.762700 7ff26ebff6c0 Level-0 table #161: 0 bytes OK
2025/10/02-22:46:10.769189 7ff26ebff6c0 Delete type=0 #159
2025/10/02-22:46:10.769383 7ff26ebff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.779762 7ff26ebff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/help/MANIFEST-000162 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/maneuvers/000192.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000176
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/03/11-22:28:43.852356 7f24c67fc6c0 Recovering log #174
2025/03/11-22:28:43.902310 7f24c67fc6c0 Delete type=3 #172
2025/03/11-22:28:43.902433 7f24c67fc6c0 Delete type=0 #174
2025/03/11-22:29:05.604411 7f24c4bff6c0 Level-0 table #179: started
2025/03/11-22:29:05.604444 7f24c4bff6c0 Level-0 table #179: 0 bytes OK
2025/03/11-22:29:05.641128 7f24c4bff6c0 Delete type=0 #177
2025/03/11-22:29:05.723220 7f24c4bff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.975607 7f18a4ffa6c0 Recovering log #223
2025/10/16-23:04:27.985618 7f18a4ffa6c0 Delete type=3 #221
2025/10/16-23:04:27.985677 7f18a4ffa6c0 Delete type=0 #223
2025/10/17-00:31:02.386862 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.386912 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.393931 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413626 7f189e7fc6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/03/11-22:17:42.287558 7f24c6ffd6c0 Recovering log #169
2025/03/11-22:17:42.309970 7f24c6ffd6c0 Delete type=3 #167
2025/03/11-22:17:42.310079 7f24c6ffd6c0 Delete type=0 #169
2025/03/11-22:28:37.821422 7f24c4bff6c0 Level-0 table #175: started
2025/03/11-22:28:37.821461 7f24c4bff6c0 Level-0 table #175: 0 bytes OK
2025/03/11-22:28:37.827638 7f24c4bff6c0 Delete type=0 #173
2025/03/11-22:28:37.827871 7f24c4bff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.357117 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.366815 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.366872 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.756135 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.756193 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.762494 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.769374 7ff26ebff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/scenes/000090.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000060
MANIFEST-000111

View File

@@ -1,8 +1,8 @@
2025/03/11-22:28:43.794986 7f24c6ffd6c0 Recovering log #58
2025/03/11-22:28:43.848806 7f24c6ffd6c0 Delete type=3 #56
2025/03/11-22:28:43.848927 7f24c6ffd6c0 Delete type=0 #58
2025/03/11-22:29:05.569282 7f24c4bff6c0 Level-0 table #63: started
2025/03/11-22:29:05.569313 7f24c4bff6c0 Level-0 table #63: 0 bytes OK
2025/03/11-22:29:05.604065 7f24c4bff6c0 Delete type=0 #61
2025/03/11-22:29:05.604324 7f24c4bff6c0 Manual compaction at level-0 from '!scenes!YYBr138LR7ntGFdo' @ 72057594037927935 : 1 .. '!scenes!wJJTdzEVyJpkUXaM' @ 0 : 0; will stop at (end)
2025/03/11-22:29:05.675098 7f24c4bff6c0 Manual compaction at level-1 from '!scenes!YYBr138LR7ntGFdo' @ 72057594037927935 : 1 .. '!scenes!wJJTdzEVyJpkUXaM' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.962699 7f189f7fe6c0 Recovering log #109
2025/10/16-23:04:27.972819 7f189f7fe6c0 Delete type=3 #107
2025/10/16-23:04:27.972872 7f189f7fe6c0 Delete type=0 #109
2025/10/17-00:31:02.407461 7f189e7fc6c0 Level-0 table #114: started
2025/10/17-00:31:02.407488 7f189e7fc6c0 Level-0 table #114: 0 bytes OK
2025/10/17-00:31:02.413518 7f189e7fc6c0 Delete type=0 #112
2025/10/17-00:31:02.413653 7f189e7fc6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/17-00:31:02.413685 7f189e7fc6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2025/03/11-22:17:42.261222 7f24c57fa6c0 Recovering log #53
2025/03/11-22:17:42.284333 7f24c57fa6c0 Delete type=3 #51
2025/03/11-22:17:42.284459 7f24c57fa6c0 Delete type=0 #53
2025/03/11-22:28:37.807470 7f24c4bff6c0 Level-0 table #59: started
2025/03/11-22:28:37.807537 7f24c4bff6c0 Level-0 table #59: 0 bytes OK
2025/03/11-22:28:37.814273 7f24c4bff6c0 Delete type=0 #57
2025/03/11-22:28:37.827846 7f24c4bff6c0 Manual compaction at level-0 from '!scenes!YYBr138LR7ntGFdo' @ 72057594037927935 : 1 .. '!scenes!wJJTdzEVyJpkUXaM' @ 0 : 0; will stop at (end)
2025/03/11-22:28:37.828046 7f24c4bff6c0 Manual compaction at level-1 from '!scenes!YYBr138LR7ntGFdo' @ 72057594037927935 : 1 .. '!scenes!wJJTdzEVyJpkUXaM' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.343031 7ff26ffff6c0 Recovering log #105
2025/10/02-22:42:43.353479 7ff26ffff6c0 Delete type=3 #103
2025/10/02-22:42:43.353550 7ff26ffff6c0 Delete type=0 #105
2025/10/02-22:46:10.730732 7ff26ebff6c0 Level-0 table #110: started
2025/10/02-22:46:10.730767 7ff26ebff6c0 Level-0 table #110: 0 bytes OK
2025/10/02-22:46:10.737713 7ff26ebff6c0 Delete type=0 #108
2025/10/02-22:46:10.737975 7ff26ebff6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.738002 7ff26ebff6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000176
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/03/11-22:28:43.632057 7f24c5ffb6c0 Recovering log #174
2025/03/11-22:28:43.687014 7f24c5ffb6c0 Delete type=3 #172
2025/03/11-22:28:43.687139 7f24c5ffb6c0 Delete type=0 #174
2025/03/11-22:29:05.529067 7f24c4bff6c0 Level-0 table #179: started
2025/03/11-22:29:05.529094 7f24c4bff6c0 Level-0 table #179: 0 bytes OK
2025/03/11-22:29:05.569107 7f24c4bff6c0 Delete type=0 #177
2025/03/11-22:29:05.604312 7f24c4bff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.922340 7f189f7fe6c0 Recovering log #223
2025/10/16-23:04:27.932658 7f189f7fe6c0 Delete type=3 #221
2025/10/16-23:04:27.932743 7f189f7fe6c0 Delete type=0 #223
2025/10/17-00:31:02.394067 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.394095 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.400645 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413636 7f189e7fc6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/03/11-22:17:42.183744 7f24c67fc6c0 Recovering log #169
2025/03/11-22:17:42.204063 7f24c67fc6c0 Delete type=3 #167
2025/03/11-22:17:42.204124 7f24c67fc6c0 Delete type=0 #169
2025/03/11-22:28:37.801121 7f24c4bff6c0 Level-0 table #175: started
2025/03/11-22:28:37.801173 7f24c4bff6c0 Level-0 table #175: 0 bytes OK
2025/03/11-22:28:37.807280 7f24c4bff6c0 Delete type=0 #173
2025/03/11-22:28:37.827819 7f24c4bff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.301864 7ff26ffff6c0 Recovering log #219
2025/10/02-22:42:43.312602 7ff26ffff6c0 Delete type=3 #217
2025/10/02-22:42:43.312680 7ff26ffff6c0 Delete type=0 #219
2025/10/02-22:46:10.711801 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.711844 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.717835 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737937 7ff26ebff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/traits/000192.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000176
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/03/11-22:28:43.745519 7f24c67fc6c0 Recovering log #174
2025/03/11-22:28:43.792356 7f24c67fc6c0 Delete type=3 #172
2025/03/11-22:28:43.792465 7f24c67fc6c0 Delete type=0 #174
2025/03/11-22:29:05.462231 7f24c4bff6c0 Level-0 table #179: started
2025/03/11-22:29:05.462271 7f24c4bff6c0 Level-0 table #179: 0 bytes OK
2025/03/11-22:29:05.490724 7f24c4bff6c0 Delete type=0 #177
2025/03/11-22:29:05.604286 7f24c4bff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.948519 7f189ffff6c0 Recovering log #223
2025/10/16-23:04:27.959741 7f189ffff6c0 Delete type=3 #221
2025/10/16-23:04:27.959811 7f189ffff6c0 Delete type=0 #223
2025/10/17-00:31:02.400771 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.400802 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.407358 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413646 7f189e7fc6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/03/11-22:17:42.232923 7f24c6ffd6c0 Recovering log #169
2025/03/11-22:17:42.257730 7f24c6ffd6c0 Delete type=3 #167
2025/03/11-22:17:42.257832 7f24c6ffd6c0 Delete type=0 #169
2025/03/11-22:28:37.814417 7f24c4bff6c0 Level-0 table #175: started
2025/03/11-22:28:37.814450 7f24c4bff6c0 Level-0 table #175: 0 bytes OK
2025/03/11-22:28:37.821238 7f24c4bff6c0 Delete type=0 #173
2025/03/11-22:28:37.827860 7f24c4bff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.327925 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.339012 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.339080 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.724277 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.724304 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.730560 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737964 7ff26ebff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -454,9 +454,11 @@ section.sheet-body{padding: 0.25rem 0.5rem;}
/* background: rgb(245,245,240) url("../images/ui/fond4.webp") repeat left top;*/
nav.sheet-tabs a,
nav.sheet-tabs .item {
position: relative;
padding: 0 0.25rem;
color: beige;
}
nav.sheet-tabs .item:after {

View File

@@ -104,8 +104,8 @@
"license": "LICENSE.txt",
"manifest": "https://www.uberwald.me/gitea/public/fvtt-ecryme/raw/branch/master/system.json",
"compatibility": {
"minimum": "12",
"verified": "12"
"minimum": "13",
"verified": "13"
},
"id": "fvtt-ecryme",
"primaryTokenAttribute": "secondary.health",
@@ -125,7 +125,7 @@
},
"title": "Ecryme, le Jeu de Rôles",
"url": "https://www.uberwald.me/gitea/public/fvtt-ecryme",
"version": "12.0.2",
"download": "https://www.uberwald.me/gitea/public/fvtt-ecryme/archive/fvtt-ecryme-v12.0.2.zip",
"version": "13.0.2",
"download": "https://www.uberwald.me/gitea/public/fvtt-ecryme/archive/fvtt-ecryme-v13.0.2.zip",
"background": "systems/fvtt-ecryme/images/assets/ecryme_extract_panel_01.webp"
}

View File

@@ -31,26 +31,31 @@
"pnjvalue": 0,
"skilllist": {
"athletics": {
"key": "athletics",
"name": "ECRY.ui.athletics",
"max": 0,
"value": 0
},
"driving": {
"key": "driving",
"name": "ECRY.ui.driving",
"max": 0,
"value": 0
},
"fencing": {
"key": "fencing",
"name": "ECRY.ui.fencing",
"max": 0,
"value": 0
},
"brawling": {
"key": "brawling",
"name": "ECRY.ui.brawling",
"max": 0,
"value": 0
},
"shooting": {
"key": "shooting",
"name": "ECRY.ui.shooting",
"max": 0,
"value": 0
@@ -62,26 +67,31 @@
"pnjvalue": 0,
"skilllist": {
"anthropomecanology": {
"key": "anthropomecanology",
"name": "ECRY.ui.anthropomecanology",
"value": 0,
"max": 10
},
"ecrymology": {
"key": "ecrymology",
"name": "ECRY.ui.ecrymology",
"value": 0,
"max": 10
},
"traumatology": {
"key": "traumatology",
"name": "ECRY.ui.traumatology",
"value": 0,
"max": 10
},
"traversology": {
"key": "traversology",
"name": "ECRY.ui.traversology",
"value": 0,
"max": 10
},
"urbatechnology": {
"key": "urbatechnology",
"name": "ECRY.ui.urbatechnology",
"value": 0,
"max": 10
@@ -93,26 +103,31 @@
"pnjvalue": 0,
"skilllist": {
"quibbling": {
"key": "quibbling",
"name": "ECRY.ui.quibbling",
"value": 0,
"max": 10
},
"creativity": {
"key": "creativity",
"name": "ECRY.ui.creativity",
"value": 0,
"max": 10
},
"loquacity": {
"key": "loquacity",
"name": "ECRY.ui.loquacity",
"value": 0,
"max": 10
},
"guile": {
"key": "guile",
"name": "ECRY.ui.guile",
"value": 0,
"max": 10
},
"performance": {
"key": "performance",
"name": "ECRY.ui.performance",
"value": 0,
"max": 10

View File

@@ -15,7 +15,7 @@
<div>
<ul>
<li>Confrontation : {{rollData1.alias}} vs {{rollData2.alias}}</li>
<li><strong>Confrontation</strong> : {{rollData1.alias}} vs {{rollData2.alias}}</li>
<li>{{localize rollData1.skill.name}} ({{rollData1.skill.value}}) vs {{localize rollData2.skill.name}} ({{rollData2.skill.value}}) </li>
<li>{{rollData1.executionTotal}} vs {{rollData2.preservationTotal}} : {{marginExecution}}</li>
<li>{{rollData1.preservationTotal}} vs {{rollData2.executionTotal}} : {{marginPreservation}}</li>
@@ -32,21 +32,21 @@
<li>{{localize "ECRY.ui.effect"}} {{localize "ECRY.ui.execution"}} : {{effectExecution}}</li>
{{#if impactExecution}}
<li>Impact {{rollData2.alias}} : 1 {{localize (concat "ECRY.ui." impactExecution)}}</li>
<button class="button-apply-impact" data-actor-id="{{rollData2.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactExecution}}">{{localize "ECRY.ui.applyimpact"}}</button>
<button class="button-apply-impact" data-token-id="{{rollData2.tokenId}}" data-actor-id="{{rollData2.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactExecution}}">{{localize "ECRY.ui.applyimpact"}}</button>
{{/if}}
{{#if bonus2}}
<li>Bonus {{rollData2.alias}} : {{bonus2}}</li>
<button class="button-apply-bonus" data-actor-id="{{rollData2.actorId}}" data-bonus="{{bonus2}}">{{localize "ECRY.ui.applybonus"}}</button>
<button class="button-apply-bonus" data-token-id="{{rollData2.tokenId}}" data-actor-id="{{rollData2.actorId}}" data-bonus="{{bonus2}}">{{localize "ECRY.ui.applybonus"}}</button>
{{/if}}
<li>{{localize "ECRY.ui.effect"}} {{localize "ECRY.ui.preservation"}} : {{effectPreservation}}</li>
{{#if impactPreservation}}
<li>Impact {{rollData1.alias}} : 1 {{localize (concat "ECRY.ui." impactPreservation)}}</li>
<button class="button-apply-impact" data-actor-id="{{rollData1.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactPreservation}}">{{localize "ECRY.ui.applyimpact"}}</button>
<button class="button-apply-impact" data-token-id="{{rollData1.tokenId}}" data-actor-id="{{rollData1.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactPreservation}}">{{localize "ECRY.ui.applyimpact"}}</button>
{{/if}}
{{#if bonus1}}
<li>Bonus {{rollData1.alias}} : {{bonus1}}</li>
<button class="button-apply-bonus" data-actor-id="{{rollData1.actorId}}" data-bonus="{{bonus1}}">{{localize "ECRY.ui.applybonus"}}</button>
<button class="button-apply-bonus" data-token-id="{{rollData1.tokenId}}" data-actor-id="{{rollData1.actorId}}" data-bonus="{{bonus1}}">{{localize "ECRY.ui.applybonus"}}</button>
{{/if}}
</ul>
</div>