diff --git a/assets/ui/landing_page_mournblade.webp b/assets/ui/landing_page_mournblade.webp new file mode 100644 index 0000000..8b38136 Binary files /dev/null and b/assets/ui/landing_page_mournblade.webp differ diff --git a/lang/fr.json b/lang/fr.json index b7bb229..03a8575 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -2,7 +2,7 @@ "TYPES": { "Actor": { "personnage": "Personnage", - "PNJ": "PNJ" + "creature": "Créature" }, "Item": { "arme": "Arme", @@ -21,7 +21,8 @@ "metier": "Métier", "runeeffect": "Effet de Rune", "bouclier": "Bouclier", - "modifier": "Modificateur" + "modifier": "Modificateur", + "traitespece": "Trait d'Espèce" } } } \ No newline at end of file diff --git a/modules/mournblade-actor-sheet.js b/modules/mournblade-actor-sheet.js index 608197b..7d97fbc 100644 --- a/modules/mournblade-actor-sheet.js +++ b/modules/mournblade-actor-sheet.js @@ -49,6 +49,7 @@ export class MournbladeActorSheet extends ActorSheet { tendances:duplicate(this.actor.getTendances()), runes:duplicate(this.actor.getRunes()), traitsChaotiques:duplicate(this.actor.getTraitsChaotiques()), + traitsEspeces: duplicate(this.actor.getTraitsEspeces()), origine: duplicate(this.actor.getOrigine() || {}), heritage: duplicate(this.actor.getHeritage() || {}), metier: duplicate(this.actor.getMetier() || {}), @@ -134,6 +135,12 @@ export class MournbladeActorSheet extends ActorSheet { let armeId = li.data("item-id") this.actor.rollArmeOffensif(armeId) }) + html.find('.roll-arme-special').click((event) => { + const li = $(event.currentTarget).parents(".item") + let armeId = li.data("item-id") + this.actor.rollArmeSpecial(armeId) + }) + html.find('.roll-arme-degats').click((event) => { const li = $(event.currentTarget).parents(".item") let armeId = li.data("item-id") diff --git a/modules/mournblade-actor.js b/modules/mournblade-actor.js index 54f6b4b..09936ea 100644 --- a/modules/mournblade-actor.js +++ b/modules/mournblade-actor.js @@ -41,9 +41,14 @@ export class MournbladeActor extends Actor { const skills = await MournbladeUtility.loadCompendium("fvtt-mournblade.skills") data.items = skills.map(i => i.toObject()) } - if (data.type == 'pnj') { + if (data.type == 'creature') { + const skills = await MournbladeUtility.loadCompendium("fvtt-mournblade.skills-creatures") + data.items = skills.map(i => i.toObject()) + data.items.push({ name: "Arme naturelle 1", type: 'arme', img: "systems/fvtt-mournblade/assets/icons/arme.webp", system: { typearme: "contact", bonusmaniementoff: 0, seuildefense: 0, degats: "0" } }) + data.items.push({ name: "Arme naturelle 2", type: 'arme', img: "systems/fvtt-mournblade/assets/icons/arme.webp", system: { typearme: "contact", bonusmaniementoff: 0, seuildefense: 0, degats: "0" } }) } + return super.create(data, options); } @@ -146,6 +151,9 @@ export class MournbladeActor extends Actor { getTraitsChaotiques() { return this.getItemSorted(["traitchaotique"]) } + getTraitsEspeces() { + return this.getItemSorted(["traitespece"]) + } getMonnaies() { return this.getItemSorted(["monnaie"]) } @@ -432,6 +440,9 @@ export class MournbladeActor extends Actor { /* -------------------------------------------- */ getBonusDegats() { + if (this.type == "creature") { + return 0 + } return __degatsBonus[this.system.attributs.pui.value] } @@ -513,6 +524,23 @@ export class MournbladeActor extends Actor { } return bestArme } + /* -------------------------------------------- */ + depenseRessources(arme) { + if (arme.system.nbressources && Number(arme.system.nbressources) > 0) { + if (this.type == "creature") { + let ressources = duplicate(this.system.ressources) + ressources.value -= arme.system.nbressources + this.update({ 'system.ressources': ressources }) + ChatMessage.create({ + content: "L'utilisation de la capacité/arme a dépensé " + arme.system.nbressources + " ressources.", + whisper: game.user._id, + user: game.user._id + }); + } else { + ui.notifications.warn("Les ressources ne sont pas disponibles pour les personnages.") + } + } + } /* -------------------------------------------- */ getCommonRollData(attrKey = undefined, compId = undefined, compName = undefined) { @@ -601,10 +629,22 @@ export class MournbladeActor extends Actor { rollData.selectDifficulte = false } console.log("ARME!", rollData) + this.depenseRessources(arme) let rollDialog = await MournbladeRollDialog.create(this, rollData) rollDialog.render(true) } + /* -------------------------------------------- */ + async rollArmeSpecial(armeId) { + let arme = this.items.get(armeId) + if (arme) { + MournbladeUtility.createChatWithRollMode("GM", { + content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.html`, arme) + }, arme) + this.depenseRessources(arme) + } + } + /* -------------------------------------------- */ async rollArmeDegats(armeId) { let arme = this.items.get(armeId) diff --git a/modules/mournblade-creature-sheet.js b/modules/mournblade-creature-sheet.js new file mode 100644 index 0000000..2b676f6 --- /dev/null +++ b/modules/mournblade-creature-sheet.js @@ -0,0 +1,25 @@ +/** + * Extend the basic ActorSheet with some very simple modifications + * @extends {ActorSheet} + */ + +import { MournbladeActorSheet } from "./mournblade-actor-sheet.js"; +import { MournbladeUtility } from "./mournblade-utility.js"; + +/* -------------------------------------------- */ +export class MournbladeCreatureSheet extends MournbladeActorSheet { + + /** @override */ + static get defaultOptions() { + + return mergeObject(super.defaultOptions, { + classes: ["fvtt-mournblade", "sheet", "actor"], + template: "systems/fvtt-mournblade/templates/creature-sheet.html", + width: 640, + height: 720, + tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }], + dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }], + editScore: false + }) + } +} diff --git a/modules/mournblade-item.js b/modules/mournblade-item.js index 3c5c5ec..7b308c2 100644 --- a/modules/mournblade-item.js +++ b/modules/mournblade-item.js @@ -14,6 +14,7 @@ export const defaultItemImg = { runeeffect: "systems/fvtt-mournblade/assets/icons/rune.webp", tendance: "systems/fvtt-mournblade/assets/icons/tendance.webp", traitchaotique: "systems/fvtt-mournblade/assets/icons/traitchaotique.webp", + traitespece: "systems/fvtt-mournblade/assets/icons/capacite.webp" } /** diff --git a/modules/mournblade-main.js b/modules/mournblade-main.js index 9cdd21e..249fda0 100644 --- a/modules/mournblade-main.js +++ b/modules/mournblade-main.js @@ -11,12 +11,11 @@ import { MournbladeActor } from "./mournblade-actor.js"; import { MournbladeItemSheet } from "./mournblade-item-sheet.js"; import { MournbladeActorSheet } from "./mournblade-actor-sheet.js"; -//import { MournbladeNPCSheet } from "./mournblade-npc-sheet.js"; +import { MournbladeCreatureSheet } from "./mournblade-creature-sheet.js"; import { MournbladeUtility } from "./mournblade-utility.js"; import { MournbladeCombat } from "./mournblade-combat.js"; import { MournbladeItem } from "./mournblade-item.js"; import { MOURNBLADE_CONFIG } from "./mournblade-config.js"; -import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js" /* -------------------------------------------- */ /* Foundry VTT Initialization */ @@ -55,7 +54,7 @@ Hooks.once("init", async function () { // Register sheet application classes Actors.unregisterSheet("core", ActorSheet); Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true }) - //Actors.registerSheet("fvtt-mournblade", MournbladeNPCSheet, { types: ["npc"], makeDefault: false }); + Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true }) Items.unregisterSheet("core", ItemSheet); Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true }) @@ -77,6 +76,17 @@ function welcomeMessage() { ` }); } +/* -------------------------------------------- */ +async function importDefaultScene() { + let exists = game.scenes.find(j => j.name == "Accueil"); + if (!exists) { + const scenes = await MournbladeUtility.loadCompendium("fvtt-mournblade.scenes") + let newDocuments = scenes.filter(i => i.name == "Accueil"); + await game.scenes.documentClass.create(newDocuments); + game.scenes.find(i => i.name == "Accueil").activate(); + } +} + /* -------------------------------------------- */ /* Foundry VTT Initialization */ /* -------------------------------------------- */ @@ -91,8 +101,22 @@ Hooks.once("ready", function () { user: game.user._id }); } + if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) { + ui.notifications.info("Le token de du joueur n'est pas connecté à l'acteur !"); + ChatMessage.create({ + content: "ATTENTION Le token du joueur " + game.user.name + " n'est pas connecté à l'acteur !", + user: game.user._id + }); + } - ClassCounter.registerUsageCount(); + import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{ + console.log("ClassCounter loaded", moduleCounter) + moduleCounter.ClassCounter.registerUsageCount() + }).catch(err=> + console.log("No stats available, giving up.") + ) + + importDefaultScene(); welcomeMessage(); }); diff --git a/modules/mournblade-utility.js b/modules/mournblade-utility.js index 88c5d01..2653a72 100644 --- a/modules/mournblade-utility.js +++ b/modules/mournblade-utility.js @@ -181,7 +181,8 @@ export class MournbladeUtility { const templatePaths = [ 'systems/fvtt-mournblade/templates/editor-notes-gm.html', 'systems/fvtt-mournblade/templates/partial-item-description.html', - 'systems/fvtt-mournblade/templates/partial-list-niveau.html' + 'systems/fvtt-mournblade/templates/partial-list-niveau.html', + 'systems/fvtt-mournblade/templates/partial-list-niveau-creature.html' ] return loadTemplates(templatePaths); } @@ -532,6 +533,9 @@ export class MournbladeUtility { let degats = rollData.finalResult let type = (rollData.arme.system.nonletaux) ? "nonletaux" : "letaux" + if (rollData.arme.system.ignorearmure) { + rollData.ignoreDefenseArmor = true + } defender.incDecSante(type, +degats, rollData.ignoreDefenseArmor) ui.notifications.info(defender.name + "a subi " + degats + " points de santé " + type + ".") } diff --git a/packs/armes/000005.ldb b/packs/armes/000005.ldb deleted file mode 100644 index 065208a..0000000 Binary files a/packs/armes/000005.ldb and /dev/null differ diff --git a/packs/armes/000090.ldb b/packs/armes/000090.ldb new file mode 100644 index 0000000..df26e3d Binary files /dev/null and b/packs/armes/000090.ldb differ diff --git a/packs/armes/000084.log b/packs/armes/000151.log similarity index 100% rename from packs/armes/000084.log rename to packs/armes/000151.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index d4b9a0f..1dec270 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000149 diff --git a/packs/armes/LOG b/packs/armes/LOG index 0a14648..f6b58de 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.895542 7ff8897fa6c0 Recovering log #80 -2023/12/29-18:08:02.906834 7ff8897fa6c0 Delete type=3 #78 -2023/12/29-18:08:02.906922 7ff8897fa6c0 Delete type=0 #80 -2023/12/29-18:35:10.992944 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:10.992987 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.000315 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.000621 7ff888ff96c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.000680 7ff888ff96c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.526498 7f74df4006c0 Recovering log #147 +2024/03/02-23:57:42.536661 7f74df4006c0 Delete type=3 #145 +2024/03/02-23:57:42.536714 7f74df4006c0 Delete type=0 #147 +2024/03/02-23:57:56.281201 7f74dda006c0 Level-0 table #152: started +2024/03/02-23:57:56.281223 7f74dda006c0 Level-0 table #152: 0 bytes OK +2024/03/02-23:57:56.287599 7f74dda006c0 Delete type=0 #150 +2024/03/02-23:57:56.287862 7f74dda006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.287903 7f74dda006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index 007f2a7..f86e79e 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.193477 7ff88affd6c0 Recovering log #76 -2023/12/29-18:01:15.204268 7ff88affd6c0 Delete type=3 #74 -2023/12/29-18:01:15.204515 7ff88affd6c0 Delete type=0 #76 -2023/12/29-18:06:09.125188 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.125260 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.131577 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.138438 7ff888ff96c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.138539 7ff888ff96c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.186271 7f74dfe006c0 Recovering log #143 +2024/03/02-23:56:59.241028 7f74dfe006c0 Delete type=3 #141 +2024/03/02-23:56:59.241158 7f74dfe006c0 Delete type=0 #143 +2024/03/02-23:57:31.484234 7f74dda006c0 Level-0 table #148: started +2024/03/02-23:57:31.484262 7f74dda006c0 Level-0 table #148: 0 bytes OK +2024/03/02-23:57:31.491281 7f74dda006c0 Delete type=0 #146 +2024/03/02-23:57:31.497473 7f74dda006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.497513 7f74dda006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) diff --git a/packs/armes/MANIFEST-000082 b/packs/armes/MANIFEST-000082 deleted file mode 100644 index 9a0243d..0000000 Binary files a/packs/armes/MANIFEST-000082 and /dev/null differ diff --git a/packs/armes/MANIFEST-000149 b/packs/armes/MANIFEST-000149 new file mode 100644 index 0000000..c5a807b Binary files /dev/null and b/packs/armes/MANIFEST-000149 differ diff --git a/packs/dons/000084.log b/packs/dons/000150.log similarity index 100% rename from packs/dons/000084.log rename to packs/dons/000150.log diff --git a/packs/dons/CURRENT b/packs/dons/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/dons/CURRENT +++ b/packs/dons/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/dons/LOG b/packs/dons/LOG index 430d107..b09170e 100644 --- a/packs/dons/LOG +++ b/packs/dons/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.938259 7ff88a7fc6c0 Recovering log #80 -2023/12/29-18:08:02.948723 7ff88a7fc6c0 Delete type=3 #78 -2023/12/29-18:08:02.948819 7ff88a7fc6c0 Delete type=0 #80 -2023/12/29-18:35:11.014647 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.014703 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.021128 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.027714 7ff888ff96c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.027775 7ff888ff96c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.563649 7f74e4c006c0 Recovering log #146 +2024/03/02-23:57:42.574178 7f74e4c006c0 Delete type=3 #144 +2024/03/02-23:57:42.574278 7f74e4c006c0 Delete type=0 #146 +2024/03/02-23:57:56.288017 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.288073 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.294465 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.314039 7f74dda006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.314072 7f74dda006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) diff --git a/packs/dons/LOG.old b/packs/dons/LOG.old index 518bdc9..9e9e6c3 100644 --- a/packs/dons/LOG.old +++ b/packs/dons/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.233956 7ff8897fa6c0 Recovering log #76 -2023/12/29-18:01:15.244628 7ff8897fa6c0 Delete type=3 #74 -2023/12/29-18:01:15.244714 7ff8897fa6c0 Delete type=0 #76 -2023/12/29-18:06:09.152915 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.152950 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.160381 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.166827 7ff888ff96c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.166900 7ff888ff96c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.375192 7f74dea006c0 Recovering log #142 +2024/03/02-23:56:59.429489 7f74dea006c0 Delete type=3 #140 +2024/03/02-23:56:59.429674 7f74dea006c0 Delete type=0 #142 +2024/03/02-23:57:31.510659 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.510687 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.516967 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.531943 7f74dda006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.532000 7f74dda006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) diff --git a/packs/dons/MANIFEST-000082 b/packs/dons/MANIFEST-000082 deleted file mode 100644 index e8d0e6e..0000000 Binary files a/packs/dons/MANIFEST-000082 and /dev/null differ diff --git a/packs/dons/MANIFEST-000148 b/packs/dons/MANIFEST-000148 new file mode 100644 index 0000000..724aba4 Binary files /dev/null and b/packs/dons/MANIFEST-000148 differ diff --git a/packs/equipement/000084.log b/packs/equipement/000150.log similarity index 100% rename from packs/equipement/000084.log rename to packs/equipement/000150.log diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/equipement/CURRENT +++ b/packs/equipement/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/equipement/LOG b/packs/equipement/LOG index 3563f12..43a2dc3 100644 --- a/packs/equipement/LOG +++ b/packs/equipement/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.922917 7ff889ffb6c0 Recovering log #80 -2023/12/29-18:08:02.933943 7ff889ffb6c0 Delete type=3 #78 -2023/12/29-18:08:02.934135 7ff889ffb6c0 Delete type=0 #80 -2023/12/29-18:35:11.021264 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.021301 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.027524 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.027727 7ff888ff96c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.027763 7ff888ff96c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.550684 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.561298 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.561347 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.307780 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.307800 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.313952 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.314079 7f74dda006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.314098 7f74dda006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old index 4d4e236..1e83d03 100644 --- a/packs/equipement/LOG.old +++ b/packs/equipement/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.220038 7ff88a7fc6c0 Recovering log #76 -2023/12/29-18:01:15.230568 7ff88a7fc6c0 Delete type=3 #74 -2023/12/29-18:01:15.230651 7ff88a7fc6c0 Delete type=0 #76 -2023/12/29-18:06:09.146122 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.146158 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.152621 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.166813 7ff888ff96c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.166865 7ff888ff96c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.299928 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.370332 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.370514 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.503940 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.503969 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.510531 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.531927 7f74dda006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.531985 7f74dda006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/MANIFEST-000082 b/packs/equipement/MANIFEST-000082 deleted file mode 100644 index 1740c1c..0000000 Binary files a/packs/equipement/MANIFEST-000082 and /dev/null differ diff --git a/packs/equipement/MANIFEST-000148 b/packs/equipement/MANIFEST-000148 new file mode 100644 index 0000000..f9c78e1 Binary files /dev/null and b/packs/equipement/MANIFEST-000148 differ diff --git a/packs/heritages/000084.log b/packs/heritages/000150.log similarity index 100% rename from packs/heritages/000084.log rename to packs/heritages/000150.log diff --git a/packs/heritages/CURRENT b/packs/heritages/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/heritages/CURRENT +++ b/packs/heritages/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/heritages/LOG b/packs/heritages/LOG index 5e5485b..ca2a760 100644 --- a/packs/heritages/LOG +++ b/packs/heritages/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.964468 7ff88affd6c0 Recovering log #80 -2023/12/29-18:08:02.975075 7ff88affd6c0 Delete type=3 #78 -2023/12/29-18:08:02.975188 7ff88affd6c0 Delete type=0 #80 -2023/12/29-18:35:11.027877 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.027953 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.035219 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.056301 7ff888ff96c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.056344 7ff888ff96c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.588257 7f74e4c006c0 Recovering log #146 +2024/03/02-23:57:42.598189 7f74e4c006c0 Delete type=3 #144 +2024/03/02-23:57:42.598290 7f74e4c006c0 Delete type=0 #146 +2024/03/02-23:57:56.300746 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.300764 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.307700 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.314059 7f74dda006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.314086 7f74dda006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) diff --git a/packs/heritages/LOG.old b/packs/heritages/LOG.old index 91bb032..a11bae4 100644 --- a/packs/heritages/LOG.old +++ b/packs/heritages/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.261055 7ff889ffb6c0 Recovering log #76 -2023/12/29-18:01:15.271352 7ff889ffb6c0 Delete type=3 #74 -2023/12/29-18:01:15.271443 7ff889ffb6c0 Delete type=0 #76 -2023/12/29-18:06:09.166972 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.167006 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.173926 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.195524 7ff888ff96c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.195617 7ff888ff96c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.493389 7f74dea006c0 Recovering log #142 +2024/03/02-23:56:59.549265 7f74dea006c0 Delete type=3 #140 +2024/03/02-23:56:59.549449 7f74dea006c0 Delete type=0 #142 +2024/03/02-23:57:31.497605 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.497627 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.503858 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.531901 7f74dda006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.531971 7f74dda006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) diff --git a/packs/heritages/MANIFEST-000082 b/packs/heritages/MANIFEST-000148 similarity index 71% rename from packs/heritages/MANIFEST-000082 rename to packs/heritages/MANIFEST-000148 index 39680aa..b1d0fa5 100644 Binary files a/packs/heritages/MANIFEST-000082 and b/packs/heritages/MANIFEST-000148 differ diff --git a/packs/metiers/000084.log b/packs/metiers/000150.log similarity index 100% rename from packs/metiers/000084.log rename to packs/metiers/000150.log diff --git a/packs/metiers/CURRENT b/packs/metiers/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/metiers/CURRENT +++ b/packs/metiers/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/metiers/LOG b/packs/metiers/LOG index 06cb899..755c387 100644 --- a/packs/metiers/LOG +++ b/packs/metiers/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.977894 7ff889ffb6c0 Recovering log #80 -2023/12/29-18:08:02.988351 7ff889ffb6c0 Delete type=3 #78 -2023/12/29-18:08:02.988521 7ff889ffb6c0 Delete type=0 #80 -2023/12/29-18:35:11.035373 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.035409 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.041608 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.056318 7ff888ff96c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.056381 7ff888ff96c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.600925 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.611147 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.611214 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.321002 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.321024 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.326916 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.340032 7f74dda006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.340080 7f74dda006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) diff --git a/packs/metiers/LOG.old b/packs/metiers/LOG.old index a9c7ca6..d9a54ad 100644 --- a/packs/metiers/LOG.old +++ b/packs/metiers/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.274179 7ff88a7fc6c0 Recovering log #76 -2023/12/29-18:01:15.285532 7ff88a7fc6c0 Delete type=3 #74 -2023/12/29-18:01:15.285634 7ff88a7fc6c0 Delete type=0 #76 -2023/12/29-18:06:09.174140 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.174200 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.181044 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.195551 7ff888ff96c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.195637 7ff888ff96c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.552436 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.607721 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.607793 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.532068 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.532126 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.538874 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.559737 7f74dda006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.559788 7f74dda006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) diff --git a/packs/metiers/MANIFEST-000082 b/packs/metiers/MANIFEST-000082 deleted file mode 100644 index 5a80d9c..0000000 Binary files a/packs/metiers/MANIFEST-000082 and /dev/null differ diff --git a/packs/metiers/MANIFEST-000148 b/packs/metiers/MANIFEST-000148 new file mode 100644 index 0000000..75f2264 Binary files /dev/null and b/packs/metiers/MANIFEST-000148 differ diff --git a/packs/origines/000084.log b/packs/origines/000150.log similarity index 100% rename from packs/origines/000084.log rename to packs/origines/000150.log diff --git a/packs/origines/CURRENT b/packs/origines/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/origines/CURRENT +++ b/packs/origines/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/origines/LOG b/packs/origines/LOG index 32034be..4d8d523 100644 --- a/packs/origines/LOG +++ b/packs/origines/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.951461 7ff8897fa6c0 Recovering log #80 -2023/12/29-18:08:02.961670 7ff8897fa6c0 Delete type=3 #78 -2023/12/29-18:08:02.961810 7ff8897fa6c0 Delete type=0 #80 -2023/12/29-18:35:11.007596 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.007633 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.014447 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.027700 7ff888ff96c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.027751 7ff888ff96c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.576393 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.586202 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.586336 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.294585 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.294608 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.300668 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.314050 7f74dda006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.314092 7f74dda006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) diff --git a/packs/origines/LOG.old b/packs/origines/LOG.old index 26648da..34b312e 100644 --- a/packs/origines/LOG.old +++ b/packs/origines/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.247529 7ff88affd6c0 Recovering log #76 -2023/12/29-18:01:15.257831 7ff88affd6c0 Delete type=3 #74 -2023/12/29-18:01:15.257933 7ff88affd6c0 Delete type=0 #76 -2023/12/29-18:06:09.160510 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.160545 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.166661 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.166853 7ff888ff96c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.166887 7ff888ff96c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.433039 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.490727 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.490884 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.517118 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.517148 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.531688 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.531958 7f74dda006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.532013 7f74dda006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) diff --git a/packs/origines/MANIFEST-000082 b/packs/origines/MANIFEST-000082 deleted file mode 100644 index b7874de..0000000 Binary files a/packs/origines/MANIFEST-000082 and /dev/null differ diff --git a/packs/origines/MANIFEST-000148 b/packs/origines/MANIFEST-000148 new file mode 100644 index 0000000..9fe059f Binary files /dev/null and b/packs/origines/MANIFEST-000148 differ diff --git a/packs/pnj-creatures/000015.ldb b/packs/pnj-creatures/000015.ldb new file mode 100644 index 0000000..f148af2 Binary files /dev/null and b/packs/pnj-creatures/000015.ldb differ diff --git a/packs/protection/000084.log b/packs/pnj-creatures/000046.log similarity index 100% rename from packs/protection/000084.log rename to packs/pnj-creatures/000046.log diff --git a/packs/pnj-creatures/CURRENT b/packs/pnj-creatures/CURRENT new file mode 100644 index 0000000..e146ef6 --- /dev/null +++ b/packs/pnj-creatures/CURRENT @@ -0,0 +1 @@ +MANIFEST-000044 diff --git a/packs/runes/000084.log b/packs/pnj-creatures/LOCK similarity index 100% rename from packs/runes/000084.log rename to packs/pnj-creatures/LOCK diff --git a/packs/pnj-creatures/LOG b/packs/pnj-creatures/LOG new file mode 100644 index 0000000..7fb3447 --- /dev/null +++ b/packs/pnj-creatures/LOG @@ -0,0 +1,8 @@ +2024/03/02-23:57:42.486280 7f74df4006c0 Recovering log #42 +2024/03/02-23:57:42.497211 7f74df4006c0 Delete type=3 #40 +2024/03/02-23:57:42.497261 7f74df4006c0 Delete type=0 #42 +2024/03/02-23:57:56.231538 7f74dda006c0 Level-0 table #47: started +2024/03/02-23:57:56.231579 7f74dda006c0 Level-0 table #47: 0 bytes OK +2024/03/02-23:57:56.238619 7f74dda006c0 Delete type=0 #45 +2024/03/02-23:57:56.238988 7f74dda006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.249569 7f74dda006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) diff --git a/packs/pnj-creatures/LOG.old b/packs/pnj-creatures/LOG.old new file mode 100644 index 0000000..8c55d1b --- /dev/null +++ b/packs/pnj-creatures/LOG.old @@ -0,0 +1,8 @@ +2024/03/02-23:56:59.011753 7f74dfe006c0 Recovering log #38 +2024/03/02-23:56:59.065822 7f74dfe006c0 Delete type=3 #36 +2024/03/02-23:56:59.066003 7f74dfe006c0 Delete type=0 #38 +2024/03/02-23:57:31.454052 7f74dda006c0 Level-0 table #43: started +2024/03/02-23:57:31.454085 7f74dda006c0 Level-0 table #43: 0 bytes OK +2024/03/02-23:57:31.460874 7f74dda006c0 Delete type=0 #41 +2024/03/02-23:57:31.461130 7f74dda006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.470795 7f74dda006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) diff --git a/packs/pnj-creatures/MANIFEST-000044 b/packs/pnj-creatures/MANIFEST-000044 new file mode 100644 index 0000000..c49ba5b Binary files /dev/null and b/packs/pnj-creatures/MANIFEST-000044 differ diff --git a/packs/skills/000084.log b/packs/protection/000150.log similarity index 100% rename from packs/skills/000084.log rename to packs/protection/000150.log diff --git a/packs/protection/CURRENT b/packs/protection/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/protection/CURRENT +++ b/packs/protection/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/protection/LOG b/packs/protection/LOG index 3a48ebf..39983c9 100644 --- a/packs/protection/LOG +++ b/packs/protection/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.909881 7ff88affd6c0 Recovering log #80 -2023/12/29-18:08:02.919868 7ff88affd6c0 Delete type=3 #78 -2023/12/29-18:08:02.919957 7ff88affd6c0 Delete type=0 #80 -2023/12/29-18:35:11.000815 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.000912 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.007463 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.027682 7ff888ff96c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.027739 7ff888ff96c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.538644 7f74e4c006c0 Recovering log #146 +2024/03/02-23:57:42.548194 7f74e4c006c0 Delete type=3 #144 +2024/03/02-23:57:42.548242 7f74e4c006c0 Delete type=0 #146 +2024/03/02-23:57:56.274321 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.274358 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.280896 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.287798 7f74dda006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.287848 7f74dda006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) diff --git a/packs/protection/LOG.old b/packs/protection/LOG.old index f70ad4e..ce66bbb 100644 --- a/packs/protection/LOG.old +++ b/packs/protection/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.207121 7ff889ffb6c0 Recovering log #76 -2023/12/29-18:01:15.217340 7ff889ffb6c0 Delete type=3 #74 -2023/12/29-18:01:15.217456 7ff889ffb6c0 Delete type=0 #76 -2023/12/29-18:06:09.138617 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.138720 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.145987 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.166796 7ff888ff96c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.166840 7ff888ff96c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.243458 7f74dea006c0 Recovering log #142 +2024/03/02-23:56:59.296280 7f74dea006c0 Delete type=3 #140 +2024/03/02-23:56:59.296363 7f74dea006c0 Delete type=0 #142 +2024/03/02-23:57:31.470886 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.470906 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.477853 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.497453 7f74dda006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.497519 7f74dda006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) diff --git a/packs/protection/MANIFEST-000082 b/packs/protection/MANIFEST-000082 deleted file mode 100644 index 93813b5..0000000 Binary files a/packs/protection/MANIFEST-000082 and /dev/null differ diff --git a/packs/protection/MANIFEST-000148 b/packs/protection/MANIFEST-000148 new file mode 100644 index 0000000..23b6bfa Binary files /dev/null and b/packs/protection/MANIFEST-000148 differ diff --git a/packs/tables/000084.log b/packs/runes/000150.log similarity index 100% rename from packs/tables/000084.log rename to packs/runes/000150.log diff --git a/packs/runes/CURRENT b/packs/runes/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/runes/CURRENT +++ b/packs/runes/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/runes/LOG b/packs/runes/LOG index a2433a4..488e106 100644 --- a/packs/runes/LOG +++ b/packs/runes/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:03.021158 7ff88affd6c0 Recovering log #80 -2023/12/29-18:08:03.031240 7ff88affd6c0 Delete type=3 #78 -2023/12/29-18:08:03.031366 7ff88affd6c0 Delete type=0 #80 -2023/12/29-18:35:11.056532 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.056576 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.062843 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.070764 7ff888ff96c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.070812 7ff888ff96c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.638884 7f74e4c006c0 Recovering log #146 +2024/03/02-23:57:42.649262 7f74e4c006c0 Delete type=3 #144 +2024/03/02-23:57:42.649331 7f74e4c006c0 Delete type=0 #146 +2024/03/02-23:57:56.327001 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.327021 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.333677 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.340040 7f74dda006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.340074 7f74dda006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) diff --git a/packs/runes/LOG.old b/packs/runes/LOG.old index 5c87b72..67d3302 100644 --- a/packs/runes/LOG.old +++ b/packs/runes/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.317438 7ff889ffb6c0 Recovering log #76 -2023/12/29-18:01:15.328160 7ff889ffb6c0 Delete type=3 #74 -2023/12/29-18:01:15.328266 7ff889ffb6c0 Delete type=0 #76 -2023/12/29-18:06:09.202476 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.202514 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.208966 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.209130 7ff888ff96c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.209157 7ff888ff96c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.749769 7f74dea006c0 Recovering log #142 +2024/03/02-23:56:59.807963 7f74dea006c0 Delete type=3 #140 +2024/03/02-23:56:59.808061 7f74dea006c0 Delete type=0 #142 +2024/03/02-23:57:31.553065 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.553088 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.559631 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.559771 7f74dda006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.559808 7f74dda006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) diff --git a/packs/runes/MANIFEST-000082 b/packs/runes/MANIFEST-000082 deleted file mode 100644 index 3fc8d75..0000000 Binary files a/packs/runes/MANIFEST-000082 and /dev/null differ diff --git a/packs/runes/MANIFEST-000148 b/packs/runes/MANIFEST-000148 new file mode 100644 index 0000000..c6a1109 Binary files /dev/null and b/packs/runes/MANIFEST-000148 differ diff --git a/packs/scenes/000051.ldb b/packs/scenes/000051.ldb new file mode 100644 index 0000000..1b71a83 Binary files /dev/null and b/packs/scenes/000051.ldb differ diff --git a/packs/tendances/000084.log b/packs/scenes/000066.log similarity index 100% rename from packs/tendances/000084.log rename to packs/scenes/000066.log diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT new file mode 100644 index 0000000..5d746f2 --- /dev/null +++ b/packs/scenes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000064 diff --git a/packs/traits-chaotiques/000084.log b/packs/scenes/LOCK similarity index 100% rename from packs/traits-chaotiques/000084.log rename to packs/scenes/LOCK diff --git a/packs/scenes/LOG b/packs/scenes/LOG new file mode 100644 index 0000000..7fede40 --- /dev/null +++ b/packs/scenes/LOG @@ -0,0 +1,8 @@ +2024/03/02-23:57:42.664169 7f74e4c006c0 Recovering log #62 +2024/03/02-23:57:42.675153 7f74e4c006c0 Delete type=3 #60 +2024/03/02-23:57:42.675214 7f74e4c006c0 Delete type=0 #62 +2024/03/02-23:57:56.346704 7f74dda006c0 Level-0 table #67: started +2024/03/02-23:57:56.346728 7f74dda006c0 Level-0 table #67: 0 bytes OK +2024/03/02-23:57:56.353179 7f74dda006c0 Delete type=0 #65 +2024/03/02-23:57:56.353339 7f74dda006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.353404 7f74dda006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old new file mode 100644 index 0000000..5e18577 --- /dev/null +++ b/packs/scenes/LOG.old @@ -0,0 +1,8 @@ +2024/03/02-23:56:59.869123 7f74dea006c0 Recovering log #58 +2024/03/02-23:56:59.920442 7f74dea006c0 Delete type=3 #56 +2024/03/02-23:56:59.920535 7f74dea006c0 Delete type=0 #58 +2024/03/02-23:57:31.566774 7f74dda006c0 Level-0 table #63: started +2024/03/02-23:57:31.566798 7f74dda006c0 Level-0 table #63: 0 bytes OK +2024/03/02-23:57:31.572841 7f74dda006c0 Delete type=0 #61 +2024/03/02-23:57:31.572972 7f74dda006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.572995 7f74dda006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000064 b/packs/scenes/MANIFEST-000064 new file mode 100644 index 0000000..457a59c Binary files /dev/null and b/packs/scenes/MANIFEST-000064 differ diff --git a/packs/skills-creatures/000005.ldb b/packs/skills-creatures/000005.ldb new file mode 100644 index 0000000..7182f32 Binary files /dev/null and b/packs/skills-creatures/000005.ldb differ diff --git a/packs/skills-creatures/000058.log b/packs/skills-creatures/000058.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/skills-creatures/CURRENT b/packs/skills-creatures/CURRENT new file mode 100644 index 0000000..80d9de0 --- /dev/null +++ b/packs/skills-creatures/CURRENT @@ -0,0 +1 @@ +MANIFEST-000056 diff --git a/packs/skills-creatures/LOCK b/packs/skills-creatures/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/packs/skills-creatures/LOG b/packs/skills-creatures/LOG new file mode 100644 index 0000000..a7bae11 --- /dev/null +++ b/packs/skills-creatures/LOG @@ -0,0 +1,8 @@ +2024/03/02-23:57:42.514100 7f74e4c006c0 Recovering log #54 +2024/03/02-23:57:42.524422 7f74e4c006c0 Delete type=3 #52 +2024/03/02-23:57:42.524478 7f74e4c006c0 Delete type=0 #54 +2024/03/02-23:57:56.266204 7f74dda006c0 Level-0 table #59: started +2024/03/02-23:57:56.266260 7f74dda006c0 Level-0 table #59: 0 bytes OK +2024/03/02-23:57:56.274130 7f74dda006c0 Delete type=0 #57 +2024/03/02-23:57:56.281153 7f74dda006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.287833 7f74dda006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) diff --git a/packs/skills-creatures/LOG.old b/packs/skills-creatures/LOG.old new file mode 100644 index 0000000..15f8454 --- /dev/null +++ b/packs/skills-creatures/LOG.old @@ -0,0 +1,8 @@ +2024/03/02-23:56:59.123787 7f74dea006c0 Recovering log #50 +2024/03/02-23:56:59.183838 7f74dea006c0 Delete type=3 #48 +2024/03/02-23:56:59.183904 7f74dea006c0 Delete type=0 #50 +2024/03/02-23:57:31.491411 7f74dda006c0 Level-0 table #55: started +2024/03/02-23:57:31.491439 7f74dda006c0 Level-0 table #55: 0 bytes OK +2024/03/02-23:57:31.497367 7f74dda006c0 Delete type=0 #53 +2024/03/02-23:57:31.497482 7f74dda006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.497506 7f74dda006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) diff --git a/packs/skills-creatures/MANIFEST-000056 b/packs/skills-creatures/MANIFEST-000056 new file mode 100644 index 0000000..1271113 Binary files /dev/null and b/packs/skills-creatures/MANIFEST-000056 differ diff --git a/packs/skills/000150.log b/packs/skills/000150.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/skills/CURRENT b/packs/skills/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/skills/CURRENT +++ b/packs/skills/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/skills/LOG b/packs/skills/LOG index 87a4a0b..84e4ff9 100644 --- a/packs/skills/LOG +++ b/packs/skills/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.881442 7ff88a7fc6c0 Recovering log #80 -2023/12/29-18:08:02.892226 7ff88a7fc6c0 Delete type=3 #78 -2023/12/29-18:08:02.892313 7ff88a7fc6c0 Delete type=0 #80 -2023/12/29-18:35:10.986477 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:10.986527 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:10.992779 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.000602 7ff888ff96c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.000659 7ff888ff96c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.502446 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.512293 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.512342 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.259994 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.260040 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.265974 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.280998 7f74dda006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.287816 7f74dda006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) diff --git a/packs/skills/LOG.old b/packs/skills/LOG.old index a2c46ef..c58587e 100644 --- a/packs/skills/LOG.old +++ b/packs/skills/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.179316 7ff8897fa6c0 Recovering log #76 -2023/12/29-18:01:15.190214 7ff8897fa6c0 Delete type=3 #74 -2023/12/29-18:01:15.190647 7ff8897fa6c0 Delete type=0 #76 -2023/12/29-18:06:09.131724 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.131761 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.138231 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.138457 7ff888ff96c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.138516 7ff888ff96c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.071458 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.121432 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.121485 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.477981 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.478009 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.484103 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.497464 7f74dda006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.497526 7f74dda006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) diff --git a/packs/skills/MANIFEST-000082 b/packs/skills/MANIFEST-000082 deleted file mode 100644 index 519b5a2..0000000 Binary files a/packs/skills/MANIFEST-000082 and /dev/null differ diff --git a/packs/skills/MANIFEST-000148 b/packs/skills/MANIFEST-000148 new file mode 100644 index 0000000..3711eb8 Binary files /dev/null and b/packs/skills/MANIFEST-000148 differ diff --git a/packs/tables/000150.log b/packs/tables/000150.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/tables/CURRENT +++ b/packs/tables/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/tables/LOG b/packs/tables/LOG index bbbf711..21f5776 100644 --- a/packs/tables/LOG +++ b/packs/tables/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:03.034276 7ff889ffb6c0 Recovering log #80 -2023/12/29-18:08:03.045380 7ff889ffb6c0 Delete type=3 #78 -2023/12/29-18:08:03.045487 7ff889ffb6c0 Delete type=0 #80 -2023/12/29-18:35:11.062976 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.063014 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.070439 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.070825 7ff888ff96c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.070866 7ff888ff96c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.652120 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.661879 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.661949 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.340215 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.340246 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.346619 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.353285 7f74dda006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.353358 7f74dda006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old index 9d04da1..da985e8 100644 --- a/packs/tables/LOG.old +++ b/packs/tables/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.331719 7ff88a7fc6c0 Recovering log #76 -2023/12/29-18:01:15.342998 7ff88a7fc6c0 Delete type=3 #74 -2023/12/29-18:01:15.343131 7ff88a7fc6c0 Delete type=0 #76 -2023/12/29-18:06:09.195798 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.195853 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.202274 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.209111 7ff888ff96c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.209183 7ff888ff96c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.810825 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.866120 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.866177 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.559878 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.559907 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.566665 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.572956 7f74dda006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.572987 7f74dda006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end) diff --git a/packs/tables/MANIFEST-000082 b/packs/tables/MANIFEST-000148 similarity index 77% rename from packs/tables/MANIFEST-000082 rename to packs/tables/MANIFEST-000148 index 2e428d7..298af27 100644 Binary files a/packs/tables/MANIFEST-000082 and b/packs/tables/MANIFEST-000148 differ diff --git a/packs/tendances/000150.log b/packs/tendances/000150.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/tendances/CURRENT b/packs/tendances/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/tendances/CURRENT +++ b/packs/tendances/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/tendances/LOG b/packs/tendances/LOG index 6de5c21..22cc65b 100644 --- a/packs/tendances/LOG +++ b/packs/tendances/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:02.991191 7ff88a7fc6c0 Recovering log #80 -2023/12/29-18:08:03.003992 7ff88a7fc6c0 Delete type=3 #78 -2023/12/29-18:08:03.004105 7ff88a7fc6c0 Delete type=0 #80 -2023/12/29-18:35:11.041721 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.042031 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.048701 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.056331 7ff888ff96c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.056401 7ff888ff96c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.612971 7f74e4c006c0 Recovering log #146 +2024/03/02-23:57:42.623137 7f74e4c006c0 Delete type=3 #144 +2024/03/02-23:57:42.623242 7f74e4c006c0 Delete type=0 #146 +2024/03/02-23:57:56.333883 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.333934 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.339949 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.340067 7f74dda006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.340093 7f74dda006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) diff --git a/packs/tendances/LOG.old b/packs/tendances/LOG.old index de02605..881352a 100644 --- a/packs/tendances/LOG.old +++ b/packs/tendances/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.288482 7ff8897fa6c0 Recovering log #76 -2023/12/29-18:01:15.299452 7ff8897fa6c0 Delete type=3 #74 -2023/12/29-18:01:15.299587 7ff8897fa6c0 Delete type=0 #76 -2023/12/29-18:06:09.181175 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.181260 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.187495 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.195574 7ff888ff96c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.195657 7ff888ff96c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.610619 7f74dea006c0 Recovering log #142 +2024/03/02-23:56:59.681417 7f74dea006c0 Delete type=3 #140 +2024/03/02-23:56:59.681550 7f74dea006c0 Delete type=0 #142 +2024/03/02-23:57:31.539168 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.539205 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.546760 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.559754 7f74dda006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.559796 7f74dda006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) diff --git a/packs/tendances/MANIFEST-000082 b/packs/tendances/MANIFEST-000082 deleted file mode 100644 index ad83411..0000000 Binary files a/packs/tendances/MANIFEST-000082 and /dev/null differ diff --git a/packs/tendances/MANIFEST-000148 b/packs/tendances/MANIFEST-000148 new file mode 100644 index 0000000..a00c910 Binary files /dev/null and b/packs/tendances/MANIFEST-000148 differ diff --git a/packs/traits-chaotiques/000150.log b/packs/traits-chaotiques/000150.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/traits-chaotiques/CURRENT b/packs/traits-chaotiques/CURRENT index d4b9a0f..89e2564 100644 --- a/packs/traits-chaotiques/CURRENT +++ b/packs/traits-chaotiques/CURRENT @@ -1 +1 @@ -MANIFEST-000082 +MANIFEST-000148 diff --git a/packs/traits-chaotiques/LOG b/packs/traits-chaotiques/LOG index 91d1017..608eec5 100644 --- a/packs/traits-chaotiques/LOG +++ b/packs/traits-chaotiques/LOG @@ -1,8 +1,8 @@ -2023/12/29-18:08:03.007421 7ff8897fa6c0 Recovering log #80 -2023/12/29-18:08:03.018383 7ff8897fa6c0 Delete type=3 #78 -2023/12/29-18:08:03.018699 7ff8897fa6c0 Delete type=0 #80 -2023/12/29-18:35:11.048862 7ff888ff96c0 Level-0 table #85: started -2023/12/29-18:35:11.048905 7ff888ff96c0 Level-0 table #85: 0 bytes OK -2023/12/29-18:35:11.056168 7ff888ff96c0 Delete type=0 #83 -2023/12/29-18:35:11.056357 7ff888ff96c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) -2023/12/29-18:35:11.056416 7ff888ff96c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) +2024/03/02-23:57:42.626306 7f74df4006c0 Recovering log #146 +2024/03/02-23:57:42.636633 7f74df4006c0 Delete type=3 #144 +2024/03/02-23:57:42.636732 7f74df4006c0 Delete type=0 #146 +2024/03/02-23:57:56.314210 7f74dda006c0 Level-0 table #151: started +2024/03/02-23:57:56.314232 7f74dda006c0 Level-0 table #151: 0 bytes OK +2024/03/02-23:57:56.320768 7f74dda006c0 Delete type=0 #149 +2024/03/02-23:57:56.340022 7f74dda006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) +2024/03/02-23:57:56.340086 7f74dda006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) diff --git a/packs/traits-chaotiques/LOG.old b/packs/traits-chaotiques/LOG.old index d963433..ede50bb 100644 --- a/packs/traits-chaotiques/LOG.old +++ b/packs/traits-chaotiques/LOG.old @@ -1,8 +1,8 @@ -2023/12/29-18:01:15.303780 7ff88affd6c0 Recovering log #76 -2023/12/29-18:01:15.314481 7ff88affd6c0 Delete type=3 #74 -2023/12/29-18:01:15.314586 7ff88affd6c0 Delete type=0 #76 -2023/12/29-18:06:09.187696 7ff888ff96c0 Level-0 table #81: started -2023/12/29-18:06:09.187753 7ff888ff96c0 Level-0 table #81: 0 bytes OK -2023/12/29-18:06:09.195332 7ff888ff96c0 Delete type=0 #79 -2023/12/29-18:06:09.195597 7ff888ff96c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) -2023/12/29-18:06:09.195677 7ff888ff96c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) +2024/03/02-23:56:59.684120 7f74dfe006c0 Recovering log #142 +2024/03/02-23:56:59.747466 7f74dfe006c0 Delete type=3 #140 +2024/03/02-23:56:59.747523 7f74dfe006c0 Delete type=0 #142 +2024/03/02-23:57:31.546838 7f74dda006c0 Level-0 table #147: started +2024/03/02-23:57:31.546860 7f74dda006c0 Level-0 table #147: 0 bytes OK +2024/03/02-23:57:31.552985 7f74dda006c0 Delete type=0 #145 +2024/03/02-23:57:31.559763 7f74dda006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) +2024/03/02-23:57:31.559802 7f74dda006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) diff --git a/packs/traits-chaotiques/MANIFEST-000082 b/packs/traits-chaotiques/MANIFEST-000082 deleted file mode 100644 index f7f3d39..0000000 Binary files a/packs/traits-chaotiques/MANIFEST-000082 and /dev/null differ diff --git a/packs/traits-chaotiques/MANIFEST-000148 b/packs/traits-chaotiques/MANIFEST-000148 new file mode 100644 index 0000000..98a029a Binary files /dev/null and b/packs/traits-chaotiques/MANIFEST-000148 differ diff --git a/styles/simple.css b/styles/simple.css index 5dd6072..d30387c 100644 --- a/styles/simple.css +++ b/styles/simple.css @@ -50,6 +50,20 @@ letter-spacing: 1px; } +* { + scrollbar-color: initial; +} + +::-webkit-scrollbar-thumb { + border-color: #ff6400; +} + +@-moz-document url-prefix() { + * { + scrollbar-color: #782e22 transparent; + scrollbar-width: thin; + } +} /* Fonts */ .sheet header.sheet-header h1 input, .window-app .window-header, #actors .directory-list, #navigation #scene-list .scene.nav-item { font-family: "Charlemagne"; diff --git a/system.json b/system.json index 4f77f09..26b801f 100644 --- a/system.json +++ b/system.json @@ -1,7 +1,7 @@ { "id": "fvtt-mournblade", "description": "Mournblade RPG for FoundryVTT", - "version": "11.1.1", + "version": "11.1.3", "authors": [ { "name": "Uberwald/LeRatierBretonnien", @@ -23,8 +23,64 @@ "gridUnits": "m", "license": "LICENSE.txt", "manifest": "https://www.uberwald.me/gitea/public/fvtt-mournblade/raw/branch/v10/system.json", - "download": "https://www.uberwald.me/gitea/public/fvtt-mournblade/archive/fvtt-mournblade-11.1.1.zip", + "download": "https://www.uberwald.me/gitea/public/fvtt-mournblade/archive/fvtt-mournblade-11.1.3.zip", + "packFolders": [ + { + "name": "Mournblade", + "sorting": "m", + "color": "#00435c", + "folders": [ + { + "name": "Items d'Acteurs", + "sorting": "a", + "color": "#00435c", + "packs": [ + "skills", + "dons", + "origines", + "heritages", + "metiers", + "tendances", + "traits-chaotiques", + "runes" + ], + "folders": [] + }, + { + "name": "Objets&Equipement", + "sorting": "a", + "color": "#00435c", + "packs": [ + "armes", + "protection", + "equipement" + ], + "folders": [] + }, + { + "name": "Acteurs et autres", + "sorting": "a", + "color": "#00435c", + "packs": [ + "pnj-creatures", + "tables", + "scenes" + ], + "folders": [] + } + ] + } + ], "packs": [ + { + "type": "Actor", + "label": "PNJs&Créatures", + "name": "pnj-creatures", + "path": "packs/pnj-creatures.db", + "system": "fvtt-mournblade", + "flags": {}, + "private": false + }, { "type": "Item", "label": "Compétences", @@ -34,6 +90,15 @@ "flags": {}, "private": false }, + { + "type": "Item", + "label": "Compétences de Créatures", + "name": "skills-creatures", + "path": "packs/skills-creatures.db", + "system": "fvtt-mournblade", + "flags": {}, + "private": false + }, { "type": "Item", "label": "Armes & Boucliers", @@ -132,6 +197,15 @@ "system": "fvtt-mournblade", "flags": {}, "private": false + }, + { + "type": "Scene", + "label": "Scènes", + "name": "scenes", + "path": "packs/scenes.db", + "system": "fvtt-mournblade", + "flags": {}, + "private": false } ], "primaryTokenAttribute": "secondary.health", @@ -144,8 +218,7 @@ "url": "https://www.uberwald.me/gitea/public/fvtt-mournblade", "background": "systems/fvtt-mournblade/assets/ui/fond_mournblade.webp", "compatibility": { - "minimum": "10", - "maximum": "11", + "minimum": "11", "verified": "11" } } \ No newline at end of file diff --git a/template.json b/template.json index 93d4131..f5d0170 100644 --- a/template.json +++ b/template.json @@ -1,7 +1,8 @@ { "Actor": { "types": [ - "personnage" + "personnage", + "creature" ], "templates": { "biodata": { @@ -106,6 +107,15 @@ "core" ] }, + "creature": { + "templates": [ + "core", + "biodata" + ], + "ressources": { + "value": 0 + } + }, "pnj": { "templates": [ "npccore" @@ -120,22 +130,23 @@ }, "types": [ "arme", - "competence", - "protection", - "pacte", - "traitchaotique", - "monnaie", - "don", - "tendance", - "rune", - "equipement", + "bouclier", "capacite", - "origine", + "competence", + "don", + "equipement", "heritage", "metier", "modifier", + "monnaie", + "origine", + "pacte", + "protection", + "rune", "runeeffect", - "bouclier" + "tendance", + "traitchaotique", + "traitespece" ], "modifier": { "modifiertype": "roll", @@ -190,6 +201,8 @@ "isdefense": false, "bonusmaniementoff": 0, "bonusmaniementdef": 0, + "ignorearmure": false, + "nbressources": 0, "degats": "", "nonletaux": false, "deuxmains": false, @@ -248,6 +261,11 @@ "base" ] }, + "traitespece": { + "templates": [ + "base" + ] + }, "monnaie": { "quantite": 0, "unite": "", diff --git a/templates/chat-display-description.html b/templates/chat-display-description.html new file mode 100644 index 0000000..b544268 --- /dev/null +++ b/templates/chat-display-description.html @@ -0,0 +1,13 @@ +
+ {{#if actorImg}} + {{alias}} + {{/if}} +

{{name}}

+
+ +
+ +
+ Description : {{{system.description}}} +
+ diff --git a/templates/creature-sheet.html b/templates/creature-sheet.html new file mode 100644 index 0000000..93277a8 --- /dev/null +++ b/templates/creature-sheet.html @@ -0,0 +1,485 @@ +
+ + {{!-- Sheet Header --}} +
+
+
+ +
+

+
+
+
+ + {{!-- Sheet Tab Navigation --}} + + + {{!-- Sheet Body --}} +
+ + {{!-- Main Tab --}} +
+ +
+ +
+
    + {{#each data.attributs as |attr key|}} +
  • + + {{attr.label}} + +
  • + {{/each}} +
+ +

Santé

+
    +
  • + + +
  • +
  • + + - + + + +
  • +
  • + + - + + + +
  • +
  • + + + + +
  • +
+ +
+ +
+ +

Ame

+
    +
  • + + + + +
  • + + - + + + +
  • + +
  • + + + +
  • +
+ +

Combat

+
    +
  • + + + + +
  • +
  • + + + + +
  • +
  • + + + + +
  • +
  • + + +
  • +
  • + + +
  • +
+
+ +
+ +
+
    +
  • + +

    +
    + + + + + + +
     
    +
    +
    +
  • + {{#each modifiers as |modifier key|}} +
  • + + {{modifier.name}} + {{upperFirst modifier.system.modifiertype}} + {{modifier.system.value}} +
     
    +
    + + +
    +
  • + {{/each}} +
+
+ +
+ + {{!-- Competence Tab --}} +
+ +
+ +
+
    +
  • + +

    +
    + + + +
     
    +
  • + {{#each skills as |skill key|}} +
  • + +
    + + {{skill.name}} + + + {{#each skill.system.predilections as |pred key|}} + {{pred.name}}, + {{/each}} + +
    + + + {{#if (ne skill.system.attribut1 "none")}} + + + + {{/if}} + {{#if (ne skill.system.attribut2 "none")}} + + + + {{/if}} + {{#if (ne skill.system.attribut3 "none")}} + + + + {{/if}} + +
     
    +
    + + +
    +
  • + {{/each}} +
+
+ +
+ +
+ + {{!-- Equipement Tab --}} +
+ +
+
+
    +
  • + +

    +
    + + + + + + + + + +
     
    +
    + +
    +
  • + {{#each armes as |arme key|}} +
  • + + {{arme.name}} + + + {{#if (eq arme.system.typearme "special")}} + + {{else}} + {{#if arme.system.equipped}} + + {{else}} + + {{/if}} + {{/if}} + + + {{#if arme.system.isdefense}} + + {{else}} + + {{/if}} + + {{#if (eq arme.system.typearme "special")}} + + {{else}} + + {{#if arme.system.equipped}} + + {{else}} + + {{/if}} + + {{/if}} + +
     
    + +
  • + {{/each}} +
+
+ +
+ +
+ +
+
    +
  • + +

    +
    +
     
    +
    + +
    +
  • + {{#each traitsEspeces as |trait key|}} +
  • + + {{trait.name}} +
     
    +
    + + +
    +
  • + {{/each}} +
+
+ + {{#if (count runes)}} +
+
    +
  • + +

    +
    + + + + + + +
     
    +
    +
    +
  • + {{#each runes as |rune key|}} +
  • + + {{rune.name}} + {{rune.system.formule}} + {{rune.system.seuil}} +
     
    +
    + + +
    +
  • + {{/each}} +
+
+ {{/if}} + + {{#if (count equipements)}} +
+
    +
  • + +

    +
    +
     
    +
    + +
    +
  • + {{#each equipements as |equipement key|}} +
  • + + {{equipement.name}} +
     
    +
    + + +
    +
  • + {{/each}} +
+
+ {{/if}} + +
+ +
+ + + {{!-- Biography Tab --}} +
+ + {{#if isGM}} +
+
+
    +
  • + + +
  • +
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
+
+
+ {{/if}} + + +

Description

+
+
+ {{editor description target="system.biodata.description" button=true owner=owner editable=editable}} +
+ +
+ +
+
\ No newline at end of file diff --git a/templates/item-arme-sheet.html b/templates/item-arme-sheet.html index 0771e72..ed108e0 100644 --- a/templates/item-arme-sheet.html +++ b/templates/item-arme-sheet.html @@ -18,6 +18,7 @@ + {{/select}} @@ -51,6 +52,14 @@ + + + + + + + + diff --git a/templates/item-traitespece-sheet.html b/templates/item-traitespece-sheet.html new file mode 100644 index 0000000..2f61605 --- /dev/null +++ b/templates/item-traitespece-sheet.html @@ -0,0 +1,19 @@ +
+
+ +
+

+
+
+ + {{!-- Sheet Body --}} +
+ +
+ + {{> systems/fvtt-mournblade/templates/partial-item-description.html}} + +
+ +
+
diff --git a/templates/partial-list-niveau-creature.html b/templates/partial-list-niveau-creature.html new file mode 100644 index 0000000..8879315 --- /dev/null +++ b/templates/partial-list-niveau-creature.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +