Compare commits
4 Commits
fvtt-waste
...
fvtt-waste
| Author | SHA1 | Date | |
|---|---|---|---|
| 9990545568 | |||
| d2da332411 | |||
| 028e8bddac | |||
| 5c889a5153 |
@@ -54,9 +54,13 @@ export class WastelandActorSheet extends ActorSheet {
|
||||
metier: duplicate(this.actor.getMetier() || {}),
|
||||
combat: this.actor.getCombatValues(),
|
||||
config: duplicate(game.system.wasteland.config),
|
||||
capacites: duplicate(this.actor.getCapacites()),
|
||||
equipements: duplicate(this.actor.getEquipments()),
|
||||
monnaies: duplicate(this.actor.getMonnaies()),
|
||||
mutations: duplicate(this.actor.getMutations()),
|
||||
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
|
||||
comportement: await TextEditor.enrichHTML(this.object.system.biodata.comportement, {async: true}),
|
||||
habitat: await TextEditor.enrichHTML(this.object.system.biodata.habitat, {async: true}),
|
||||
options: this.options,
|
||||
owner: this.document.isOwner,
|
||||
editScore: this.options.editScore,
|
||||
|
||||
@@ -37,11 +37,12 @@ export class WastelandActor extends Actor {
|
||||
return actor;
|
||||
}
|
||||
|
||||
const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
|
||||
if (data.type == 'personnage') {
|
||||
const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
|
||||
data.items = skills.map(i => i.toObject())
|
||||
}
|
||||
if (data.type == 'pnj') {
|
||||
if (data.type == 'creature') {
|
||||
data.items = skills.filter(i=>i.name.toLowerCase().includes("mêlée")).map(i => i.toObject())
|
||||
}
|
||||
|
||||
return super.create(data, options);
|
||||
@@ -119,6 +120,9 @@ export class WastelandActor extends Actor {
|
||||
getArtifex() {
|
||||
return this.getItemSorted(["artifex"])
|
||||
}
|
||||
getCapacites() {
|
||||
return this.getItemSorted(["capacite"])
|
||||
}
|
||||
getPouvoirs() {
|
||||
return this.getItemSorted(["pouvoir"])
|
||||
}
|
||||
@@ -134,6 +138,9 @@ export class WastelandActor extends Actor {
|
||||
getMonnaies() {
|
||||
return this.getItemSorted(["monnaie"])
|
||||
}
|
||||
getMutations() {
|
||||
return this.getItemSorted(["mutation"])
|
||||
}
|
||||
getArmors() {
|
||||
return this.getItemSorted(["protection"])
|
||||
}
|
||||
|
||||
26
modules/wasteland-creature-sheet.js
Normal file
26
modules/wasteland-creature-sheet.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* Extend the basic ActorSheet with some very simple modifications
|
||||
* @extends {ActorSheet}
|
||||
*/
|
||||
|
||||
import { WastelandUtility } from "./wasteland-utility.js";
|
||||
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class WastelandCreatureSheet extends WastelandActorSheet {
|
||||
|
||||
/** @override */
|
||||
static get defaultOptions() {
|
||||
|
||||
return mergeObject(super.defaultOptions, {
|
||||
classes: ["fvtt-wasteland", "sheet", "creature"],
|
||||
template: "systems/fvtt-wasteland/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
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
@@ -11,7 +11,7 @@
|
||||
import { WastelandActor } from "./wasteland-actor.js";
|
||||
import { WastelandItemSheet } from "./wasteland-item-sheet.js";
|
||||
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
|
||||
//import { WastelandNPCSheet } from "./wasteland-npc-sheet.js";
|
||||
import { WastelandCreatureSheet } from "./wasteland-creature-sheet.js";
|
||||
import { WastelandUtility } from "./wasteland-utility.js";
|
||||
import { WastelandCombat } from "./wasteland-combat.js";
|
||||
import { WastelandItem } from "./wasteland-item.js";
|
||||
@@ -54,7 +54,7 @@ Hooks.once("init", async function () {
|
||||
// Register sheet application classes
|
||||
Actors.unregisterSheet("core", ActorSheet);
|
||||
Actors.registerSheet("fvtt-wasteland", WastelandActorSheet, { types: ["personnage"], makeDefault: true })
|
||||
//Actors.registerSheet("fvtt-wasteland", WastelandNPCSheet, { types: ["npc"], makeDefault: false });
|
||||
Actors.registerSheet("fvtt-wasteland", WastelandCreatureSheet, { types: ["creature"], makeDefault: false });
|
||||
|
||||
Items.unregisterSheet("core", ItemSheet);
|
||||
Items.registerSheet("fvtt-wasteland", WastelandItemSheet, { makeDefault: true })
|
||||
@@ -72,7 +72,7 @@ function welcomeMessage() {
|
||||
<strong>Bienvenue dans les Wasteland !</strong>
|
||||
<p>Les livres de Wasteland sont nécessaires pour jouer : https://www.titam-france.fr</p>
|
||||
<p>Wasteland est jeu de rôle publié par Titam France/Sombres projets, tout les droits leur appartiennent.</p>
|
||||
<p>Système développé par LeRatierBretonnien, support sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
|
||||
<p>Système développé par LeRatierBretonnien, avec le support de Prêtre. Plus d'infos et aides sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
|
||||
` });
|
||||
}
|
||||
|
||||
@@ -102,6 +102,17 @@ function registerUsageCount( registerKey ) {
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async function importDefaultScene() {
|
||||
let exists = game.scenes.find(j => j.name == "Accueil");
|
||||
if (!exists) {
|
||||
const scenes = await WastelandUtility.loadCompendium("fvtt-wasteland.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 */
|
||||
/* -------------------------------------------- */
|
||||
@@ -119,6 +130,9 @@ Hooks.once("ready", function () {
|
||||
|
||||
registerUsageCount('fvtt-wasteland')
|
||||
welcomeMessage();
|
||||
|
||||
importDefaultScene();
|
||||
|
||||
});
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
||||
@@ -4,16 +4,16 @@ import { WastelandCommands } from "./wasteland-commands.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const __contrecouptCharme = {
|
||||
1 : {name: "Effet chromatique", description: "" },
|
||||
3 : {name: "Enivrement Kobold", description: "" },
|
||||
5 : {name: "Mutisme superstitieux", description: "" },
|
||||
7 : {name: "Agité!", description: "" },
|
||||
9 : {name: "Somnolence", description: "" },
|
||||
11 : {name: "Manie incontrôlable", description: "" },
|
||||
13 : {name: "Malédiction des Ternes", description: "" },
|
||||
15 : {name: "La petite Mort", description: "" },
|
||||
17 : {name: "Angoisse cauchemardesque", description: "" },
|
||||
19 : {name: "Anémie Kobold", description: "" }
|
||||
1 : {name: "Effet chromatique", description: "le corps du kobold prend des teintes aussi étranges que voyantes. L'effet s’estompe progressivement et 24 heures plus tard, le kobold retrouve ses couleurs d’origine." },
|
||||
3 : {name: "Enivrement Kobold", description: "très excité par son premier tour, le kobold doit immédiatement faire un autre tour, pour lequel il emploiera un dé plus gros." },
|
||||
5 : {name: "Mutisme superstitieux", description: "le kobold ne doit plus parler» pendant les prochaines 24 heures. S'il le fait malgré tout, les effets de son tour s’arrêtent." },
|
||||
7 : {name: "Agité!", description: "le kobold ne tient plus en place. Il ne peut se reposer pendant les prochaines 12 heures. Dès. que 12 heures se sont écoulées, il s'effondre comme une masse et dort 12 heures d'affilée d’un sommeil enchanté dont rien ne pourra le réveiller." },
|
||||
9 : {name: "Somnolence", description: "le kobold devient somnolent. Il n’arrive pas à se concentrer même sur une tâche simple, bäille sans arrêt, traîne les pieds et n’agit plus que de mauvaise grâce. Cela dure jusqu’à ce qu'il ait dormi au moins 12 heures." },
|
||||
11 : {name: "Manie incontrôlable", description: "le kobold est pris d’une manie incontrôlable. Dès qu'il voit un chapeau rouge, il doit suivre son porteur. Il ne mangera que si son voisin de gauche mange aussi, etc. Cela dure pendant une jour- née puis l’effet s’inverse pendant une heure : il ne suivra jamais un chapeau rouge, ne mangera jamais si son voi- sin de gauche mange, etc. Le contrecoup prend alors fin." },
|
||||
13 : {name: "Malédiction des Ternes", description: "le kobold perd cette qualité mystérieuse qui fait que les kobolds sont des kobolds et devient tout. Terne. Il perd 1d20 point(s) de Bonne Aventure (s’il doit en perdre plus qu'il n’en a, il tombe simplement à 0). Ces points perdus pourront cependant être regagnés normalement." },
|
||||
15 : {name: "La petite Mort", description: "le kobold s'endort pour 1420 heures. Rien ni personne ne pourra le tirer de ce sommeil enchanté avant que ce contrecoup ne prenne fin." },
|
||||
17 : {name: "Angoisse cauchemardesque", description: "le kobold a une brève vision de pure horreur. Il perd 1420 points de Psyché {s'il doit en perdre plus qu'il n’en a, il tombe à 0)." },
|
||||
19 : {name: "Anémie Kobold", description: "le kobold se met à saigner du nez, des oreilles et même d’autres endroits. Il perd 1420 point(s) de Santé." }
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -153,7 +153,8 @@ export class WastelandUtility {
|
||||
const templatePaths = [
|
||||
'systems/fvtt-wasteland/templates/editor-notes-gm.html',
|
||||
'systems/fvtt-wasteland/templates/partial-item-description.html',
|
||||
'systems/fvtt-wasteland/templates/partial-list-niveau.html'
|
||||
'systems/fvtt-wasteland/templates/partial-list-niveau.html',
|
||||
'systems/fvtt-wasteland/templates/partial-list-niveau-creature.html'
|
||||
]
|
||||
return loadTemplates(templatePaths);
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000086
|
||||
MANIFEST-000114
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.663762 7facd3fff6c0 Recovering log #84
|
||||
2023/12/01-14:01:31.673391 7facd3fff6c0 Delete type=3 #82
|
||||
2023/12/01-14:01:31.673441 7facd3fff6c0 Delete type=0 #84
|
||||
2023/12/01-14:02:58.886581 7faa52bff6c0 Level-0 table #89: started
|
||||
2023/12/01-14:02:58.886605 7faa52bff6c0 Level-0 table #89: 0 bytes OK
|
||||
2023/12/01-14:02:58.893826 7faa52bff6c0 Delete type=0 #87
|
||||
2023/12/01-14:02:58.906642 7faa52bff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.906714 7faa52bff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.926635 7f5b813fe6c0 Recovering log #112
|
||||
2023/12/06-09:49:36.982355 7f5b813fe6c0 Delete type=3 #110
|
||||
2023/12/06-09:49:36.982654 7f5b813fe6c0 Delete type=0 #112
|
||||
2023/12/06-10:12:16.083991 7f58eb7fe6c0 Level-0 table #117: started
|
||||
2023/12/06-10:12:16.084034 7f58eb7fe6c0 Level-0 table #117: 0 bytes OK
|
||||
2023/12/06-10:12:16.090902 7f58eb7fe6c0 Delete type=0 #115
|
||||
2023/12/06-10:12:16.091312 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.091425 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.494309 7facd3fff6c0 Recovering log #80
|
||||
2023/12/01-13:53:39.504896 7facd3fff6c0 Delete type=3 #78
|
||||
2023/12/01-13:53:39.504998 7facd3fff6c0 Delete type=0 #80
|
||||
2023/12/01-13:59:53.167281 7faa52bff6c0 Level-0 table #85: started
|
||||
2023/12/01-13:59:53.167307 7faa52bff6c0 Level-0 table #85: 0 bytes OK
|
||||
2023/12/01-13:59:53.198187 7faa52bff6c0 Delete type=0 #83
|
||||
2023/12/01-13:59:53.317461 7faa52bff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.317523 7faa52bff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.020185 7f5b813fe6c0 Recovering log #108
|
||||
2023/12/06-09:28:32.032336 7f5b813fe6c0 Delete type=3 #106
|
||||
2023/12/06-09:28:32.032484 7f5b813fe6c0 Delete type=0 #108
|
||||
2023/12/06-09:49:09.162722 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/06-09:49:09.162835 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/06-09:49:09.202637 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/06-09:49:09.318104 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.318694 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/armes/MANIFEST-000114
Normal file
BIN
packs/armes/MANIFEST-000114
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000040
|
||||
MANIFEST-000068
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.687335 7face89f96c0 Recovering log #38
|
||||
2023/12/01-14:01:31.697567 7face89f96c0 Delete type=3 #36
|
||||
2023/12/01-14:01:31.697683 7face89f96c0 Delete type=0 #38
|
||||
2023/12/01-14:02:58.893938 7faa52bff6c0 Level-0 table #43: started
|
||||
2023/12/01-14:02:58.893962 7faa52bff6c0 Level-0 table #43: 0 bytes OK
|
||||
2023/12/01-14:02:58.900266 7faa52bff6c0 Delete type=0 #41
|
||||
2023/12/01-14:02:58.906658 7faa52bff6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.906700 7faa52bff6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:37.041170 7f5b80bfd6c0 Recovering log #66
|
||||
2023/12/06-09:49:37.093706 7f5b80bfd6c0 Delete type=3 #64
|
||||
2023/12/06-09:49:37.093830 7f5b80bfd6c0 Delete type=0 #66
|
||||
2023/12/06-10:12:16.076323 7f58eb7fe6c0 Level-0 table #71: started
|
||||
2023/12/06-10:12:16.076367 7f58eb7fe6c0 Level-0 table #71: 0 bytes OK
|
||||
2023/12/06-10:12:16.083814 7f58eb7fe6c0 Delete type=0 #69
|
||||
2023/12/06-10:12:16.091281 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.091396 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.520862 7facd37fe6c0 Recovering log #34
|
||||
2023/12/01-13:53:39.531517 7facd37fe6c0 Delete type=3 #32
|
||||
2023/12/01-13:53:39.531569 7facd37fe6c0 Delete type=0 #34
|
||||
2023/12/01-13:59:53.280355 7faa52bff6c0 Level-0 table #39: started
|
||||
2023/12/01-13:59:53.280393 7faa52bff6c0 Level-0 table #39: 0 bytes OK
|
||||
2023/12/01-13:59:53.317311 7faa52bff6c0 Delete type=0 #37
|
||||
2023/12/01-13:59:53.317504 7faa52bff6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.317532 7faa52bff6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.048952 7f5b81bff6c0 Recovering log #62
|
||||
2023/12/06-09:28:32.060149 7f5b81bff6c0 Delete type=3 #60
|
||||
2023/12/06-09:28:32.060295 7f5b81bff6c0 Delete type=0 #62
|
||||
2023/12/06-09:49:09.274801 7f58eb7fe6c0 Level-0 table #67: started
|
||||
2023/12/06-09:49:09.274872 7f58eb7fe6c0 Level-0 table #67: 0 bytes OK
|
||||
2023/12/06-09:49:09.317824 7f58eb7fe6c0 Delete type=0 #65
|
||||
2023/12/06-09:49:09.318676 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.318749 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000138
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.626736 7face91fa6c0 Recovering log #108
|
||||
2023/12/01-14:01:31.637348 7face91fa6c0 Delete type=3 #106
|
||||
2023/12/01-14:01:31.637457 7face91fa6c0 Delete type=0 #108
|
||||
2023/12/01-14:02:58.867219 7faa52bff6c0 Level-0 table #113: started
|
||||
2023/12/01-14:02:58.867259 7faa52bff6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/01-14:02:58.873501 7faa52bff6c0 Delete type=0 #111
|
||||
2023/12/01-14:02:58.880237 7faa52bff6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.880272 7faa52bff6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.742065 7f58ebfff6c0 Recovering log #136
|
||||
2023/12/06-09:49:36.797926 7f58ebfff6c0 Delete type=3 #134
|
||||
2023/12/06-09:49:36.798038 7f58ebfff6c0 Delete type=0 #136
|
||||
2023/12/06-10:12:16.047150 7f58eb7fe6c0 Level-0 table #141: started
|
||||
2023/12/06-10:12:16.047216 7f58eb7fe6c0 Level-0 table #141: 0 bytes OK
|
||||
2023/12/06-10:12:16.054048 7f58eb7fe6c0 Delete type=0 #139
|
||||
2023/12/06-10:12:16.060991 7f58eb7fe6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.061116 7f58eb7fe6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.455304 7face89f96c0 Recovering log #104
|
||||
2023/12/01-13:53:39.465228 7face89f96c0 Delete type=3 #102
|
||||
2023/12/01-13:53:39.465278 7face89f96c0 Delete type=0 #104
|
||||
2023/12/01-13:59:52.988050 7faa52bff6c0 Level-0 table #109: started
|
||||
2023/12/01-13:59:52.988087 7faa52bff6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/01-13:59:53.032097 7faa52bff6c0 Delete type=0 #107
|
||||
2023/12/01-13:59:53.105940 7faa52bff6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.167051 7faa52bff6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:31.973507 7f5b80bfd6c0 Recovering log #132
|
||||
2023/12/06-09:28:31.984757 7f5b80bfd6c0 Delete type=3 #130
|
||||
2023/12/06-09:28:31.984856 7f5b80bfd6c0 Delete type=0 #132
|
||||
2023/12/06-09:49:09.084815 7f58eb7fe6c0 Level-0 table #137: started
|
||||
2023/12/06-09:49:09.084865 7f58eb7fe6c0 Level-0 table #137: 0 bytes OK
|
||||
2023/12/06-09:49:09.119372 7f58eb7fe6c0 Delete type=0 #135
|
||||
2023/12/06-09:49:09.162398 7f58eb7fe6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.162490 7f58eb7fe6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000138
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.639020 7face89f96c0 Recovering log #108
|
||||
2023/12/01-14:01:31.648871 7face89f96c0 Delete type=3 #106
|
||||
2023/12/01-14:01:31.648946 7face89f96c0 Delete type=0 #108
|
||||
2023/12/01-14:02:58.873626 7faa52bff6c0 Level-0 table #113: started
|
||||
2023/12/01-14:02:58.873648 7faa52bff6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/01-14:02:58.880148 7faa52bff6c0 Delete type=0 #111
|
||||
2023/12/01-14:02:58.880265 7faa52bff6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.880278 7faa52bff6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.800766 7f5b80bfd6c0 Recovering log #136
|
||||
2023/12/06-09:49:36.858638 7f5b80bfd6c0 Delete type=3 #134
|
||||
2023/12/06-09:49:36.858800 7f5b80bfd6c0 Delete type=0 #136
|
||||
2023/12/06-10:12:16.054303 7f58eb7fe6c0 Level-0 table #141: started
|
||||
2023/12/06-10:12:16.054343 7f58eb7fe6c0 Level-0 table #141: 0 bytes OK
|
||||
2023/12/06-10:12:16.060794 7f58eb7fe6c0 Delete type=0 #139
|
||||
2023/12/06-10:12:16.061088 7f58eb7fe6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.061144 7f58eb7fe6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.468222 7facd37fe6c0 Recovering log #104
|
||||
2023/12/01-13:53:39.478045 7facd37fe6c0 Delete type=3 #102
|
||||
2023/12/01-13:53:39.478100 7facd37fe6c0 Delete type=0 #104
|
||||
2023/12/01-13:59:53.074479 7faa52bff6c0 Level-0 table #109: started
|
||||
2023/12/01-13:59:53.074531 7faa52bff6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/01-13:59:53.105798 7faa52bff6c0 Delete type=0 #107
|
||||
2023/12/01-13:59:53.105987 7faa52bff6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.167073 7faa52bff6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:31.989110 7f5b81bff6c0 Recovering log #132
|
||||
2023/12/06-09:28:32.000340 7f5b81bff6c0 Delete type=3 #130
|
||||
2023/12/06-09:28:32.000446 7f5b81bff6c0 Delete type=0 #132
|
||||
2023/12/06-09:49:09.119686 7f58eb7fe6c0 Level-0 table #137: started
|
||||
2023/12/06-09:49:09.119750 7f58eb7fe6c0 Level-0 table #137: 0 bytes OK
|
||||
2023/12/06-09:49:09.162184 7f58eb7fe6c0 Delete type=0 #135
|
||||
2023/12/06-09:49:09.162471 7f58eb7fe6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.162554 7f58eb7fe6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000111
|
||||
MANIFEST-000139
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.614253 7facd3fff6c0 Recovering log #109
|
||||
2023/12/01-14:01:31.623933 7facd3fff6c0 Delete type=3 #107
|
||||
2023/12/01-14:01:31.624011 7facd3fff6c0 Delete type=0 #109
|
||||
2023/12/01-14:02:58.860374 7faa52bff6c0 Level-0 table #114: started
|
||||
2023/12/01-14:02:58.860398 7faa52bff6c0 Level-0 table #114: 0 bytes OK
|
||||
2023/12/01-14:02:58.867039 7faa52bff6c0 Delete type=0 #112
|
||||
2023/12/01-14:02:58.873616 7faa52bff6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.880257 7faa52bff6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.681175 7f5b813fe6c0 Recovering log #137
|
||||
2023/12/06-09:49:36.738004 7f5b813fe6c0 Delete type=3 #135
|
||||
2023/12/06-09:49:36.738131 7f5b813fe6c0 Delete type=0 #137
|
||||
2023/12/06-10:12:16.039708 7f58eb7fe6c0 Level-0 table #142: started
|
||||
2023/12/06-10:12:16.039767 7f58eb7fe6c0 Level-0 table #142: 0 bytes OK
|
||||
2023/12/06-10:12:16.046876 7f58eb7fe6c0 Delete type=0 #140
|
||||
2023/12/06-10:12:16.054284 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.061057 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.441816 7facd3fff6c0 Recovering log #105
|
||||
2023/12/01-13:53:39.451617 7facd3fff6c0 Delete type=3 #103
|
||||
2023/12/01-13:53:39.451709 7facd3fff6c0 Delete type=0 #105
|
||||
2023/12/01-13:59:53.032302 7faa52bff6c0 Level-0 table #110: started
|
||||
2023/12/01-13:59:53.032354 7faa52bff6c0 Level-0 table #110: 0 bytes OK
|
||||
2023/12/01-13:59:53.074270 7faa52bff6c0 Delete type=0 #108
|
||||
2023/12/01-13:59:53.105970 7faa52bff6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.167064 7faa52bff6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:31.956598 7f5b813fe6c0 Recovering log #133
|
||||
2023/12/06-09:28:31.968241 7f5b813fe6c0 Delete type=3 #131
|
||||
2023/12/06-09:28:31.968343 7f5b813fe6c0 Delete type=0 #133
|
||||
2023/12/06-09:49:09.002350 7f58eb7fe6c0 Level-0 table #138: started
|
||||
2023/12/06-09:49:09.002407 7f58eb7fe6c0 Level-0 table #138: 0 bytes OK
|
||||
2023/12/06-09:49:09.044693 7f58eb7fe6c0 Delete type=0 #136
|
||||
2023/12/06-09:49:09.119604 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.162426 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/pouvoirs/000051.ldb
Normal file
BIN
packs/pouvoirs/000051.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000027
|
||||
MANIFEST-000056
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.602177 7facd37fe6c0 Recovering log #24
|
||||
2023/12/01-14:01:31.611466 7facd37fe6c0 Delete type=3 #22
|
||||
2023/12/01-14:01:31.611526 7facd37fe6c0 Delete type=0 #24
|
||||
2023/12/01-14:02:58.854147 7faa52bff6c0 Level-0 table #30: started
|
||||
2023/12/01-14:02:58.854179 7faa52bff6c0 Level-0 table #30: 0 bytes OK
|
||||
2023/12/01-14:02:58.860296 7faa52bff6c0 Delete type=0 #28
|
||||
2023/12/01-14:02:58.873604 7faa52bff6c0 Manual compaction at level-0 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.880248 7faa52bff6c0 Manual compaction at level-1 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.619333 7f5b81bff6c0 Recovering log #54
|
||||
2023/12/06-09:49:36.675964 7f5b81bff6c0 Delete type=3 #52
|
||||
2023/12/06-09:49:36.676083 7f5b81bff6c0 Delete type=0 #54
|
||||
2023/12/06-10:12:16.032788 7f58eb7fe6c0 Level-0 table #59: started
|
||||
2023/12/06-10:12:16.032872 7f58eb7fe6c0 Level-0 table #59: 0 bytes OK
|
||||
2023/12/06-10:12:16.039467 7f58eb7fe6c0 Delete type=0 #57
|
||||
2023/12/06-10:12:16.054260 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.061027 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2023/12/01-13:53:39.428530 7face91fa6c0 Recovering log #20
|
||||
2023/12/01-13:53:39.438733 7face91fa6c0 Delete type=3 #18
|
||||
2023/12/01-13:53:39.438827 7face91fa6c0 Delete type=0 #20
|
||||
2023/12/01-13:59:52.933303 7faa52bff6c0 Level-0 table #25: started
|
||||
2023/12/01-13:59:52.950915 7faa52bff6c0 Level-0 table #25: 80038 bytes OK
|
||||
2023/12/01-13:59:52.987594 7faa52bff6c0 Delete type=0 #23
|
||||
2023/12/01-13:59:53.105920 7faa52bff6c0 Manual compaction at level-0 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.106005 7faa52bff6c0 Manual compaction at level-1 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at '!items!zew9hPVdne6w1FFv' @ 128 : 1
|
||||
2023/12/01-13:59:53.106015 7faa52bff6c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/01-13:59:53.125156 7faa52bff6c0 Generated table #26@1: 109 keys, 80038 bytes
|
||||
2023/12/01-13:59:53.125182 7faa52bff6c0 Compacted 1@1 + 1@2 files => 80038 bytes
|
||||
2023/12/01-13:59:53.166759 7faa52bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/01-13:59:53.166870 7faa52bff6c0 Delete type=2 #5
|
||||
2023/12/01-13:59:53.166982 7faa52bff6c0 Delete type=2 #25
|
||||
2023/12/01-13:59:53.167081 7faa52bff6c0 Manual compaction at level-1 from '!items!zew9hPVdne6w1FFv' @ 128 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:31.940819 7f58ebfff6c0 Recovering log #49
|
||||
2023/12/06-09:28:31.950862 7f58ebfff6c0 Delete type=3 #47
|
||||
2023/12/06-09:28:31.950951 7f58ebfff6c0 Delete type=0 #49
|
||||
2023/12/06-09:49:09.044958 7f58eb7fe6c0 Level-0 table #55: started
|
||||
2023/12/06-09:49:09.045049 7f58eb7fe6c0 Level-0 table #55: 0 bytes OK
|
||||
2023/12/06-09:49:09.084595 7f58eb7fe6c0 Delete type=0 #53
|
||||
2023/12/06-09:49:09.119659 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.162449 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/pouvoirs/MANIFEST-000056
Normal file
BIN
packs/pouvoirs/MANIFEST-000056
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000147
|
||||
MANIFEST-000175
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.675150 7face91fa6c0 Recovering log #145
|
||||
2023/12/01-14:01:31.685370 7face91fa6c0 Delete type=3 #143
|
||||
2023/12/01-14:01:31.685464 7face91fa6c0 Delete type=0 #145
|
||||
2023/12/01-14:02:58.880376 7faa52bff6c0 Level-0 table #150: started
|
||||
2023/12/01-14:02:58.880453 7faa52bff6c0 Level-0 table #150: 0 bytes OK
|
||||
2023/12/01-14:02:58.886483 7faa52bff6c0 Delete type=0 #148
|
||||
2023/12/01-14:02:58.906621 7faa52bff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.906687 7faa52bff6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.985412 7f58ebfff6c0 Recovering log #173
|
||||
2023/12/06-09:49:37.038348 7f58ebfff6c0 Delete type=3 #171
|
||||
2023/12/06-09:49:37.038477 7f58ebfff6c0 Delete type=0 #173
|
||||
2023/12/06-10:12:16.069323 7f58eb7fe6c0 Level-0 table #178: started
|
||||
2023/12/06-10:12:16.069377 7f58eb7fe6c0 Level-0 table #178: 0 bytes OK
|
||||
2023/12/06-10:12:16.076135 7f58eb7fe6c0 Delete type=0 #176
|
||||
2023/12/06-10:12:16.091247 7f58eb7fe6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.091369 7f58eb7fe6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.508151 7face89f96c0 Recovering log #141
|
||||
2023/12/01-13:53:39.518413 7face89f96c0 Delete type=3 #139
|
||||
2023/12/01-13:53:39.518484 7face89f96c0 Delete type=0 #141
|
||||
2023/12/01-13:59:53.237155 7faa52bff6c0 Level-0 table #146: started
|
||||
2023/12/01-13:59:53.237188 7faa52bff6c0 Level-0 table #146: 0 bytes OK
|
||||
2023/12/01-13:59:53.280148 7faa52bff6c0 Delete type=0 #144
|
||||
2023/12/01-13:59:53.317487 7faa52bff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.317541 7faa52bff6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.035898 7f5b80bfd6c0 Recovering log #169
|
||||
2023/12/06-09:28:32.046144 7f5b80bfd6c0 Delete type=3 #167
|
||||
2023/12/06-09:28:32.046236 7f5b80bfd6c0 Delete type=0 #169
|
||||
2023/12/06-09:49:09.235606 7f58eb7fe6c0 Level-0 table #174: started
|
||||
2023/12/06-09:49:09.235682 7f58eb7fe6c0 Level-0 table #174: 0 bytes OK
|
||||
2023/12/06-09:49:09.274542 7f58eb7fe6c0 Delete type=0 #172
|
||||
2023/12/06-09:49:09.318648 7f58eb7fe6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.318729 7f58eb7fe6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/scenes/000101.ldb
Normal file
BIN
packs/scenes/000101.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000086
|
||||
MANIFEST-000114
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
2023/12/01-14:01:31.712005 7facd3fff6c0 Recovering log #84
|
||||
2023/12/01-14:01:31.722434 7facd3fff6c0 Delete type=3 #82
|
||||
2023/12/01-14:01:31.722487 7facd3fff6c0 Delete type=0 #84
|
||||
2023/12/01-14:02:58.906829 7faa52bff6c0 Level-0 table #89: started
|
||||
2023/12/01-14:02:58.906889 7faa52bff6c0 Level-0 table #89: 0 bytes OK
|
||||
2023/12/01-14:02:58.914249 7faa52bff6c0 Delete type=0 #87
|
||||
2023/12/01-14:02:58.920445 7faa52bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:37.159974 7f5b813fe6c0 Recovering log #112
|
||||
2023/12/06-09:49:37.211762 7f5b813fe6c0 Delete type=3 #110
|
||||
2023/12/06-09:49:37.211918 7f5b813fe6c0 Delete type=0 #112
|
||||
2023/12/06-10:12:16.099316 7f58eb7fe6c0 Level-0 table #117: started
|
||||
2023/12/06-10:12:16.099375 7f58eb7fe6c0 Level-0 table #117: 0 bytes OK
|
||||
2023/12/06-10:12:16.106670 7f58eb7fe6c0 Delete type=0 #115
|
||||
2023/12/06-10:12:16.107139 7f58eb7fe6c0 Manual compaction at level-0 from '!scenes!HQh59CbrrgYGcg9C' @ 72057594037927935 : 1 .. '!scenes!HQh59CbrrgYGcg9C' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.107174 7f58eb7fe6c0 Manual compaction at level-1 from '!scenes!HQh59CbrrgYGcg9C' @ 72057594037927935 : 1 .. '!scenes!HQh59CbrrgYGcg9C' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
2023/12/01-13:53:39.595199 7facd3fff6c0 Recovering log #80
|
||||
2023/12/01-13:53:39.604901 7facd3fff6c0 Delete type=3 #78
|
||||
2023/12/01-13:53:39.604956 7facd3fff6c0 Delete type=0 #80
|
||||
2023/12/01-13:59:53.354986 7faa52bff6c0 Level-0 table #85: started
|
||||
2023/12/01-13:59:53.355010 7faa52bff6c0 Level-0 table #85: 0 bytes OK
|
||||
2023/12/01-13:59:53.424142 7faa52bff6c0 Delete type=0 #83
|
||||
2023/12/01-13:59:53.424248 7faa52bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.081779 7f5b813fe6c0 Recovering log #108
|
||||
2023/12/06-09:28:32.092087 7f5b813fe6c0 Delete type=3 #106
|
||||
2023/12/06-09:28:32.092179 7f5b813fe6c0 Delete type=0 #108
|
||||
2023/12/06-09:49:09.318910 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/06-09:49:09.318969 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/06-09:49:09.374419 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/06-09:49:09.418534 7f58eb7fe6c0 Manual compaction at level-0 from '!scenes!HQh59CbrrgYGcg9C' @ 72057594037927935 : 1 .. '!scenes!HQh59CbrrgYGcg9C' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.418595 7f58eb7fe6c0 Manual compaction at level-1 from '!scenes!HQh59CbrrgYGcg9C' @ 72057594037927935 : 1 .. '!scenes!HQh59CbrrgYGcg9C' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/scenes/MANIFEST-000114
Normal file
BIN
packs/scenes/MANIFEST-000114
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000147
|
||||
MANIFEST-000175
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.589948 7face89f96c0 Recovering log #145
|
||||
2023/12/01-14:01:31.600115 7face89f96c0 Delete type=3 #143
|
||||
2023/12/01-14:01:31.600196 7face89f96c0 Delete type=0 #145
|
||||
2023/12/01-14:02:58.831814 7faa52bff6c0 Level-0 table #150: started
|
||||
2023/12/01-14:02:58.831844 7faa52bff6c0 Level-0 table #150: 0 bytes OK
|
||||
2023/12/01-14:02:58.837662 7faa52bff6c0 Delete type=0 #148
|
||||
2023/12/01-14:02:58.843878 7faa52bff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.843906 7faa52bff6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.534437 7f5b80bfd6c0 Recovering log #173
|
||||
2023/12/06-09:49:36.615538 7f5b80bfd6c0 Delete type=3 #171
|
||||
2023/12/06-09:49:36.615721 7f5b80bfd6c0 Delete type=0 #173
|
||||
2023/12/06-10:12:16.014182 7f58eb7fe6c0 Level-0 table #178: started
|
||||
2023/12/06-10:12:16.014253 7f58eb7fe6c0 Level-0 table #178: 0 bytes OK
|
||||
2023/12/06-10:12:16.020915 7f58eb7fe6c0 Delete type=0 #176
|
||||
2023/12/06-10:12:16.021121 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.021166 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.415677 7facd37fe6c0 Recovering log #141
|
||||
2023/12/01-13:53:39.425756 7facd37fe6c0 Delete type=3 #139
|
||||
2023/12/01-13:53:39.425846 7facd37fe6c0 Delete type=0 #141
|
||||
2023/12/01-13:59:52.777793 7faa52bff6c0 Level-0 table #146: started
|
||||
2023/12/01-13:59:52.777856 7faa52bff6c0 Level-0 table #146: 0 bytes OK
|
||||
2023/12/01-13:59:52.814639 7faa52bff6c0 Delete type=0 #144
|
||||
2023/12/01-13:59:52.933047 7faa52bff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:52.933139 7faa52bff6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:31.926227 7f5b81bff6c0 Recovering log #169
|
||||
2023/12/06-09:28:31.936766 7f5b81bff6c0 Delete type=3 #167
|
||||
2023/12/06-09:28:31.936860 7f5b81bff6c0 Delete type=0 #169
|
||||
2023/12/06-09:49:08.761246 7f58eb7fe6c0 Level-0 table #174: started
|
||||
2023/12/06-09:49:08.761330 7f58eb7fe6c0 Level-0 table #174: 0 bytes OK
|
||||
2023/12/06-09:49:08.797454 7f58eb7fe6c0 Delete type=0 #172
|
||||
2023/12/06-09:49:08.888633 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:08.946719 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000146
|
||||
MANIFEST-000174
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.699537 7facd37fe6c0 Recovering log #144
|
||||
2023/12/01-14:01:31.709639 7facd37fe6c0 Delete type=3 #142
|
||||
2023/12/01-14:01:31.709701 7facd37fe6c0 Delete type=0 #144
|
||||
2023/12/01-14:02:58.914354 7faa52bff6c0 Level-0 table #149: started
|
||||
2023/12/01-14:02:58.914378 7faa52bff6c0 Level-0 table #149: 0 bytes OK
|
||||
2023/12/01-14:02:58.920351 7faa52bff6c0 Delete type=0 #147
|
||||
2023/12/01-14:02:58.920455 7faa52bff6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.920470 7faa52bff6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:37.097664 7f5b81bff6c0 Recovering log #172
|
||||
2023/12/06-09:49:37.156014 7f5b81bff6c0 Delete type=3 #170
|
||||
2023/12/06-09:49:37.156349 7f5b81bff6c0 Delete type=0 #172
|
||||
2023/12/06-10:12:16.091625 7f58eb7fe6c0 Level-0 table #177: started
|
||||
2023/12/06-10:12:16.091713 7f58eb7fe6c0 Level-0 table #177: 0 bytes OK
|
||||
2023/12/06-10:12:16.099101 7f58eb7fe6c0 Delete type=0 #175
|
||||
2023/12/06-10:12:16.106906 7f58eb7fe6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.106975 7f58eb7fe6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.581116 7face91fa6c0 Recovering log #140
|
||||
2023/12/01-13:53:39.591862 7face91fa6c0 Delete type=3 #138
|
||||
2023/12/01-13:53:39.591949 7face91fa6c0 Delete type=0 #140
|
||||
2023/12/01-13:59:53.317612 7faa52bff6c0 Level-0 table #145: started
|
||||
2023/12/01-13:59:53.317640 7faa52bff6c0 Level-0 table #145: 0 bytes OK
|
||||
2023/12/01-13:59:53.354885 7faa52bff6c0 Delete type=0 #143
|
||||
2023/12/01-13:59:53.424238 7faa52bff6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.424262 7faa52bff6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.065059 7f58ebfff6c0 Recovering log #168
|
||||
2023/12/06-09:28:32.076842 7f58ebfff6c0 Delete type=3 #166
|
||||
2023/12/06-09:28:32.076972 7f58ebfff6c0 Delete type=0 #168
|
||||
2023/12/06-09:49:09.374630 7f58eb7fe6c0 Level-0 table #173: started
|
||||
2023/12/06-09:49:09.374686 7f58eb7fe6c0 Level-0 table #173: 0 bytes OK
|
||||
2023/12/06-09:49:09.418319 7f58eb7fe6c0 Delete type=0 #171
|
||||
2023/12/06-09:49:09.418578 7f58eb7fe6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.418612 7f58eb7fe6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000055
|
||||
MANIFEST-000083
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-14:01:31.650984 7facd37fe6c0 Recovering log #53
|
||||
2023/12/01-14:01:31.661531 7facd37fe6c0 Delete type=3 #51
|
||||
2023/12/01-14:01:31.661635 7facd37fe6c0 Delete type=0 #53
|
||||
2023/12/01-14:02:58.900371 7faa52bff6c0 Level-0 table #58: started
|
||||
2023/12/01-14:02:58.900395 7faa52bff6c0 Level-0 table #58: 0 bytes OK
|
||||
2023/12/01-14:02:58.906443 7faa52bff6c0 Delete type=0 #56
|
||||
2023/12/01-14:02:58.906674 7faa52bff6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-14:02:58.906730 7faa52bff6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:36.862933 7f5b81bff6c0 Recovering log #81
|
||||
2023/12/06-09:49:36.922282 7f5b81bff6c0 Delete type=3 #79
|
||||
2023/12/06-09:49:36.922477 7f5b81bff6c0 Delete type=0 #81
|
||||
2023/12/06-10:12:16.061339 7f58eb7fe6c0 Level-0 table #86: started
|
||||
2023/12/06-10:12:16.061431 7f58eb7fe6c0 Level-0 table #86: 0 bytes OK
|
||||
2023/12/06-10:12:16.068864 7f58eb7fe6c0 Delete type=0 #84
|
||||
2023/12/06-10:12:16.091196 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-10:12:16.091341 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2023/12/01-13:53:39.480910 7face91fa6c0 Recovering log #49
|
||||
2023/12/01-13:53:39.490942 7face91fa6c0 Delete type=3 #47
|
||||
2023/12/01-13:53:39.491036 7face91fa6c0 Delete type=0 #49
|
||||
2023/12/01-13:59:53.198430 7faa52bff6c0 Level-0 table #54: started
|
||||
2023/12/01-13:59:53.198486 7faa52bff6c0 Level-0 table #54: 0 bytes OK
|
||||
2023/12/01-13:59:53.237011 7faa52bff6c0 Delete type=0 #52
|
||||
2023/12/01-13:59:53.317476 7faa52bff6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/01-13:59:53.317515 7faa52bff6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:28:32.004581 7f58ebfff6c0 Recovering log #77
|
||||
2023/12/06-09:28:32.016556 7f58ebfff6c0 Delete type=3 #75
|
||||
2023/12/06-09:28:32.016710 7f58ebfff6c0 Delete type=0 #77
|
||||
2023/12/06-09:49:09.202945 7f58eb7fe6c0 Level-0 table #82: started
|
||||
2023/12/06-09:49:09.203041 7f58eb7fe6c0 Level-0 table #82: 0 bytes OK
|
||||
2023/12/06-09:49:09.235328 7f58eb7fe6c0 Delete type=0 #80
|
||||
2023/12/06-09:49:09.318614 7f58eb7fe6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
2023/12/06-09:49:09.318711 7f58eb7fe6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "fvtt-wasteland",
|
||||
"description": "Wasteland RPG for FoundryVTT",
|
||||
"version": "11.0.14",
|
||||
"version": "11.0.19",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Uberwald/LeRatierBretonnien",
|
||||
@@ -23,7 +23,7 @@
|
||||
"gridUnits": "m",
|
||||
"license": "LICENSE.txt",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-wasteland/raw/branch/main/system.json",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.14.zip",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.19.zip",
|
||||
"packs": [
|
||||
{
|
||||
"type": "Item",
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"Actor": {
|
||||
"types": [
|
||||
"personnage"
|
||||
"personnage",
|
||||
"creature"
|
||||
],
|
||||
"templates": {
|
||||
"biodata": {
|
||||
@@ -15,12 +16,23 @@
|
||||
"sexe": "",
|
||||
"yeux": "",
|
||||
"description": "",
|
||||
"habitat": "",
|
||||
"comportement": "",
|
||||
"psychemultiplier": 1,
|
||||
"notes": "",
|
||||
"gmnotes": ""
|
||||
}
|
||||
},
|
||||
"core": {
|
||||
"terreur": {
|
||||
"value": -1
|
||||
},
|
||||
"protection": {
|
||||
"value": 0
|
||||
},
|
||||
"ressource": {
|
||||
"value": 0
|
||||
},
|
||||
"subactors": [],
|
||||
"attributs": {
|
||||
"adr": {
|
||||
@@ -95,9 +107,10 @@
|
||||
"core"
|
||||
]
|
||||
},
|
||||
"pnj": {
|
||||
"creature": {
|
||||
"templates": [
|
||||
"npccore"
|
||||
"biodata",
|
||||
"core"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -238,6 +251,7 @@
|
||||
"isdefense": false,
|
||||
"bonusmaniementoff": 0,
|
||||
"bonusmaniementdef": 0,
|
||||
"nobonusdegats": false,
|
||||
"degats": "",
|
||||
"nonletaux": false,
|
||||
"deuxmains": false,
|
||||
|
||||
@@ -60,6 +60,7 @@
|
||||
{{#if contrecoupResult}}
|
||||
<li><strong>Contrecoup : {{contrecoupResult}}</li>
|
||||
<li>{{contrecoup.name}}</li>
|
||||
<li>{{contrecoup.description}}</li>
|
||||
{{/if}}
|
||||
{{#if charmeSante}}
|
||||
<li>Santé perdue: {{charmeSante}}</li>
|
||||
|
||||
319
templates/creature-sheet.html
Normal file
319
templates/creature-sheet.html
Normal file
@@ -0,0 +1,319 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
|
||||
{{!-- Sheet Header --}}
|
||||
<header class="sheet-header">
|
||||
<div class="header-fields">
|
||||
<div class="flexrow">
|
||||
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
||||
<div class="flexcol">
|
||||
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{!-- Sheet Tab Navigation --}}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item" data-tab="principal">Attributs</a>
|
||||
<a class="item" data-tab="capacites">Capacites</a>
|
||||
<a class="item" data-tab="biodata">Description</a>
|
||||
</nav>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
{{!-- Main Tab --}}
|
||||
<div class="tab principal" data-group="primary" data-tab="principal">
|
||||
|
||||
<div class="grid grid-2col">
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
{{#each data.attributs as |attr key|}}
|
||||
<li class="item flexrow " data-attr-key="{{key}}">
|
||||
<img class="item-name-img" src="systems/fvtt-wasteland/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<span class="item-name-label competence-name item-field-label-medium"><a
|
||||
class="roll-attribut">{{attr.label}}</a></span>
|
||||
<select class="status-small-label color-class-common item-field-label-short" type="text"
|
||||
name="system.attributs.{{key}}.value" value="{{attr.value}}" data-dtype="Number">
|
||||
{{#select attr.value}}
|
||||
{{> systems/fvtt-wasteland/templates/partial-list-niveau-creature.html}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</li>
|
||||
{{/each}}
|
||||
|
||||
<h4 class="item-name-label competence-name">Santé</h4>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Total</label>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.base" value="{{data.sante.base}}">
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Non létaux</label>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.nonletaux"
|
||||
value="{{data.sante.nonletaux}}" data-dtype="Number" />
|
||||
<label class="label-name">Létaux</label>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.letaux" value="{{data.sante.letaux}}"
|
||||
data-dtype="Number" />
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
|
||||
<h4 class="item-name-label competence-name">Psyche</h4>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Max</label>
|
||||
<input type="text" class="input-numeric-short" name="system.psyche.fullmax" value="{{data.psyche.fullmax}}"
|
||||
data-dtype="Number" />
|
||||
<label class="label-name">Max Actuel</label>
|
||||
<input type="text" class="input-numeric-short" name="system.psyche.currentmax" value="{{data.psyche.currentmax}}"
|
||||
data-dtype="Number" />
|
||||
<label class="label-name">Courante</label>
|
||||
<input type="text" class="input-numeric-short" name="system.psyche.value" value="{{data.psyche.value}}"
|
||||
data-dtype="Number" />
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h4 class="item-name-label competence-name">Combat</h4>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Terreur</label>
|
||||
<input type="text" class="input-numeric-short" name="system.terreur.value"
|
||||
value="{{data.terreur.value}}" data-dtype="Number" />
|
||||
<label class="competence-name"> </label>
|
||||
<label class="competence-name"> </label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Initiative</label>
|
||||
<label class="competence-name">{{combat.initBase}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.initbonus"
|
||||
value="{{data.combat.initbonus}}" data-dtype="Number" />
|
||||
<label class="competence-name">{{combat.initTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">B. Dégats</label>
|
||||
<label class="competence-name">+{{combat.bonusDegats}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.bonusdegats"
|
||||
value="{{data.combat.bonusdegats}}" data-dtype="Number" />
|
||||
<label class="competence-name">+{{combat.bonusDegatsTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Vitesse</label>
|
||||
<label class="competence-name">{{combat.vitesseBase}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.vitessebonus"
|
||||
value="{{data.combat.vitessebonus}}" data-dtype="Number" />
|
||||
<label class="competence-name">{{combat.vitesseTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Défense</label>
|
||||
<label class="competence-name">{{combat.defenseBase}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.defensebonus"
|
||||
value="{{data.combat.defensebonus}}" data-dtype="Number" />
|
||||
<label class="competence-name">{{combat.defenseTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Protection</label>
|
||||
<input type="text" class="input-numeric-short" name="system.protection.value"
|
||||
value="{{data.protection.value}}" data-dtype="Number" />
|
||||
<label class="competence-name">Ressource</label>
|
||||
<input type="text" class="input-numeric-short" name="system.ressource.value"
|
||||
value="{{data.ressource.value}}" data-dtype="Number" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Armes</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Attaque</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Défense</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Dégats</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="arme" title="Ajouter une arme"><i class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each armes as |arme key|}}
|
||||
<li class="item flexrow " data-item-id="{{arme._id}}" data-item-type="arme">
|
||||
<img class="item-name-img" src="{{arme.img}}" />
|
||||
<span class="item-name-label competence-name">{{arme.name}}</span>
|
||||
|
||||
<span class="item-field-label-short">
|
||||
{{#if arme.system.equipped}}
|
||||
<button class="roll-arme-offensif button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
{{else}}
|
||||
<button disabled class="roll-arme-offensif button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
{{/if}}
|
||||
</span>
|
||||
|
||||
{{#if arme.system.isdefense}}
|
||||
<span class="item-field-label-short arme-defensif"><label
|
||||
class="arme-defensif">{{arme.system.totalDefensif}}</label></span>
|
||||
{{else}}
|
||||
<span class="item-field-label-short arme-defensif"><label class="arme-defensif">-</label></span>
|
||||
{{/if}}
|
||||
|
||||
<span class="item-field-label-short">
|
||||
{{#if arme.system.equipped}}
|
||||
<button class="roll-arme-degats button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
{{else}}
|
||||
<button disabled class="roll-arme-degats button-sheet-roll">{{arme.system.totalDegats}}</button>
|
||||
{{/if}}
|
||||
</span>
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-equip" title="Worn">{{#if arme.system.equipped}}<i
|
||||
class="fas fa-circle"></i>{{else}}<i class="fas fa-genderless"></i>{{/if}}</a>
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="flexrow">
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Compétences</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Niveau</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
</li>
|
||||
{{#each skills as |skill key|}}
|
||||
<li class="item flexrow " data-item-id="{{skill._id}}" data-item-type="competence">
|
||||
<img class="item-name-img" src="{{skill.img}}" />
|
||||
<div class="flexcol item-name-label">
|
||||
<span class="item-name-label competence-name"><a class="roll-competence"
|
||||
data-attr-key="tochoose">{{skill.name}}</a>
|
||||
</span>
|
||||
|
||||
<span class="predilection-text">
|
||||
{{#each skill.system.predilections as |pred key|}}
|
||||
{{pred.name}},
|
||||
{{/each}}
|
||||
</span>
|
||||
</div>
|
||||
<select class="status-small-label color-class-common edit-item-data competence-niveau" type="text"
|
||||
data-item-field="niveau" value="{{skill.system.niveau}}" data-dtype="Number">
|
||||
{{#select skill.system.niveau}}
|
||||
{{> systems/fvtt-wasteland/templates/partial-list-niveau.html}}
|
||||
{{/select}}
|
||||
</select>
|
||||
|
||||
{{#if (ne skill.system.attribut1 "none")}}
|
||||
<span class="item-field-label-short">
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut1}}">{{upper
|
||||
skill.system.attribut1}} : {{skill.system.attribut1total}}</button>
|
||||
</span>
|
||||
{{/if}}
|
||||
{{#if (ne skill.system.attribut2 "none")}}
|
||||
<span class="item-field-label-short">
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut2}}">{{upper
|
||||
skill.system.attribut2}} : {{skill.system.attribut2total}}</button>
|
||||
</span>
|
||||
{{/if}}
|
||||
{{#if (ne skill.system.attribut3 "none")}}
|
||||
<span class="item-field-label-short">
|
||||
<button class="roll-competence button-sheet-roll" data-attr-key="{{skill.system.attribut3}}">{{upper
|
||||
skill.system.attribut3}} : {{skill.system.attribut3total}}</button>
|
||||
</span>
|
||||
{{/if}}
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{{!-- Dons/Pactes Tab --}}
|
||||
<div class="tab capacites" data-group="primary" data-tab="capacites">
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-field-label-long-title">
|
||||
<h3><label class="items-title-text">Capacites</label></h3>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-add" data-type="capacite" title="Ajouter une capacité"><i
|
||||
class="fas fa-plus"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{#each capacites as |capacite key|}}
|
||||
<li class="item flexrow " data-item-id="{{capacite._id}}" data-item-type="capacite">
|
||||
<img class="item-name-img" src="{{capacite.img}}" />
|
||||
<span class="item-field-label-long label-padding-left">{{capacite.name}}</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{{!-- Biography Tab --}}
|
||||
<div class="tab biodata" data-group="primary" data-tab="biodata">
|
||||
|
||||
<span>
|
||||
<h3>Description</h3>
|
||||
</span>
|
||||
<div class="medium-editor item-text-long-line">
|
||||
{{editor description target="system.biodata.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
||||
<span>
|
||||
<h3>Habitat</h3>
|
||||
</span>
|
||||
<div class="medium-editor item-text-long-line">
|
||||
{{editor habitat target="system.biodata.habitat" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
||||
<span>
|
||||
<h3>Comportement</h3>
|
||||
</span>
|
||||
<div class="medium-editor item-text-long-line">
|
||||
{{editor comportement target="system.biodata.comportement" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
@@ -43,6 +43,10 @@
|
||||
<label class="generic-label">Dégâts non létaux ? </label>
|
||||
<input type="checkbox" name="system.nonletaux" {{checked data.nonletaux}}/>
|
||||
</span>
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Ne pas appliquer le bonus aux dégats ? </label>
|
||||
<input type="checkbox" name="system.nobonusdegats" {{checked data.nobonusdegats}}/>
|
||||
</span>
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Equipé ? </label>
|
||||
<input type="checkbox" name="system.equipped" {{checked data.equipped}}/>
|
||||
|
||||
@@ -12,8 +12,12 @@
|
||||
<div class="flexcol">
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Niveau : </label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common" name="data.niveau"
|
||||
value="{{data.niveau}}" data-dtype="Number" />
|
||||
<select class="status-small-label color-class-common edit-item-data competence-niveau" type="text"
|
||||
name="system.niveau" value="{{system.niveau}}" data-dtype="Number">
|
||||
{{#select system.niveau}}
|
||||
{{> systems/fvtt-wasteland/templates/partial-list-niveau.html}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</span>
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Attribut 1 : </label>
|
||||
|
||||
18
templates/item-mutation-sheet.html
Normal file
18
templates/item-mutation-sheet.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<header class="sheet-header">
|
||||
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
||||
<div class="header-fields">
|
||||
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
<div class="flexcol">
|
||||
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
22
templates/partial-list-niveau-creature.html
Normal file
22
templates/partial-list-niveau-creature.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<option value="0">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
<option value="6">6</option>
|
||||
<option value="7">7</option>
|
||||
<option value="8">8</option>
|
||||
<option value="9">9</option>
|
||||
<option value="10">10</option>
|
||||
<option value="11">11</option>
|
||||
<option value="12">12</option>
|
||||
<option value="13">13</option>
|
||||
<option value="14">14</option>
|
||||
<option value="15">15</option>
|
||||
<option value="16">16</option>
|
||||
<option value="17">17</option>
|
||||
<option value="18">18</option>
|
||||
<option value="19">19</option>
|
||||
<option value="20">20</option>
|
||||
|
||||
Reference in New Issue
Block a user